awesome-repositories.com
Blog
awesome-repositories.com

Découvrez les meilleurs dépôts open-source grâce à notre recherche par IA.

ExplorerRecherches sélectionnéesAlternatives open sourceLogiciels auto-hébergésBlogPlan du site
ProjetÀ proposNotre méthodologiePresseServeur MCP
Mentions légalesConfidentialitéConditions d'utilisation
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·

7 dépôts

Awesome GitHub RepositoriesRange Length Validations

Constraints that verify if a collection's size falls within a specific minimum and maximum range.

Distinct from Minimum Length Validations: Unlike Minimum Length Validations, this specifically covers both upper and lower bounds for strings and collections.

Explore 7 awesome GitHub repositories matching software engineering & architecture · Range Length Validations. Refine with filters or upvote what's useful.

Awesome Range Length Validations GitHub Repositories

Trouvez les meilleurs dépôts grâce à l'IA.Nous recherchons les dépôts les plus pertinents grâce à l'IA.
  • asaskevich/govalidatorAvatar de asaskevich

    asaskevich/govalidator

    6,203Voir sur GitHub↗

    Go Package of validators and sanitizers for strings, numerics, slices and structs

    Verifies that string length in bytes or runes falls within specified minimum and maximum bounds.

    Gogogovalidatorsanitization
    Voir sur GitHub↗6,203
  • rengwuxian/materialedittextAvatar de rengwuxian

    rengwuxian/MaterialEditText

    6,080Voir sur GitHub↗

    MaterialEditText est une bibliothèque de composants UI Android et un framework de saisie de formulaires mobiles utilisés pour créer des champs de texte conformes aux standards Material Design. Elle propose une collection de composants de saisie avec étiquettes flottantes, états d'erreur et styles visuels thématisés. La bibliothèque permet le rendu de champs de texte avec des étiquettes animées et du texte d'aide intégré. Elle prend en charge l'ajout d'icônes de design et permet la personnalisation des couleurs et des polices pour le texte principal, d'erreur et d'aide. Le framework inclut des fonctionnalités de validation de saisie mobile, comme l'application de limites de caractères minimales et maximales pour la saisie de texte.

    Provides a character counter that updates in real-time based on minimum and maximum length constraints.

    Java
    Voir sur GitHub↗6,080
  • python-attrs/attrsAvatar de python-attrs

    python-attrs/attrs

    5,799Voir sur GitHub↗

    attrs is a Python library that automatically generates initialization, representation, equality, hashing, and ordering methods from declarative class attribute definitions. At its core, it provides a class decorator metaprogramming framework that intercepts class creation to rewrite the class body, producing dunder methods without manual boilerplate. The library includes a comprehensive attribute validation toolkit with built-in validators for type checks, range constraints, regex matching, length limits, and logical composition of validation rules. The library distinguishes itself through it

    Validates that string or collection attributes do not exceed a maximum length.

    Python
    Voir sur GitHub↗5,799
  • dsdanielpark/bard-apiAvatar de dsdanielpark

    dsdanielpark/Bard-API

    5,196Voir sur GitHub↗

    Bard-API est un wrapper Python asynchrone et un client pour interagir avec Google Gemini. Il fonctionne comme un gestionnaire de conversation avec état et une interface multimodale, permettant aux utilisateurs d'envoyer des prompts textuels et imagés à un modèle de langage et d'en récupérer les réponses. La bibliothèque utilise un système d'authentification basé sur les cookies qui extrait les jetons de session du stockage local du navigateur pour autoriser les requêtes. Pour gérer l'accès et la connectivité, elle inclut un routage de requêtes via proxy pour contourner les restrictions régionales et éviter les blocages IP. Le projet couvre les capacités d'analyse IA multimodale et la conservation de l'historique de session pour permettre des dialogues continus. Il fournit également des utilitaires pour extraire des liens d'images des réponses, convertir du texte en parole et exécuter automatiquement des extraits de code générés dans un environnement local.

    Limits generated output by setting a maximum number of tokens or sentences.

    Pythonai-apiapibard
    Voir sur GitHub↗5,196
  • go-ozzo/ozzo-validationAvatar de go-ozzo

    go-ozzo/ozzo-validation

    4,072Voir sur GitHub↗

    ozzo-validation is a programmable data validation library for Go that verifies structs, maps, and primitive types using a declarative, rule-based approach. It functions as an interface-based validator, allowing for the recursive checking of nested data structures and custom types without the use of struct tags. The framework distinguishes itself as a context-aware validation engine, supporting the propagation of request-scoped data to rules that depend on external state. It provides extensive extensibility through custom rule definitions and the ability to override default failure text with l

    Implements validation for strings, slices, and maps to ensure their length falls within specified ranges.

    Gogogolangozzo
    Voir sur GitHub↗4,072
  • morelinq/morelinqAvatar de morelinq

    morelinq/MoreLINQ

    3,827Voir sur GitHub↗

    MoreLINQ is a functional programming toolkit and extension library for .NET that augments LINQ to Objects with advanced operators for sequence manipulation and analysis. It provides a set of tools for declarative data transformation, leveraging lazy evaluation and composition to handle complex object sequences. The library is distinguished by its specialized capabilities for combinatorial generation, including the production of permutations, subsets, and Cartesian products. It also provides advanced sequence joining options, such as full, left, and right outer joins, and supports complex data

    Ensures a sequence contains a specific number of elements, verifying minimums or maximums.

    C#dotnetlinq
    Voir sur GitHub↗3,827
  • dcodeio/bcrypt.jsAvatar de dcodeIO

    dcodeIO/bcrypt.js

    3,797Voir sur GitHub↗

    bcrypt.js is a portable JavaScript implementation of the bcrypt algorithm used for securely hashing and verifying user passwords. It functions as a credential security utility that protects stored passwords against brute-force attacks through the use of salts and configurable work factors. The library is designed as a pure JavaScript cryptographic module, allowing it to run in any JavaScript environment, including both server-side Node.js and client-side web browsers, without requiring native system binaries or C++ bindings. It is a zero-dependency standalone module to minimize security risks

    Detects passwords exceeding the bcrypt byte limit to prevent data loss through silent truncation.

    JavaScript
    Voir sur GitHub↗3,797
  1. Home
  2. Software Engineering & Architecture
  3. Array Schema Validation
  4. Minimum Length Validations
  5. Range Length Validations

Explorer les sous-tags

  • Maximum Length Validators3 sous-tagsValidates that a string or collection attribute does not exceed a maximum length. **Distinct from Range Length Validations:** Distinct from Range Length Validations: focuses specifically on maximum length validation, not combined min/max range validation.