Skip to content

adamwen829/instapush-py

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Instapush-py

a Python wrapper for the Instapush API.

#Installation

pip install instapush

#Usage

from instapush import Instapush, App

insta = Instapush(user_token='xxxxxxx')

insta.list_app()             #List all apps

insta.add_app(title='title') #Create a app named title

app = App(appid='xxxx', secret='xxxx')

app.list_event()             #List all event

app.add_event(event_name='xxx', trackers=['email'],
              message='{email} is on.')

app.notify(event_name='xxx', trackers={'email': 'test@test.com'})

#TODO: add unittest and travis service

About

a Python wrapper for the Instapush API.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages