├── .gitignore ├── LICENSE ├── README.md ├── bin └── publish.sh ├── ghizmo ├── __init__.py ├── commands │ ├── __init__.py │ ├── authors.py │ ├── general.py │ ├── lib.py │ ├── misc.py │ ├── repo.py │ ├── team.py │ └── users.py ├── configs.py ├── ghizmo.py └── main.py ├── images └── xk8-octopus-hose-180.png └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlevy/ghizmo/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlevy/ghizmo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlevy/ghizmo/HEAD/README.md -------------------------------------------------------------------------------- /bin/publish.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlevy/ghizmo/HEAD/bin/publish.sh -------------------------------------------------------------------------------- /ghizmo/__init__.py: -------------------------------------------------------------------------------- 1 | __author__ = 'jlevy' 2 | -------------------------------------------------------------------------------- /ghizmo/commands/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlevy/ghizmo/HEAD/ghizmo/commands/__init__.py -------------------------------------------------------------------------------- /ghizmo/commands/authors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlevy/ghizmo/HEAD/ghizmo/commands/authors.py -------------------------------------------------------------------------------- /ghizmo/commands/general.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlevy/ghizmo/HEAD/ghizmo/commands/general.py -------------------------------------------------------------------------------- /ghizmo/commands/lib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlevy/ghizmo/HEAD/ghizmo/commands/lib.py -------------------------------------------------------------------------------- /ghizmo/commands/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlevy/ghizmo/HEAD/ghizmo/commands/misc.py -------------------------------------------------------------------------------- /ghizmo/commands/repo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlevy/ghizmo/HEAD/ghizmo/commands/repo.py -------------------------------------------------------------------------------- /ghizmo/commands/team.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlevy/ghizmo/HEAD/ghizmo/commands/team.py -------------------------------------------------------------------------------- /ghizmo/commands/users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlevy/ghizmo/HEAD/ghizmo/commands/users.py -------------------------------------------------------------------------------- /ghizmo/configs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlevy/ghizmo/HEAD/ghizmo/configs.py -------------------------------------------------------------------------------- /ghizmo/ghizmo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlevy/ghizmo/HEAD/ghizmo/ghizmo.py -------------------------------------------------------------------------------- /ghizmo/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlevy/ghizmo/HEAD/ghizmo/main.py -------------------------------------------------------------------------------- /images/xk8-octopus-hose-180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlevy/ghizmo/HEAD/images/xk8-octopus-hose-180.png -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlevy/ghizmo/HEAD/setup.py --------------------------------------------------------------------------------