As we surf the web we find a lot of information that we might use later. We use different applications (Pocket app, Instapaper, Diigo, Evernote or other apps) to save links or notes what we find.
While many of the above applications have a lot of great features there still a lot of opportunities to automate some processes using web API that many of applications provide now.
This will allow to extend application functionality and eliminate some manual processes.
For Example: You have about 20 links that you want to send to pocket like application.
Another example: When you add link to one application you may be want also save link or note to Pocket app or to Instapaper application.
Or may be you want automatically (through script) extract links from some web sites and save them to your Pocket app.
In today post we will look at few examples that allow you start to do this. We will check how to use Pocket API and Instapaper API with python programming.
API for Pocket App
Pocket, previously known as Read It Later, is an application and service for managing a reading list of articles from the Internet. It is available on many different devices including web browsers. (Wikipedia)
There is great post[1] that is showing how to set up API for it. This post has detailed screenshots how to get all the needed identification information for successful login.
In summary you need get online consumer key for your api application then obtain token code via script. Then you can access the link that will include token and do authorization of application. After this you can use API for sending links.
Below is the summary python script to send the link to Pocket app including previous steps:
import requests # can be any for link redirect_link = "google.com" consumer_key="xxxxxxxx" # obtain consume key online #connect to pocket API to get token code pocket_api = requests.post('https://getpocket.com/v3/oauth/request', data = {'consumer_key':consumer_key, 'redirect_uri':redirect_link}) pocket_api.status_code #if 200, it means all ok. print(pocket_api.headers) print (pocket_api.text) #remove 'code=' token= pocket_api.text[5:] print (token) url="https://getpocket.com/auth/authorize?request_token=" + token + "&redirect_uri=" + redirect_link import webbrowser webbrowser.open_new(url) # opens in default browser #click on Authorize button in webbrowser # Once authoration done you can post as below (need uncomment code below) """ pocket_add = requests.post('https://getpocket.com/v3/add', data= {'url': 'https://getpocket.com/developer/apps/new', 'consumer_key':consumer_key, 'access_token': token}) print (pocket_add.status_code) """
API for Instapaper
Instapaper is a bookmarking service owned by Pinterest. It allows web content to be saved so it can be “read later” on a different device, such as an e-reader, smartphone, tablet. (Wikipedia)
Below is the code example how to send link to Instapaper. The code example is based on the script that I found on Internet [2]
import urllib, sys def error(msg): sys.exit(msg) def main(): api = 'https://www.instapaper.com/api/add' params = urllib.parse.urlencode({ 'username' : "actual_user_name", 'password' : "actual_password", 'url' : "https://www.actual_url", 'title' : "actual_title", 'selection' : "description" }).encode("utf-8") r = urllib.request.urlopen(api, params) status = r.getcode() if status == 201: print('%s saved as %s' % (r.headers['Content-Location'], r.headers['X-Instapaper-Title'])) elif status == 400: error('Status 400: Bad request or exceeded the rate limit. Probably missing a required parameter, such as url.') elif status == 403: error('Status 403: Invalid username or password.') elif status == 500: error('Status 500: The service encountered an error. Please try again later') if __name__ == '__main__': main()
References
1. Add Pocket API using Python – Tutorial
2. Instapaper