pythonanywhereapiclient 2.0.1

Creator: railscoder56

Last updated:

0 purchases

pythonanywhereapiclient 2.0.1 Image
pythonanywhereapiclient 2.0.1 Images
Add to Cart

Description:

pythonanywhereapiclient 2.0.1

pythonanywhereapiclient



Thin wrapper for the PythonAnywhere API.
Features

Basic API client responsible for authentication and sending requests
List and configure webapps
List and upload files
List and configure schedules
List and work with consoles

Technical requirements
Below is the list of currently supported Python releases:



#
Python




1
3.7


2
3.8


3
3.9



Code and contribution
The code is open source and released under the MIT License (MIT). It is available on Gitlab and follows the guidelines about Semantic Versioning for transparency within the release cycle and backward compatibility whenever possible.
All contributions are welcome, whether bug reports, reviews, documentation or feature requests.
If you're a developer and have time and ideas for code contributions, fork the repo and prepare a merge request:
# Prepare your environment the first time
mkvirtualenv --python=python3.8 pythonanywhereapiclient-py38
pip install -e .[testing]

# Running the tests while development
pytest

# Individual Python release tests and code quality checks
tox -e py38
tox -e coverage
tox -e isort
tox -e brunette
tox -e flake8

# Ensure code quality running the entire test suite,
# this requires all supported Python releases to be installed
tox

Getting Started
This document provides all the basic information you need to start using the client. It covers base concepts, shows examples, and documents links for further reading.
Setup
There are a few setup steps you need to complete before you can proceed:

Sign up for a PythonAnywhere account, if you don't already have one.
Activate your personal API token.

Installation
Install pythonanywhereapiclient using pip:
pip install pythonanywhereapiclient

Configuration
The client simply needs three environment variables to work properly:

PYTHONANYWHERE_API_CLIENT_HOST
PYTHONANYWHERE_API_CLIENT_TOKEN
PYTHONANYWHERE_API_CLIENT_USER

For example to set these environment variables in a bash:
export PYTHONANYWHERE_API_CLIENT_HOST="www.pythonanywhere.com"
export PYTHONANYWHERE_API_CLIENT_TOKEN="yoursecrettoken"
export PYTHONANYWHERE_API_CLIENT_HOST="yourusername"

Valid values for PYTHONANYWHERE_API_CLIENT_HOST are www.pythonanywhere.com and eu.pythonanywhere.com.
Usage
The following examples showcase some typical usage scenarios.
from pythonanywhereapiclient import console, file, schedule, webapp

# Create a webapp
webapp.create('example.com', 'python36')

# List all webapps
webapp.list()

# Modify an existing webapp
webapp.modify(
'example.com',
python_version='3.6',
working_directory='/home/user/work',
source_directory='/home/user/source',
virtualenv_path='/home/user/virtualenv',
force_https=True
)

# Create a static mapping
webapp.create_static('example.com', '/static/', '/home/user/data/static')

# Reload a webapp (e.g. after source or configuration changes)
webapp.reload('example.com')

# Disable a webapp
webapp.disable('example.com')

# Enable a webapp
webapp.enable('example.com')

# Delete a webapp
webapp.delete('example.com')

# List all files at path
file.list('/home/username/data')

# Upload a file
file.upload('/home/username/data/foo.txt', 'this is a text file')

# Create a schedule
schedule.create(command='clear', enabled=True, interval='daily', hour=12, minute=59)

# List all schedules
schedule.list()

# Delete a schedule
schedule.delete(id=1)

# Create a console
console.create(executable='bash', working_directory='/home')

# List all consoles
console.list()

# Send input to a console
console.send_input(id=1, input='whoami\n')

# Get latest output from a console
console.get_latest_output(id=1)

# Kill a console
console.kill(id=1)

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Customer Reviews

There are no reviews.