Skip to content

Instantly share code, notes, and snippets.

View koddr's full-sized avatar
🏔️
Working from the high mountains

Vic Shóstak koddr

🏔️
Working from the high mountains
View GitHub Profile
@koddr
koddr / .babelrc
Last active March 5, 2022 18:18
Webpack 3 config for simple Django/Flask project with Autoprefixer, PostCSS, SCSS style files, Vue.js and Babel
{
"presets": ["@babel/preset-env"]
}
@koddr
koddr / auth.py
Last active November 22, 2021 18:27 — forked from dvingerh/auth.py
Hook for Python Instagram private API for avoid re-login
import json
import codecs
import os.path
try:
from instagram_private_api import (
Client, ClientError, ClientLoginError,
ClientCookieExpiredError, ClientLoginRequiredError,
__version__ as client_version)
except ImportError:
import sys