This file contains hidden or 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 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) |
This file contains hidden or 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 | |
''' | |
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: |
This file contains hidden or 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 | |
''' | |
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 |
This file contains hidden or 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 | |
''' | |
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. | |
''' |
This file contains hidden or 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
import traceback | |
for line in traceback.format_stack(): | |
print line.strip() |
This file contains hidden or 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
''' | |
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). | |
''' |
This file contains hidden or 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
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. | |
''' |
This file contains hidden or 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
class TestIter(object): | |
def __init__(self): | |
self.i = 0 | |
self.l = [1,2,3,4] | |
def __iter__(self): | |
return self |
This file contains hidden or 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
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*}}') |
This file contains hidden or 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
# 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 ^_^ |