├── .gitignore ├── .travis.yml ├── MANIFEST.in ├── README.rst ├── bottle_redis.py ├── requirements.txt ├── setup.py └── test.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bottlepy/bottle-redis/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bottlepy/bottle-redis/HEAD/.travis.yml -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bottlepy/bottle-redis/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bottlepy/bottle-redis/HEAD/README.rst -------------------------------------------------------------------------------- /bottle_redis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bottlepy/bottle-redis/HEAD/bottle_redis.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | bottle>=0.9 2 | redis 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bottlepy/bottle-redis/HEAD/setup.py -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bottlepy/bottle-redis/HEAD/test.py --------------------------------------------------------------------------------