I hereby claim:
- I am ianlivingstone on github.
- I am ianlivingstone (https://keybase.io/ianlivingstone) on keybase.
- I have a public key whose fingerprint is BC52 90C9 E482 BA84 3B15 7B75 D48F 81FA B222 9013
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| { | |
| "goCrawl":true | |
| } |
| import ast | |
| import sys | |
| import pprint | |
| import re | |
| type_lookup = { | |
| ast.Module: 'Module', | |
| ast.FunctionDef: 'Function', | |
| ast.ClassDef: 'Class' | |
| } |
| import json | |
| import gdbm | |
| import zlib | |
| class GDBMWrapper (object): | |
| """ | |
| Wrapper around gdbm that provides a better interface and allows you to | |
| store more complex data while maintaining cross language support | |
| through json. |