An API wrapper around the pythonanywhere’s API
pyaww
An API wrapper around the pythonanywhere’s API. The name stands for py
thona
nyw
herew
rapper.
- 100% API coverage
- Most of the codebase is documented & typehinted
- Maintained
# import the module
from pyaww.user import User
# construct the user class
client = User(auth='...', username='...')
for console in client.consoles():
print(console.name)
Please look at the documentations: https://ammarsys.github.io/pyaww-docs/
PyPi: https://pypi.org/project/pyaww
# Linux/MacOS
python3 -m pip install pyaww
# Windows
py -m pip install pyaww
For the dev version, do:
git clone https://github.com/ammarsys/pyaww
cd pyaww
GitHub