Skyroom Python library
Project description
skyroom-python
A library to ease skyroom api usage.
Link to api documentation: Skyroom RESTful API Documention
Installation
You can install this SDK from pypi through the command below
pip install skyroom
In order to use the api you need an API key. To obtain one you need to create an account on Skyroom and ask for your API key from the skyroom support.
Usage
Here are some examples for api usage(all methods use the same signature).
getRooms
from skyroom import *
try:
api = SkyroomAPI('Your APIKey') # Example: apikey-71-819540-0f178abb0c712c4cfd5ae13e4c54687a
response = api.getRooms()
print(response)
except APIException as e:
print(e)
except HTTPException as e:
print(e)
getRoom
from skyroom import *
try:
api = SkyroomAPI('Your APIKey') # Example: apikey-71-819540-0f178abb0c712c4cfd5ae13e4c54687a
params = {
'room_id': 1
}
response = api.getRoom(params)
print(response)
except APIException as e:
print(e)
except HTTPException as e:
print(e)
getRoomUrl
from skyroom import *
try:
api = SkyroomAPI('Your APIKey') # Example: apikey-71-819540-0f178abb0c712c4cfd5ae13e4c54687a
params = {
"room_id": 1,
"language": "fa"
}
response = api.getRoomUrl(params)
print(response)
except APIException as e:
print(e)
except HTTPException as e:
print(e)
Contribution
I no longer use this library in my code. If there are any updates on the upstream from skyroom you can add support for it by opening a pull request.
Anyways, Bug fixes, docs, and enhancements are allways welcome! just open an issue.
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
File details
Details for the file skyroom-1.0.3.tar.gz
.
File metadata
- Download URL: skyroom-1.0.3.tar.gz
- Upload date:
- Size: 2.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.6.0 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.8.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 02b727251a8c2b13b945f921130d852b206419f2b8c206722794f226466d197a |
|
MD5 | 7bdc8fb58da001e13ac3af20cbfa36f8 |
|
BLAKE2b-256 | 75b064bc40bfe6f727c34f859d27a95d0075e4c4ad036377f63f5788a35808d0 |
File details
Details for the file skyroom-1.0.3-py3-none-any.whl
.
File metadata
- Download URL: skyroom-1.0.3-py3-none-any.whl
- Upload date:
- Size: 3.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.6.0 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.8.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | dd0588205b63a3bacfffaa608bf54dd21e0ad21b820c0d4e9dbfa75788e0fd44 |
|
MD5 | 2b13f1b6311d646801b14f0130266bea |
|
BLAKE2b-256 | a7eaf67f21c4a9dc1bbec80f8e13abe71c88461476328575b1dd2d9775b53eb1 |