https://github.com/closeio/cleancat
Validation and serialization library for Python designed to be used with JSON REST frameworks
https://github.com/closeio/cleancat
Last synced: about 1 year ago
JSON representation
Validation and serialization library for Python designed to be used with JSON REST frameworks
- Host: GitHub
- URL: https://github.com/closeio/cleancat
- Owner: closeio
- License: mit
- Created: 2012-09-27T03:03:19.000Z (almost 14 years ago)
- Default Branch: master
- Last Pushed: 2024-03-20T17:48:26.000Z (over 2 years ago)
- Last Synced: 2025-04-05T13:51:26.863Z (about 1 year ago)
- Language: Python
- Homepage:
- Size: 346 KB
- Stars: 52
- Watchers: 22
- Forks: 8
- Open Issues: 11
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
CleanCat
========
[](https://travis-ci.org/closeio/cleancat)
Validation library for Python designed to be used with JSON REST frameworks
### Basic example in Flask
```py
class JobApplication(Schema):
first_name = String()
last_name = String()
email = Email()
urls = List(URL(default_scheme='http://'))
@app.route('/job_application', methods=['POST'])
def test_view():
schema = JobApplication(request.json)
try:
data = schema.full_clean()
except SchemaValidationError:
return jsonify({'field-errors': schema.field_errors, 'errors': schema.errors }), 400
# Now "data" has the validated data
```