This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
# apt install zbar-tools | |
# pip install pyzbar | |
# pip install pillow | |
# pip install pyotp | |
import os, sys | |
#from urllib.parse import urlparse, parse_qs | |
from datetime import datetime |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
""" | |
Dependancies: | |
pip install "qrtools==1.4" "pyotp==2.2.6" "urllib3==1.23" | |
Usage: | |
qr2f.py /path/to/screenshot1 [screenshot2 [screenshot3]] | |
""" | |
import urllib | |
import qrtools |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from dateutil.parser import parse as date_parse | |
from datetime import datetime, timedelta | |
import json | |
import operator | |
import supybot.utils as utils | |
from supybot.commands import * | |
import supybot.plugins as plugins | |
import supybot.ircutils as ircutils | |
import supybot.callbacks as callbacks |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
# Author: iiie | |
# Need: Get environment variables into virtualenv / Django | |
# Usage: | |
# Add one or more keys: | |
# notku config:add AWS_KEY=abc123 [ANOTHER_KEY=another_value=allowed ...] | |
# Removed one or more keys: | |
# notku config:remove AWS_KEY [ANOTHER_KEY ...] | |
# List all keys | |
# notku config |