Read and write common file formats to Amazon S3 and local files
Project description
baiji-serialization
===================
Read and write common file formats to Amazon S3 and local files.
Features
--------
- Reads and writes Pickle, JSON, and YAML
- Works without an S3 connection (with local files)
- Supports Python 2.7 and uses boto2
- Supports OS X, Linux, and Windows
- Tested and production-hardened
Examples
--------
```py
from baiji.serialization import json
with open(filename, 'w') as f:
json.dump(foo, f)
with open(filename, 'r') as f:
foo = json.load(foo, f)
```
```py
from baiji.serialization import json
json.dump(filename)
foo = json.load(filename)
```
Development
-----------
```sh
pip install -r requirements_dev.txt
rake test
rake lint
```
Contribute
----------
- Issue Tracker: github.com/bodylabs/baiji-serialization/issues
- Source Code: github.com/bodylabs/baiji-serialization
Pull requests welcome!
Support
-------
If you are having issues, please let us know.
License
-------
The project is licensed under the Apache license, version 2.0.
===================
Read and write common file formats to Amazon S3 and local files.
Features
--------
- Reads and writes Pickle, JSON, and YAML
- Works without an S3 connection (with local files)
- Supports Python 2.7 and uses boto2
- Supports OS X, Linux, and Windows
- Tested and production-hardened
Examples
--------
```py
from baiji.serialization import json
with open(filename, 'w') as f:
json.dump(foo, f)
with open(filename, 'r') as f:
foo = json.load(foo, f)
```
```py
from baiji.serialization import json
json.dump(filename)
foo = json.load(filename)
```
Development
-----------
```sh
pip install -r requirements_dev.txt
rake test
rake lint
```
Contribute
----------
- Issue Tracker: github.com/bodylabs/baiji-serialization/issues
- Source Code: github.com/bodylabs/baiji-serialization
Pull requests welcome!
Support
-------
If you are having issues, please let us know.
License
-------
The project is licensed under the Apache license, version 2.0.
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
Close
Hashes for baiji-serialization-1.0.1.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | c5d7dc0647ecca7af73b725517b229caa246127bdd67c3149f2947ba1f9ee4e1 |
|
MD5 | 0fbee589abb5149b7ba9466d7a3ff75f |
|
BLAKE2b-256 | 03408d41c029d94799fe05ebf3d5261b1c44b0e7116d842554f26d423c7e0332 |