Skip to main content

No project description provided

Project description

MultiOn Python Library

fern shield pypi

The MultiOn Python Library provides convenient access to the MultiOn API from applications written in Python.

Documentation

API reference documentation is available here.

Installation

Add this dependency to your project's build file:

pip install multion
# or
poetry add multion

Usage

Simply import MultiOn and start making calls to our API.

from multion.client import MultiOn

client = MultiOn(
    api_key="YOUR_API_KEY" # defaults to os.getenv("MULTION_API_KEY")
)
response = client.browse(
    url="https://google.com"
)

Async Client

The SDK also exports an async client so that you can make non-blocking calls to our API.

from multion.client import AsyncMultiOn

client = AsyncMultiOn(
    api_key="YOUR_API_KEY" # defaults to os.getenv("MULTION_API_KEY")
)

async def main() -> None:
    await response = client.browse(
        url="https://google.com"
    )

asyncio.run(main())

Exception Handling

All errors thrown by the SDK will be subclasses of ApiError.

import multion

try:
  client.browse(...)
except multion.core.ApiError as e: # Handle all errors
  print(e.status_code)
  print(e.body)

Advanced

Retries

The MultiOn SDK is instrumented with automatic retries with exponential backoff. A request will be retried as long as the request is deemed retriable and the number of retry attempts has not grown larger than the configured retry limit.

A request is deemed retriable when any of the following HTTP status codes is returned:

  • 408 (Timeout)
  • 429 (Too Many Requests)
  • 5XX (Internal Server Errors)

Use the max_retries request option to configure this behavior.

from multion.client import MultiOn

client = MultiOn()

# Override retries for a specific method
client.brwose(url="https://google.com", {
    max_retries=1
})

Timeouts

By default, requests time out after 60 seconds. You can configure this with a timeout option at the client or request level.

from multion.client import MultiOn

client = MultiOn(
    # All timeouts are 20 seconds
    timeout=20.0,
)

# Override timeout for a specific method
client.brwose(url="https://google.com", {
    timeout_in_seconds=20.0
})

Custom HTTP client

You can override the httpx client to customize it for your use-case. Some common use-cases include support for proxies and transports.

import httpx

from multion.client import MultiOn

client = MultiOn(
    http_client=httpx.Client(
        proxies="http://my.test.proxy.example.com",
        transport=httpx.HTTPTransport(local_address="0.0.0.0"),
    ),
)

Beta Status

This SDK is in beta, and there may be breaking changes between versions without a major version update. Therefore, we recommend pinning the package version to a specific version. This way, you can install the same version each time without breaking changes.

Contributing

While we value open-source contributions to this SDK, this library is generated programmatically. Additions made directly to this library would have to be moved over to our generation code, otherwise they would be overwritten upon the next generated release. Feel free to open a PR as a proof of concept, but know that we will not be able to merge it as-is. We suggest opening an issue first to discuss with us!

On the other hand, contributions to the README are always very welcome!

Project details


Release history Release notifications | RSS feed

Download files

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

Source Distribution

multion-1.3.6.tar.gz (24.2 kB view details)

Uploaded Source

Built Distribution

multion-1.3.6-py3-none-any.whl (49.6 kB view details)

Uploaded Python 3

File details

Details for the file multion-1.3.6.tar.gz.

File metadata

  • Download URL: multion-1.3.6.tar.gz
  • Upload date:
  • Size: 24.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.5.1 CPython/3.8.18 Linux/5.15.0-1068-azure

File hashes

Hashes for multion-1.3.6.tar.gz
Algorithm Hash digest
SHA256 fa0eccd13a0e0d558cc2d9d4a9316f804dc9fd21f191e263a1c1885237d6bc9d
MD5 181c7db9ea704d6012226308d99c279f
BLAKE2b-256 b5cdc56f28f6147b75365b37a947292317dccf36b3b61b0593dca152ffbf71b8

See more details on using hashes here.

File details

Details for the file multion-1.3.6-py3-none-any.whl.

File metadata

  • Download URL: multion-1.3.6-py3-none-any.whl
  • Upload date:
  • Size: 49.6 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.5.1 CPython/3.8.18 Linux/5.15.0-1068-azure

File hashes

Hashes for multion-1.3.6-py3-none-any.whl
Algorithm Hash digest
SHA256 d659d05d5e5de2b11d085a2b8dede5be9af17ff96feb2d02acb56176cbdf1d94
MD5 84b3eb5dd211fcb92495e207059a0c39
BLAKE2b-256 c101e350dd5f12174c81b9b57dd3ee9bdb0d5125cf9332b9319596d792198140

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