Python SDK for IntegrationOS API
Project description
IntegrationOS Python SDK
This Python SDK provides a simple and intuitive way to interact with the IntegrationOS API. It allows you to easily integrate IntegrationOS functionality into your Python applications.
Features
- Simple and intuitive interface for IntegrationOS API operations
- Support for all CRUD operations (Create, Read, Update, Delete, Count)
- Built-in error handling and request management
- Type hints for improved code completion and error checking in IDEs
Installation
You can install the IntegrationOS SDK using pip:
pip install integrationos-sdk
Usage
Here's a quick example of how to use the IntegrationOS SDK:
from integrationos_sdk import IntegrationOS
# Initialize the SDK with your secret key
integrate = IntegrationOS("your_secret_key")
# Create a model instance (e.g., for customers)
customers = integrate("customers", "your_connection_key")
# List customers
customer_list = customers.list({"limit": 10})
print(f"First customer: {customer_list['unified'][0]['firstName']}")
# Create a new customer
new_customer = customers.create({"firstName": "John", "email": "john@example.com"})
print(f"Created customer: {new_customer['unified']['firstName']}")
# Get a specific customer
customer = customers.get(new_customer['unified']['id'])
print(f"Retrieved customer: {customer['firstName']}")
# Update a customer
updated_response = customers.update(customer['id'], {"firstName": "Jane"})
print(f"Updated customer: {updated_response}")
# Delete a customer
delete_response = customers.delete(customer['id'])
print(f"Delete response: {delete_response}")
# Count customers
customer_count = customers.count()
print(f"Total customers: {customer_count}")
Available Methods
For each model, the following methods are available:
list(params: Optional[Dict[str, Any]] = None) -> List[Dict[str, Any]]create(data: Dict[str, Any]) -> Dict[str, Any]get(id: Union[str, int]) -> Dict[str, Any]update(id: Union[str, int], data: Dict[str, Any]) -> Dict[str, Any]delete(id: Union[str, int]) -> Dict[str, Any]count() -> int
Error Handling
The SDK uses the requests library's built-in error handling. If an HTTP error occurs, a requests.exceptions.HTTPError will be raised. You can catch and handle these exceptions in your code:
from requests.exceptions import HTTPError
try:
customers.get("non_existent_id")
except HTTPError as e:
print(f"An error occurred: {e}")
Contributing
Contributions to the IntegrationOS Python SDK are welcome! Please feel free to submit a Pull Request.
License
This project is licensed under the MIT License - see the LICENSE file for details.
Support
If you encounter any problems or have any questions about the SDK, please open an issue on the GitHub repository or contact IntegrationOS support.
Remember to replace "your_secret_key" and "your_connection_key" with your actual IntegrationOS API key and connection key in your code.
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
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file integrationos_sdk-0.1.1.tar.gz.
File metadata
- Download URL: integrationos_sdk-0.1.1.tar.gz
- Upload date:
- Size: 3.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.10.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2f09dde79b073db7a9f9d4f67ffaff70f9f82d228786c19e21f7a6d86edf9210
|
|
| MD5 |
82adc9cc4678257fb4731fc6748e65b4
|
|
| BLAKE2b-256 |
a83937dc4904f639edb360e08328b80e787d810b16454f7f7b47525df9c1b26b
|
File details
Details for the file integrationos_sdk-0.1.1-py3-none-any.whl.
File metadata
- Download URL: integrationos_sdk-0.1.1-py3-none-any.whl
- Upload date:
- Size: 3.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.10.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d1f66e2ee4c1e089a01726802b9de2d432e1686d8bfa3f379adb70904030f142
|
|
| MD5 |
a81db7f89176643095106e59a0c3e31f
|
|
| BLAKE2b-256 |
c2a130b8fbf363672f39acfc5253c2f01be6bf2ef5224d4f545b9d72c30ccefe
|