Code Monkey home page Code Monkey logo

fuse-box's People

Contributors

uselessvevo avatar

Watchers

 avatar

fuse-box's Issues

Core.Utils | Add short-methods

Append short-methods to use validators without defining Field instance (-s)

For example:

# validators.py

def validate_range(
    value: list[Number, Number], 
    raise_exception: bool = False
) -> bool: 
    ...

Core.Validators | Add new built-in validators

For example:

  • UrlValidator - subclass of RegexValidator
  • UsernameValidator - subclass of RegexValidator
  • PasswordValidator - subclass of RegexValidator
  • FileValidator - with these params file: File, method: Union[str, callable]

Tests | Update tests

At this moment, all tests are a little bit messy. For example, test with fields contains validators and etc. Just do a little clean.

Core.Utils | Add cleaner-methods

At this moment, we dont have any built-in cleaner-methods. For example:

def clean_digits(value: str) -> Union[str, None]:
    value = re.search(r'^[\d+\,]+|^[\d+]', value)
    if value:
        value = value.group(0)
        value = value.replace(',', '.')
        return value

    integer_field = IntegerField(method=clean_digits)
    integer_field_result = integer_field.set('123@@@')
    print(f"input value: '123@@@', integer_field value: {integer_field.value}")

    float_field = FloatField(method=clean_digits)
    float_field_result = float_field.set('222,00')
    print(f"input value: '222,00', float_field value: {float_field.value}")

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.