abarkelas / skyroom-python

skyroom api for python

Home Page:https://www.skyroom.online/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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 below command

pip install skyroom

You can download the Python SDK Here too

Then ,You need to make crate an account on Skyroom from Here

After that you just need to ask for API-KEY from skyroom support.

Usage

Here are some examples for api usage.

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.getRoom(params)
    print(response)
except APIException as e: 
    print(e)
except HTTPException as e: 
    print(e)

Contribution

Bug fixes, docs, and enhancements are welcome! please open an issue.

About

skyroom api for python

https://www.skyroom.online/

License:MIT License


Languages

Language:Python 100.0%