JSON (with dates)
Project description
jsond
An extension of json: but one that (naively) handles dates.
Installation
You can use pip. (Note that it uses setuptools
)
pip install jsond
To also install development tools use:
pip install jsond[dev]
# or
pip install -e .[dev]
Simple Usage
I have a date.
>>> import datetime
>>> my_date = datetime.datetime(2011, 3, 15, 0, 0, 0)
Standard json
doesn't deal with dates :(
>>> import json
>>> json.dumps(my_date)
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/json/__init__.py", line 243, in dumps
return _default_encoder.encode(obj)
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/json/encoder.py", line 207, in encode
chunks = self.iterencode(o, _one_shot=True)
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/json/encoder.py", line 270, in iterencode
return _iterencode(o, 0)
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/json/encoder.py", line 184, in default
raise TypeError(repr(o) + " is not JSON serializable")
TypeError: datetime.datetime(2011, 3, 15, 0, 0) is not JSON serializable
But jsond
will handle it
>>> import jsond
>>> jsond.dumps(my_date)
'"datetime:2011-03-15T00:00:00"'
>>>
And we can pull the date back as well.
>>> jsond.loads('"datetime:2011-03-15T00:00:00"')
datetime.datetime(2011, 3, 15, 0, 0)
>>> date2 = jsond.loads('"datetime:2011-03-15T00:00:00"')
>>> type(date2)
<type 'datetime.datetime'>
>>> date2 == my_date
True
>>> date2
datetime.datetime(2011, 3, 15, 0, 0)
>>>
Also, jsond
will produce output that won't break json
.
(Though of course, you'll get a string rather than a datetime object.)
>>> enc = jsond.dumps(my_date)
>>> json.loads(enc)
u'datetime:2011-03-15T00:00:00'
>>>
Other usage
Often message-processing systems will use json internally to serialise messages.
But that means that dates can't (easily) be used.
To help with this, we provide two functions: from_json_serialisable_object
and to_json_serialisable_object
.
For those who prefer spelling serialise with a 'z', there are two 'alias' functions for convenience.
from_json_serializable_object
->from_json_serialisable_object
to_json_serializable_object
->to_json_serialisable_object
def handle_message(original_message):
# At this stage original_message will be a dict, list etc, but it won't
# have any datetime objects as it was json-serialisable.
# We might have prepared it earlier with jsond.dumps, but that means that
# we have 'datetime:...' string instead of datetime objects.
message = jsond.from_json_serialisable_object(original_message)
# message will now have datetime objects
# We can do whatever processing we want.
# Now we have to put message back on the queue. We have to output an
# object that the broker will put back onto the queue etc.
# So we can't have datetime objects. But we want to output an object
# (not an encoded string).
new_message = jsond.to_json_serialisable_object(message)
# Now we can output/emit/etc new_message.
return new_message
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
File details
Details for the file jsond-1.5.0.tar.gz
.
File metadata
- Download URL: jsond-1.5.0.tar.gz
- Upload date:
- Size: 5.3 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.45.0 CPython/2.7.15
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 84ae22f84976d4a7a44f1b6eef527104ddf591f328d4ebb9cb3d1732dbdcf955 |
|
MD5 | 6fbcd211cff424109e0541731d11e08f |
|
BLAKE2b-256 | d9dc334c9dfec4bf37795cef50637e2ceed07dd3039f547ef7bc4c85a237416f |