Adding first draft of python

This commit is contained in:
jrconlin
2011-01-06 20:46:14 -08:00
parent fe869a4d58
commit bb99854b18
4 changed files with 299 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
#! /usr/bin/env python
class OAuthSimpleException(Exception):
def __init__(self,value):
self.msg = value
def __str__(self):
return repr(self.msg)