Skip to content

Instantly share code, notes, and snippets.

@aldakur
Last active March 24, 2017 11:41
Show Gist options
  • Save aldakur/375fdfbc14bce7511c8d70331af9b5ef to your computer and use it in GitHub Desktop.
Save aldakur/375fdfbc14bce7511c8d70331af9b5ef to your computer and use it in GitHub Desktop.
Script to use labur.eus services in console [Python]
import requests
res = requests.get('https://labur.eus/api/v2/action/shorten?key=YOUR_API_KEYd&url=URL_YOU_WANT_TO_SHORTEN&is_secret=false')
shortened_url = res.text
print shortened_url
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment