SDK Python pour interagir avec l'API Whaller
Project description
Whaller Client SDK
📌 Introduction
This project is a Python SDK for interacting with the Whaller API.
This library is in the early stages of implementation and contains only a few endpoints, but you can easily extend it by following the do. We encourage you to work with the Whaller teams on extending it.
📦 Installation
pip install whaller-client
🚀 Try the examples
1️⃣ Set environment variables
Before running examples scripts, you must create a env.py file with the following content as indicated in the env.orig.py file at the root of the examples folder:
BASE_URL = "https://my.whaller.com"
CLIENT_ID = "your_client_id"
CLIENT_TOKEN = "your_client_token"
LOGIN = "your_email"
PASSWORD = "your_password"
[!IMPORTANT] If you do not have client_id and client_token, please contact contact@whaller.com. Please note that there is a charge for obtaining these credentials.
2️⃣ Run an authentication example
An authentication example script is available in examples/. To run it:
cd examples/
python example_auth.py
If authentication is successful, you will see:
Authentication successful.
3️⃣ Use the SDK in your project
Minimal usage example:
from whaller_client.client import Client
from whaller_client.endpoints.persons import Persons
# Initialize the client
client = Client(BASE_URL, CLIENT_ID, CLIENT_TOKEN)
client.set_credentials(LOGIN, PASSWORD)
client.authenticate()
# Example usage of endpoints
persons = Persons(client)
print(persons.get_notifications(LOGIN))
📄 License
This project is licensed under the MIT License. See the LICENSE file for more details.
📫 Support
For any questions or suggestions, open an issue on GitHub.
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
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 whaller_client-0.1.1.tar.gz.
File metadata
- Download URL: whaller_client-0.1.1.tar.gz
- Upload date:
- Size: 5.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.11.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
500528bca9f0f94b9c68680c7385ca3ccb6481adc5d9495225a491b752e1d3ee
|
|
| MD5 |
9f72958233321d8df5ac72eaf2fc12f9
|
|
| BLAKE2b-256 |
74a95597f052c9a41155dd0177ec498c882ca8f349508c156947ed7a94e63fad
|
File details
Details for the file whaller_client-0.1.1-py3-none-any.whl.
File metadata
- Download URL: whaller_client-0.1.1-py3-none-any.whl
- Upload date:
- Size: 6.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.11.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d277790cfad639630028d47572a1f047ed2eda37777b5fb80e133681104a77f3
|
|
| MD5 |
37859bc4517b62cf687f6746f7ca0402
|
|
| BLAKE2b-256 |
e77156584aec9e8772dd0f716c0d09245232356105931f890ec1698476adf9d5
|