Skip to content

Instantly share code, notes, and snippets.

View wrunk's full-sized avatar

Warren Runk wrunk

View GitHub Profile
@wrunk
wrunk / simplejson2.3.0_encode_issue.py
Created December 29, 2011 16:53
Simplejson 2.3.0 object dictionary encode issue
from simplejson import JSONEncoder
class ObjectDictWorks(dict):
""" Makes a dictionary behave like an object. """
def __getattr__(self, name):
try:
return self[name]
except KeyError:
raise AttributeError(name)
@wrunk
wrunk / httplib2_post_json.py
Created February 17, 2012 20:49
Python httplib2 POST json body with auth example
#! /usr/bin/env python
'''
This is more of a personal reference as I use json very often.
The httplib2 examples are VERY good, and you should refer to them:
http://code.google.com/p/httplib2/wiki/Examples
'''
from httplib2 import Http
try:
@wrunk
wrunk / simple_urllib2_example.py
Created February 27, 2012 19:11
Simple python web page get using urllib2
#! /usr/bin/env python
'''
Super dumb example of getting the contents of a web page.
'''
import urllib2
page_contents = urllib2.urlopen('http://www.python.org/').read()
print page_contents
@wrunk
wrunk / sha224_digest.py
Last active October 1, 2015 06:08
Quick python sha224 digest example
#!/usr/bin/env python
'''
Example of a way you could hash a password with a salt.
Pass the password as the first and only parameter.
WARNING this is just an example. NEVER put a real password in the clear
on the command line like this.
'''
@wrunk
wrunk / print_call_stack.py
Created April 11, 2012 22:49
Printing a python call stack independent of an exception
import traceback
for line in traceback.format_stack():
print line.strip()
@wrunk
wrunk / python_yaml_example.py
Created June 19, 2012 00:02
Quick python example of using yaml
'''
This is a quick reference example to get you started with yaml. Please review this,
but spend the time to fully read the wikipedia page on yaml:
http://en.wikipedia.org/wiki/Yaml
Note that the magic quote-less yaml parsing will still always strip values.
To avoid this you need to use quotes. Quotes can also force types to string type,
and are always valid (meaning omitting quotes is for convenience not necessity).
'''
@wrunk
wrunk / lru_cache.py
Created June 20, 2012 06:04
Python dumbed down lru cache class
import logging
'''
THIS IS A WORK IN PROGRESS. Do not use unless you fully understand this
code, and can make needed modifications.
'''
class LRUCache(object):
''' Dumb/fake least recently used cache to just run in memory.
'''
@wrunk
wrunk / simple_iter_class.py
Created October 2, 2012 22:19
Simple python iterator class
class TestIter(object):
def __init__(self):
self.i = 0
self.l = [1,2,3,4]
def __iter__(self):
return self
@wrunk
wrunk / py_re.py
Created December 3, 2012 22:11
Python regular expressions cheatsheet
import re
# ---------------------------------------------------------------------------- #
# Regex sting substitution
#
# As a first example, lets say we have a jinja2 template that needs
# a particular section(s) replaced
LEFT_NAV = re.compile(r'{{\s*left_nav\s*}}')
@wrunk
wrunk / shellpers.sh
Last active February 10, 2018 02:38
Shellpers
# Prepend something to the beginning of each line
cat .gitignore| while read line; do echo "[ERROR] $line"; done > somefile.txt
# Delete all the GD pyc files starting in this dir
find . -name '*.pyc' -exec rm -f {} \;
#
# ** Below are some SHELLpers to deal with removing crap from a go vendor dir
# NOTE cgo stuff might not like this process ^_^