Skip to main content

No project description provided

Project description

Fly.io Python SDK (Unofficial)

The fly-python-sdk library is an unofficial Python API wrapper for Fly.io's Machines API.

Installation

pip install fly-python-sdk

How to Use

In order to use fly-python-sdk, you'll need to obtain a valid authentication token. To do this, use flyctl's fly auth token command or create a new token in your Fly.io dashboard.

Orgs

Create an App

import asyncio

from fly_python_sdk.fly import Fly

fly = Fly("FLY_API_TOKEN")

asyncio.run(fly.Org("my-org").create_app(app_name="fly-away"))

List Apps

import asyncio

from fly_python_sdk.fly import Fly

fly = Fly("FLY_API_TOKEN")

asyncio.run(fly.Org("my-org").list_apps())

Apps

Delete an App

import asyncio

from fly_python_sdk.fly import Fly

fly = Fly("FLY_API_TOKEN")

asyncio.run(fly.Org("my-org").App("fly-away").delete())

Inspect an App

import asyncio

from fly_python_sdk.fly import Fly

fly = Fly("FLY_API_TOKEN")

asyncio.run(fly.Org("my-org").App("fly-away").inspect())

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

fly_python_sdk-0.3.3.tar.gz (7.5 kB view hashes)

Uploaded Source

Built Distribution

fly_python_sdk-0.3.3-py3-none-any.whl (10.7 kB view hashes)

Uploaded Python 3

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