├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── awsler ├── __init__.py └── awsler.py ├── requirements.txt └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forestmonster/AWSLeR/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: python 2 | script: echo "NOOP" 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forestmonster/AWSLeR/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forestmonster/AWSLeR/HEAD/README.md -------------------------------------------------------------------------------- /awsler/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /awsler/awsler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forestmonster/AWSLeR/HEAD/awsler/awsler.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forestmonster/AWSLeR/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forestmonster/AWSLeR/HEAD/setup.py --------------------------------------------------------------------------------