Skip to content

Instantly share code, notes, and snippets.

View sainu's full-sized avatar
😄
Let's make it!

sainu sainu

😄
Let's make it!
View GitHub Profile
@sainu
sainu / download-file.js
Created March 19, 2018 19:41 — forked from javilobo8/download-file.js
Download files with AJAX (axios)
axios({
url: 'http://localhost:5000/static/example.pdf',
method: 'GET',
responseType: 'blob', // important
}).then((response) => {
const url = window.URL.createObjectURL(new Blob([response.data]));
const link = document.createElement('a');
link.href = url;
link.setAttribute('download', 'file.pdf');
document.body.appendChild(link);
@sainu
sainu / pydelicious.py
Created March 12, 2016 17:50 — forked from takashi/pydelicious.py
pydelicious for python3
"""Library to access del.icio.us data via Python.
:examples:
Using the API class directly:
>>> a = pydelicious.apiNew('user', 'passwd')
>>> # or:
>>> a = DeliciousAPI('user', 'passwd')
>>> a.tags_get() # Same as: