A tool for provide format and serialize support to json, xml, form data and query string.
Project description
PyDeclares
This library provides a simple API for encoding and decoding declared classes to and from JSON, XML, FORM-DATA or QueryString.
It's very easy to get started.
Quickstart
pip install pydeclares
from pydeclares import var, Declared
class Person(Declared):
name = var(str)
age = var(int)
# decode json string
data = '{"name": "Tom", "age": 18}'
person = Person.from_json(data)
assert person.name == "Tom"
assert person.age == 18
# you can encode to xml after decode json string
result = person.to_xml()
assert result == '<person><name>Tom</name><age>18</age></person>'
# or form-data
result = person.to_form_data()
assert result == "name=Tom&age=18"
# or query string
person = Person(name="tom@a", age=18)
result = person.to_query_string()
assert result == "name=tom%40a&age=18"
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
pydeclares-1.0.1.tar.gz
(18.8 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file pydeclares-1.0.1.tar.gz.
File metadata
- Download URL: pydeclares-1.0.1.tar.gz
- Upload date:
- Size: 18.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.1.0 requests-toolbelt/0.9.1 tqdm/4.55.1 CPython/3.6.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
373ff4dfc8aa37d2edadf2225fc8c84a46070efbf7431c74799c09b458ba502b
|
|
| MD5 |
445373c26754217e693843a38a4a1e8c
|
|
| BLAKE2b-256 |
aaf3041d00378282293ec89e8dd2a903ad27deb1cb0aa9e9a5a2c11230766309
|
File details
Details for the file pydeclares-1.0.1-py3-none-any.whl.
File metadata
- Download URL: pydeclares-1.0.1-py3-none-any.whl
- Upload date:
- Size: 23.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.1.0 requests-toolbelt/0.9.1 tqdm/4.55.1 CPython/3.6.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c69c4985e1d6ce9af7b0e8e0ced6efc0ba4ecc1ec5bac7e6640ce660307c8d9e
|
|
| MD5 |
5fb52c350cc146fe5d9e899ab70081b9
|
|
| BLAKE2b-256 |
a391e752e25ad37a6438f410f2207475bb904f6e3d92b262aabe145795fbbaa9
|