Skip to main content

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


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pydeclares-0.6.3.tar.gz (10.2 kB view details)

Uploaded Source

File details

Details for the file pydeclares-0.6.3.tar.gz.

File metadata

  • Download URL: pydeclares-0.6.3.tar.gz
  • Upload date:
  • Size: 10.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.24.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.6.8

File hashes

Hashes for pydeclares-0.6.3.tar.gz
Algorithm Hash digest
SHA256 c4946d566c4eeb3579102e11f03135652b9781d188830a2af4d5c346a411ce2c
MD5 1023cb7d831c27591328eb2ec399e8b4
BLAKE2b-256 076a30809e9202fd566f6086d2d7c91bd49946b31f88dc52cadfbd2970bef4f3

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page