├── .gitignore ├── COPYING ├── README.textile ├── bees ├── beeswithmachineguns ├── __init__.py ├── bees.py └── main.py ├── regions.json ├── requirements.txt ├── setup.py └── test └── __init__.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newsapps/beeswithmachineguns/HEAD/.gitignore -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newsapps/beeswithmachineguns/HEAD/COPYING -------------------------------------------------------------------------------- /README.textile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newsapps/beeswithmachineguns/HEAD/README.textile -------------------------------------------------------------------------------- /bees: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newsapps/beeswithmachineguns/HEAD/bees -------------------------------------------------------------------------------- /beeswithmachineguns/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /beeswithmachineguns/bees.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newsapps/beeswithmachineguns/HEAD/beeswithmachineguns/bees.py -------------------------------------------------------------------------------- /beeswithmachineguns/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newsapps/beeswithmachineguns/HEAD/beeswithmachineguns/main.py -------------------------------------------------------------------------------- /regions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newsapps/beeswithmachineguns/HEAD/regions.json -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | boto==2.38.0 2 | paramiko==1.15.2 3 | future 4 | 5 | 6 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newsapps/beeswithmachineguns/HEAD/setup.py -------------------------------------------------------------------------------- /test/__init__.py: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------