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
# -*- coding: utf-8 -*- | |
""" | |
Purpose: Import data from a MySQL database to an Excel file | |
Created: 2019-05-25 | |
Authors: Derek Hohls <[email protected]> | |
""" | |
import getpass | |
# require pip install: | |
import MySQLdb | |
from xlsxwriter.workbook import Workbook |
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
def compare(a, b, *, key=None, **kwargs): | |
"""Assumption here is that you only want to handle kwargs x, y or z""" | |
print(a, b, key, kwargs) | |
if list(set(kwargs.keys()).difference(['x','y','z'])): | |
inv = ','.join(list(set(kwargs.keys()).difference(['x','y','z']))) | |
raise ValueError('Unexpected arg(s) {} in kwargs'.format(inv)) | |
''' | |
>>> compare(1,2,key=4,x=2) | |
1 2 4 {'x': 2} |
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
# -*- coding: utf-8 -*- | |
from __future__ import print_function | |
import csv | |
# via https://github.com/lcosmin/boardgamegeek | |
from boardgamegeek import BoardGameGeek | |
import logging | |
logging.basicConfig() | |
GAMES = """Monopoly |
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
""" | |
https://stackoverflow.com/questions/33454739/distribution-of-dice-rolls | |
& | |
https://stackoverflow.com/questions/20335617/unlimited-sides-to-dice-in-simulator/ | |
""" | |
from collections import Counter | |
import sys | |
from random import randint | |
# Python 2/3 compatibility |
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
# -*- coding: utf-8 -*- | |
""" Purpose: Convert imperial units (feet, inches) to metres | |
Created: 2017-10-17 | |
Author: [email protected] | |
Notes: | |
This is quite useful if you have a house plan where all the units are | |
Imperial (typically American or old European plans) and you need to | |
compare against modern plans. |
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
# -*- coding: utf-8 -*- | |
""" Purpose: Use lxml to validate an XML file against a Schema (XSD) | |
Created: 2017-09-27 | |
Author: [email protected] | |
Requires:: | |
pip install lxml |
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
# -*- coding: utf-8 -*- | |
""" Purpose: Extract and print directives from a software project. | |
Created: 2017-09-24 | |
Contact: [email protected] | |
Usage:: | |
python extract_directives.py | |
python extract_directives.py -d=/path/to/ -i=FIXME -e=js | |
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
# -*- coding: utf-8 -*- | |
"""Purpose: Capture shell script output via Python logging to Sentry.io. | |
Setup: | |
First export the SENTRY_DSN value in your .bashrc file. Then:: | |
pip install raven --upgrade | |
pip install autoenv | |
echo "source bin/activate" > .env |
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
# -*- coding: utf-8 -*- | |
""" Purpose: Use Python schema module to validate JSON files vs a schema. | |
Created: 2017-09-05 | |
Author: [email protected] | |
Usage:: | |
python json_schema_validator.py --json=ajsonfile.json --schema=aschemafile.json | |
""" |
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
# -*- coding: utf-8 -*- | |
"""Purpose: Show creating XML from nested JSON with optional elements. | |
Created: 2017-09-03 | |
Author: [email protected] | |
""" | |
from __future__ import print_function | |
from jinja2 import Template | |
xml_template = """<?xml version="1.0" encoding="UTF-8"?> |