Skip to main content

This is a Python library for interacting with the PythonAnywhere platform

Project description

PythonAnywhere Client

This is a Python client library for interacting with the PythonAnywhere platform. The library provides functions to manage web applications, tasks, and other features offered by PythonAnywhere. It uses the requests library for making HTTP requests and provides a simple interface to perform various tasks.

Installation

You can install it using pip

pip install pythonanywhere-client

Usage

PythonAnywhereWeb

from pythonanywhere_client import PythonAnywhereWeb

# Replace with your PythonAnywhere username and password
username = 'your_username'
password = 'your_password'

# Replace with your User-Agent
user_agent_string = 'my_user_agent_string'

# Create client and request session
client = PythonAnywhereWeb(username, password)
client.create_session(user_agent_string)

# Logging in
login_response = client.login()

if login_response.error:
    print('Login failed:', login_response.data['message'])
else:
    print('Login successful!')

# Get web application expiry date
app_name = 'your_app_name'

expiry_response = client.get_app_expiry_date(app_name)

if expiry_response.error:
    print('Error:', expiry_response.data['message'])
else:
    print('Expiry Date:', expiry_response.data['expiry_date'])

# ... (other methods)

PythonAnywhereApi

from pythonanywhere_client import PythonAnywhereApi

# Replace with your API token
token = 'my_api_token'

# Replace with your User-Agent
user_agent_string = 'my_user_agent_string'

client = PythonAnywhereApi(token)
client.create_session(user_agent_string)

file_response = client.get_file('/home/myusername/test.txt')

if file_response.error:
    print('Error: ', file_response.data['message'])
else:
    print('File content: ', file_response.data['content'])

# ... (other methods)

Methods

PythonAnywhereWeb

  • login() - Log in to the PythonAnywhere platform
  • logout() - Log out from the PythonAnywhere platform
  • get_app_expiry_date(app_name) - Get the expiry date of a web application
  • reload_app(app_name) - Reload a web application
  • extend_task(task_id)- Extend the schedule of a task
  • extend_app(app_name)- Extend the schedule of a web application
  • start_console(console_id) - Start a console

PythonAnywhereApi

  • create_console() - Create a console
  • delete_console(console_id) - Delete a console
  • list_consoles() - List active consoles
  • console_latest_output(console_id) - Get the latest output from the console
  • console_input(console_id, input_string) - Send the input to the console
  • get_file(path) - Get the contents of the file
  • create_file(path, content) - Create a file
  • delete_file(path) - Delete a file
  • can_create_tasks()- Check if the user is allowed to create tasks
  • create_task(command, description, hour, minute, enabled=True, interval='daily') - Create a task
  • delete_task(task_id)- Delete a task
  • get_tasks(): Get a list of user's tasks.
  • reload_app(app_name) - Reload a web application
  • enable_app(app_name) - Enable a web application
  • disable_app(app_name) - Disable a web application
  • get_static_headers(app_name) - List static headers for an application
  • create_static_header(app_name: str, header_url: str, name: str, value: str) - Create a static header
  • delete_static_header(app_name: str, header_id: int) - Delete a static header
  • get_static_header(app_name: str, header_id: int) - Show a static header
  • get_static_paths(app_name) - List static paths for an application
  • create_static_path(app_name: str, static_path_url: str, path: str) - Create a static path
  • delete_static_path(app_name: str, static_path_id: int) - Delete a static path
  • get_static_path(app_name: str, static_path_id: int) - Show a static path

Contributing

Contributions to this project are welcome! If you find any issues or have suggestions for improvements, feel free to open an issue or submit a pull request.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pythonanywhere-client-1.1.6.tar.gz (9.6 kB view details)

Uploaded Source

Built Distribution

pythonanywhere_client-1.1.6-py3-none-any.whl (7.1 kB view details)

Uploaded Python 3

File details

Details for the file pythonanywhere-client-1.1.6.tar.gz.

File metadata

  • Download URL: pythonanywhere-client-1.1.6.tar.gz
  • Upload date:
  • Size: 9.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.5

File hashes

Hashes for pythonanywhere-client-1.1.6.tar.gz
Algorithm Hash digest
SHA256 15af5b8fbdd3b34f0572c676863da4511aba4d839b391b24eec5981a478bbcb9
MD5 fa499abdaad6f17a8a4d53a3f45bfda4
BLAKE2b-256 88a515bb22d22891cf359893dc628bce57d5ade0b4b2dd3260869ea4a0453896

See more details on using hashes here.

File details

Details for the file pythonanywhere_client-1.1.6-py3-none-any.whl.

File metadata

File hashes

Hashes for pythonanywhere_client-1.1.6-py3-none-any.whl
Algorithm Hash digest
SHA256 a02439fc54974889061b6f924d52560b2bc684309dcd5f2ab1dba83d14c5d00b
MD5 7c512d18cf1908dab65ad58f5e770be5
BLAKE2b-256 98385ba6cb9d53960550140d6a482bb5c84f6884cc9953c5bffe9180768bea5d

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page