├── .travis.yml ├── LICENSE.md ├── README.md ├── fred ├── __init__.py ├── api.py └── core.py ├── requirements.txt ├── setup.py └── test.py /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zachwill/fred/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zachwill/fred/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zachwill/fred/HEAD/README.md -------------------------------------------------------------------------------- /fred/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zachwill/fred/HEAD/fred/__init__.py -------------------------------------------------------------------------------- /fred/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zachwill/fred/HEAD/fred/api.py -------------------------------------------------------------------------------- /fred/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zachwill/fred/HEAD/fred/core.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | requests 2 | mock 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zachwill/fred/HEAD/setup.py -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zachwill/fred/HEAD/test.py --------------------------------------------------------------------------------