Skip to content

jtarang/RemotsyLib

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

43 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Remotsy python library Build Status Codacy Badge

Remotsy is an infrared blaster device, is cloud controlled, this a Python library to control the Remotsy device via Rest API.

Installation

$ pip install remotsylib

Example

from remotsylib.api import API

if __name__ == "__main__":

    client = API()

    #Do the login and get the token
    token = client.login(args.username, args.password)

    #Get the list of the controls
    lst_ctl = client.list_controls()
    for ctl in lst_ctl:
        print "id %s Name %s" % (ctl["_id"], ctl['name'])

Authentication

You can use your remotsy username and password, but for security is recomended to generate a application password, logon in https://home.remotsy.com and use the option App Passwords.

Documentation API

The API documentation and links to additional resources are available at https://www.remotsy.com/help

About

Python library for the Remotsy API

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 100.0%