├── .gitignore ├── .travis.yml ├── AUTHORS ├── LICENSE ├── MANIFEST ├── MANIFEST.in ├── README.markdown ├── requirements.txt ├── setup.py ├── table_fu ├── __init__.py └── formatting.py ├── test.py ├── tests ├── arra.csv ├── sites.csv └── test.csv └── tox.ini /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyeseast/python-tablefu/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyeseast/python-tablefu/HEAD/.travis.yml -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyeseast/python-tablefu/HEAD/AUTHORS -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyeseast/python-tablefu/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyeseast/python-tablefu/HEAD/MANIFEST -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyeseast/python-tablefu/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyeseast/python-tablefu/HEAD/README.markdown -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyeseast/python-tablefu/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyeseast/python-tablefu/HEAD/setup.py -------------------------------------------------------------------------------- /table_fu/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyeseast/python-tablefu/HEAD/table_fu/__init__.py -------------------------------------------------------------------------------- /table_fu/formatting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyeseast/python-tablefu/HEAD/table_fu/formatting.py -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyeseast/python-tablefu/HEAD/test.py -------------------------------------------------------------------------------- /tests/arra.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyeseast/python-tablefu/HEAD/tests/arra.csv -------------------------------------------------------------------------------- /tests/sites.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyeseast/python-tablefu/HEAD/tests/sites.csv -------------------------------------------------------------------------------- /tests/test.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyeseast/python-tablefu/HEAD/tests/test.csv -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyeseast/python-tablefu/HEAD/tox.ini --------------------------------------------------------------------------------