├── .gitignore ├── .travis.yml ├── LICENSE.txt ├── MANIFEST.in ├── README.rst ├── bin └── graffiti-monkey ├── conf ├── example_config.yml └── graffiti_monkey.yml ├── dev_requirements.txt ├── graffiti_monkey ├── __init__.py ├── cli.py ├── core.py └── exceptions.py ├── requirements.txt ├── setup.py └── tests ├── __init__.py └── unit ├── __init__.py ├── test_exceptions.py └── test_init_unchanged.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Answers4AWS/graffiti-monkey/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Answers4AWS/graffiti-monkey/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Answers4AWS/graffiti-monkey/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Answers4AWS/graffiti-monkey/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Answers4AWS/graffiti-monkey/HEAD/README.rst -------------------------------------------------------------------------------- /bin/graffiti-monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Answers4AWS/graffiti-monkey/HEAD/bin/graffiti-monkey -------------------------------------------------------------------------------- /conf/example_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Answers4AWS/graffiti-monkey/HEAD/conf/example_config.yml -------------------------------------------------------------------------------- /conf/graffiti_monkey.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Answers4AWS/graffiti-monkey/HEAD/conf/graffiti_monkey.yml -------------------------------------------------------------------------------- /dev_requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Answers4AWS/graffiti-monkey/HEAD/dev_requirements.txt -------------------------------------------------------------------------------- /graffiti_monkey/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Answers4AWS/graffiti-monkey/HEAD/graffiti_monkey/__init__.py -------------------------------------------------------------------------------- /graffiti_monkey/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Answers4AWS/graffiti-monkey/HEAD/graffiti_monkey/cli.py -------------------------------------------------------------------------------- /graffiti_monkey/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Answers4AWS/graffiti-monkey/HEAD/graffiti_monkey/core.py -------------------------------------------------------------------------------- /graffiti_monkey/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Answers4AWS/graffiti-monkey/HEAD/graffiti_monkey/exceptions.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | boto>=2.7 2 | # Following is only needed when using a yaml config file 3 | PyYAML>=3.11 4 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Answers4AWS/graffiti-monkey/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Answers4AWS/graffiti-monkey/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/unit/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Answers4AWS/graffiti-monkey/HEAD/tests/unit/__init__.py -------------------------------------------------------------------------------- /tests/unit/test_exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Answers4AWS/graffiti-monkey/HEAD/tests/unit/test_exceptions.py -------------------------------------------------------------------------------- /tests/unit/test_init_unchanged.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Answers4AWS/graffiti-monkey/HEAD/tests/unit/test_init_unchanged.py --------------------------------------------------------------------------------