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.2.tar.gz
(18.9 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.2.tar.gz.
File metadata
- Download URL: pydeclares-1.0.2.tar.gz
- Upload date:
- Size: 18.9 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 |
73ab7730c3bbcfa4334d16f39abf39279cda060d887d186718f162d4bc668ef8
|
|
| MD5 |
316304a052b354d301d338777a8ab264
|
|
| BLAKE2b-256 |
16c1a0547c91c23925418fbdf87cb1a7642df911a06038f07f998a4264adb3c7
|
File details
Details for the file pydeclares-1.0.2-py3-none-any.whl.
File metadata
- Download URL: pydeclares-1.0.2-py3-none-any.whl
- Upload date:
- Size: 23.6 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 |
056c50e03af5d9820d8ac6fa7bcceb40de0f847ec62256b13a4c2a009d6cbdda
|
|
| MD5 |
eb49462953717e09766a3cf520396370
|
|
| BLAKE2b-256 |
f39babe4863b33993eff3eb99914c29779263b703c6c4499dee25a6bc3c2611b
|