Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

New API #5

Open
Bobronium opened this issue Oct 4, 2019 · 0 comments
Open

New API #5

Bobronium opened this issue Oct 4, 2019 · 0 comments
Labels
enhancement New feature or request help wanted Extra attention is needed question Further information is requested

Comments

@Bobronium
Copy link
Contributor

Bobronium commented Oct 4, 2019

Let's discuss new vaa api here.

Previously discussed:

  • Make errors list of ErrorObj (Should we make it raisable?);
  • Drop special types for validators in favor of functions and typing.NamedTuple. (done in New validators creation method #3)

I also suggest to:

  • drop is_valid property and threat data as valid if no errors returned;
  • rename cleaned_data to data (cause it shorter) and just assume that is valid (still not sure about this).

New api example:

validator = vaa.get_from(some_scheme)
some_data = {'a': 1}
result = validator(some_data)
result.data
result.errors
# or
data, errors = validator(some_data)

if errors:  # not valid
    ...

To think about:

  • raising exception on errors?
  • if we return errors and data is valid, should we return errors as a empty list or as None (same goes for data)?
@Bobronium Bobronium added enhancement New feature or request help wanted Extra attention is needed question Further information is requested labels Oct 4, 2019
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request help wanted Extra attention is needed question Further information is requested
Development

No branches or pull requests

1 participant