Skip to main content

Welcome to the CELITECH API documentation!

Project description

Celitech Python SDK 2.0.2

Welcome to the Celitech SDK documentation. This guide will help you get started with integrating and using the Celitech SDK in your project.

Versions

  • API version: 2.0.2
  • SDK version: 2.0.2

About the API

Welcome to the CELITECH API documentation!

Useful links: Homepage | Support email | Blog

Table of Contents

Setup & Configuration

Supported Language Versions

This SDK is compatible with the following versions: Python >= 3.7

Installation

To get started with the SDK, we recommend installing using pip:

pip install celitech-sdk

If you are using Python 3, you can use pip3 instead:

pip3 install celitech-sdk

Authentication

OAuth Authentication

The Celitech API uses OAuth 2.0 for authentication.

You need to provide your OAuth credentials when initializing the SDK. Tokens are automatically fetched, cached, and refreshed — you do not need to manage them yourself.

sdk = Celitech(
    client_id="CLIENT_ID",
    client_secret="CLIENT_SECRET"
)

If you need to set or update the OAuth credentials after the SDK initialization, you can use:

sdk.set_client_id("CLIENT_ID")
sdk.set_client_secret("CLIENT_SECRET")

Environment Variables

These are the environment variables for the SDK:

Name Description
CLIENT_ID Client ID parameter
CLIENT_SECRET Client Secret parameter

Environment variables are a way to configure your application outside the code. You can set these environment variables on the command line or use your project's existing tooling for managing environment variables.

If you are using a .env file, a template with the variable names is provided in the .env.example file located in the same directory as this README.

Setting a Custom Timeout

You can set a custom timeout for the SDK's HTTP requests as follows:

from celitech import Celitech

sdk = Celitech(timeout=10000)

Sample Usage

Below is a comprehensive example demonstrating how to authenticate and call a simple endpoint:

from celitech import Celitech

sdk = Celitech(
    client_id="CLIENT_ID",
    client_secret="CLIENT_SECRET"
)

result = sdk.destinations.list_destinations()

print(result)

Async Usage

The SDK includes an Async Client for making asynchronous API requests. This is useful for applications that need non-blocking operations, like web servers or apps with a graphical user interface.

import asyncio
from celitech import CelitechAsync

sdk = CelitechAsync(
    client_id="CLIENT_ID",
    client_secret="CLIENT_SECRET"
)


async def main():
  result = await sdk.destinations.list_destinations()
  print(result)

asyncio.run(main())

Services

The SDK provides various services to interact with the API.

Below is a list of all available services:
Name
destinations
packages
purchases
e_sim
i_frame

Models

The SDK includes several models that represent the data structures used in API requests and responses. These models help in organizing and managing the data efficiently.

Below is a list of all available models:
Name Description
ListDestinationsOkResponse
ListPackagesOkResponse
CreatePurchaseV2Request
CreatePurchaseV2OkResponse
ListPurchasesOkResponse
CreatePurchaseRequest
CreatePurchaseOkResponse
TopUpEsimRequest
TopUpEsimOkResponse
EditPurchaseRequest
EditPurchaseOkResponse
GetPurchaseConsumptionOkResponse
GetEsimOkResponse
GetEsimDeviceOkResponse
GetEsimHistoryOkResponse
TokenOkResponse
GrantType
BadRequest
Unauthorized

License

This SDK is licensed under the MIT License.

See the LICENSE file for more details.

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

celitech_sdk-2.0.2.tar.gz (40.1 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

celitech_sdk-2.0.2-py3-none-any.whl (66.3 kB view details)

Uploaded Python 3

File details

Details for the file celitech_sdk-2.0.2.tar.gz.

File metadata

  • Download URL: celitech_sdk-2.0.2.tar.gz
  • Upload date:
  • Size: 40.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.9.25

File hashes

Hashes for celitech_sdk-2.0.2.tar.gz
Algorithm Hash digest
SHA256 db4dd8d0df5a2b0ec09a07bf7d7455f46b5f315aea386c86b5d22a9af6582a3d
MD5 810a709b305d05687947657c1d0b9d93
BLAKE2b-256 0e64d5fe293d7f082f514af971cb51a4aa5883d87c6e54f0969afe275534f64a

See more details on using hashes here.

File details

Details for the file celitech_sdk-2.0.2-py3-none-any.whl.

File metadata

  • Download URL: celitech_sdk-2.0.2-py3-none-any.whl
  • Upload date:
  • Size: 66.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.9.25

File hashes

Hashes for celitech_sdk-2.0.2-py3-none-any.whl
Algorithm Hash digest
SHA256 4a08dd8b3485eb2661a5c33f0959c1a702ee0372606864980304134947c0bbbe
MD5 b1c9a0ad8655d6d7970cc1d3ebef2f2f
BLAKE2b-256 20efdfcacbeefa24f31e0778216a3ff6bf3b67608f50565cbf537791b0e25358

See more details on using hashes here.

Supported by

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