JSON with tz-aware datetime support
Project description
Sick of rewriting the same JSON datetime handling code for each project? jsondate3-aware is a drop-in replacement for Python’s standard json library that adds sensible handling of datetime and date objects.
jsondate3-aware uses ISO8601 for encoding datetime objects and the date-specific part of ISO6801 for encoding date objects.
It:
supports Python 2 and 3
creates timezone-aware datetime objects when able
supports JavaScript-style dates (datetime.datetime(%Y, %m, %d, %H, %M, %S))
Example:
import datetime import jsondate3 as json >>> data = json.dumps(dict(created_at=datetime.datetime(2012, 10, 31))) '{"created_at": "2012-10-31T00:00:00Z"}' >>> json.loads(data) {u'created_at': datetime.datetime(2012, 10, 31, 0, 0, tzinfo=datetime.timezone.utc)} >>> date = json.dumps(dict(date=datetime.date(2012, 10, 31))) '{"date": "2012-10-31"}' >>> json.loads(data) {u'created_at': datetime.date(2012, 10, 31)}
Testing
Run them with:
python -m unittest tests.test_jsondate
Deployment
If you wish to create a new version manually, the process is:
Update version info in setup.py
Install the requirements in requirements_dev.txt
Set up a config file at ~/.pypirc
Generate a universal distribution that worksin py2 and py3 (see setup.cfg)
rm -r dist && python setup.py sdist bdist_wheel
Upload the distributions
twine upload dist/* -r pypi (or pypitest)
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
Built Distribution
File details
Details for the file jsondate3-aware-0.2.1.tar.gz
.
File metadata
- Download URL: jsondate3-aware-0.2.1.tar.gz
- Upload date:
- Size: 5.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/44.1.0 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/2.7.18rc1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0e21392083a8e65a3a375cd6f72c49e49b41d2738695c11a4504eb5a4636f39b |
|
MD5 | ba78f008c2a4e66568f2a17e977f8df7 |
|
BLAKE2b-256 | 91184fe0b05eea81f33b98e369d2e6204659872cd33ddf3506c00f6a2fe0e00f |
File details
Details for the file jsondate3_aware-0.2.1-py2.py3-none-any.whl
.
File metadata
- Download URL: jsondate3_aware-0.2.1-py2.py3-none-any.whl
- Upload date:
- Size: 5.4 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/44.1.0 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/2.7.18rc1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ebb4c2be55b9c832e94267116ef1bb5f1523bb6b8fddc0cc453153b8d0da74cb |
|
MD5 | 64848a23724649ddd419670081a3c681 |
|
BLAKE2b-256 | 57a1ceabe75e91ebc3d5a66c8a23cb4412b0676a4706359a5517e526c5b269c0 |