dullbananas
/
pyanywhere
Archived
1
0
Fork 0
Wrapper around the PythonAnywhere API with classes for consoles, webapps, etc.
This repository has been archived on 2022-06-28. You can view files and clone it, but cannot push or open issues/pull-requests.
 
Go to file
Dull Bananas e2299b8283
Add badges and PyPI link to readme
2019-11-20 18:04:16 -07:00
docs Add API documentation for consoles 2019-11-19 19:17:09 -07:00
pyanywhere Add API documentation for consoles 2019-11-19 19:17:09 -07:00
.gitignore Initial commit 2019-11-16 08:00:57 -07:00
LICENSE Initial commit 2019-11-16 08:00:57 -07:00
README.md Add badges and PyPI link to readme 2019-11-20 18:04:16 -07:00
setup.py Initial commit thing 2019-11-16 09:18:58 -07:00

README.md

Read the Docs PyPI PyPI - Python Version

pyanywhere

This is a wrapper for the PythonAnywhere API that is currently in alpha stage of development. Here is an example showing how it works:

from pyanywhere.users import User
user = User('username', token='XXXXXXXX')

# Print names of all consoles
for console in user.get_consoles():
    print(console.name)