OPENREC.tv API wrapper for Python.
pip install git+https://github.com/vinyl-umbrella/pyopenrec
from pyopenrec import Openrec
openrec = Openrec("YOUR_EMAIL", "YOUR_PASSWORD")
user = openrec.me()
print(user.id)
There are more programs here
# install dev dependencies
pipenv install --dev
# Spawns a shell within the virtualenv
pipenv shell
# If you add some packages, add it to the requirements.txt
pip freeze > requirements.txt
# install pyopenrec to virtual environment
pipenv install -e .
# lint & test
pipenv run lint
pipenv run test
- Fork this repository
- Clone your fork
- Create your feature branch
- Commit your changes
- Push to the branch
- Submit a pull request