├── .gitignore ├── .travis.yml ├── LICENSE ├── Makefile ├── README.md ├── pd2ppt ├── __init__.py ├── _version.py └── pd2ppt.py ├── requirements-test.txt ├── requirements.txt ├── setup.py └── tests └── test_pd2ppt.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robintw/PandasToPowerpoint/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robintw/PandasToPowerpoint/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robintw/PandasToPowerpoint/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robintw/PandasToPowerpoint/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robintw/PandasToPowerpoint/HEAD/README.md -------------------------------------------------------------------------------- /pd2ppt/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robintw/PandasToPowerpoint/HEAD/pd2ppt/__init__.py -------------------------------------------------------------------------------- /pd2ppt/_version.py: -------------------------------------------------------------------------------- 1 | __version__ = '0.1.0' 2 | -------------------------------------------------------------------------------- /pd2ppt/pd2ppt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robintw/PandasToPowerpoint/HEAD/pd2ppt/pd2ppt.py -------------------------------------------------------------------------------- /requirements-test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robintw/PandasToPowerpoint/HEAD/requirements-test.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | pandas 2 | six 3 | python-pptx 4 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robintw/PandasToPowerpoint/HEAD/setup.py -------------------------------------------------------------------------------- /tests/test_pd2ppt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robintw/PandasToPowerpoint/HEAD/tests/test_pd2ppt.py --------------------------------------------------------------------------------