https://github.com/erudika/para-client-python
Python client for Para
https://github.com/erudika/para-client-python
api-client backend-services para python3
Last synced: 2 months ago
JSON representation
Python client for Para
- Host: GitHub
- URL: https://github.com/erudika/para-client-python
- Owner: Erudika
- License: apache-2.0
- Created: 2020-02-24T21:42:24.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2025-07-01T07:52:42.000Z (6 months ago)
- Last Synced: 2025-10-12T07:24:26.707Z (2 months ago)
- Topics: api-client, backend-services, para, python3
- Language: Python
- Homepage: https://paraio.org
- Size: 165 KB
- Stars: 5
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README

# Python Client for Para
[](https://badge.fury.io/py/paraclient)
[](https://gitter.im/Erudika/para)
## What is this?
**Para** was designed as a simple and modular backend framework for object persistence and retrieval.
It helps you build applications faster by taking care of the backend. It works on three levels -
objects are stored in a NoSQL data store or any old relational database, then automatically indexed
by a search engine and finally, cached.
This is the Python client for Para.
### Quick start
1. Use the [PyPI](https://pypi.python.org/pypi) package manager to install the Python client for Para:
```sh
$ pip3 install paraclient
```
2. Initialize the client with your access and secret API keys.
```python
from paraclient import ParaClient
paraclient = ParaClient('ACCESS_KEY', 'SECRET_KEY');
```
## Documentation
### [Read the Docs](https://paraio.org/docs)
## Contributing
1. Fork this repository and clone the fork to your machine
2. Create a branch (`git checkout -b my-new-feature`)
3. Implement a new feature or fix a bug and add some tests
4. Commit your changes (`git commit -am 'Added a new feature'`)
5. Push the branch to **your fork** on GitHub (`git push origin my-new-feature`)
6. Create new Pull Request from your fork
For more information see [CONTRIBUTING.md](https://github.com/Erudika/para/blob/master/CONTRIBUTING.md)
## License
[Apache 2.0](LICENSE)