This is a python port of the node.js library entangld
, which you can checkout
here
// TODO
Be sure to checkout the full api here
- GIVE
entangld.Entangld
A__repr__
for goodness sake! - Add more some examples to the readme
- Add more documentation
- Add more tests
- Add limit to set/push request for recursion depth
- Standardize how methods are treated as sync or async
Setup the a virtual environment
$ python3 -m venv venv
$ source venv/bin/activate
(venv) $ pip install -r requirements.txt # install dependencies
(venv) $ python setup.py install # build an installation
Run tests like:
$ ./scripts/run_tests.sh
Build documentation like:
$ ./scripts/gen_docs.sh
To upload to pip, first remove old source packages and build new ones:
(venv) $ rm -r build dist entangld.egg-info
(venv) $ python setup.py sdist
Then push it to pip with (with appropriate ~/.pypirc
file):
$ ./venv/bin/twine upload dist/*