Extended JSON encoder for Python data structures
Project description
json-ext-encoder

Extended JSON encoder for Python data structures.
A subclass of JSONEncoder, it handles these additional types:
datetime.datetime— a string of the formYYYY-MM-DDTHH:mm:ss.sssZorYYYY-MM-DDTHH:mm:ss.sss+HH:MMas defined in ECMA-262.datetime.date— a string of the formYYYY-MM-DDas defined in ECMA-262.datetime.time— a string of the formHH:MM:ss.sssas defined in ECMA-262.datetime.timedelta- a string representing a duration as defined in ISO-8601. For example,timedelta(days=1, hours=2, seconds=3.4)is represented asP1DT02H00M03.400000S.decimal.Decimal,uuid.UUID— a string representation of the object.enum.Enum— a.valueproperty of enum member.
Installation
$ pip install json-ext-encoder
Usage
import json
from json_ext_encoder import JSONEncoder
json.dumps({...}, cls=JSONEncoder)
Contributing
To work on the json-ext-encoder codebase, you'll want to clone the project locally and install the required dependencies via poetry:
$ git clone git@github.com:Gr1N/json-ext-encoder.git
$ poetry install
To run tests and linters use command below:
$ poetry run tox
If you want to run only tests or linters you can explicitly specify which test environment you want to run, e.g.:
$ poetry run tox -e py37-tests
License
json-ext-encoder is licensed under the MIT license. See the license file for details.
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
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 json-ext-encoder-0.2.0.tar.gz.
File metadata
- Download URL: json-ext-encoder-0.2.0.tar.gz
- Upload date:
- Size: 3.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bafb5834e513814134679c52c6b7c8f757cb055fbaa020d0e0659c64a086a013
|
|
| MD5 |
896064cbbe880048f78874bf4cbc8dcd
|
|
| BLAKE2b-256 |
f3b92b5d6013063c1d7463d58c1a90de50c03fd93a2fa530bf8758ac5511c0bf
|
File details
Details for the file json_ext_encoder-0.2.0-py3-none-any.whl.
File metadata
- Download URL: json_ext_encoder-0.2.0-py3-none-any.whl
- Upload date:
- Size: 6.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
699a0c8efd4e1af1e6cc737f9ed06dd6acc8d5028605e5b2a016d841d9c439a5
|
|
| MD5 |
6696de4b9da2d37bb6b7baa6ad44e6d4
|
|
| BLAKE2b-256 |
543d5372d4cd790a35be371c90359cea9683aacd7d4e6415fa849ae97d679381
|