gitextract_bcekc6b6/ ├── .gitignore ├── LICENSE ├── MANIFEST.in ├── README.md ├── d6tstack/ │ ├── __init__.py │ ├── combine_csv.py │ ├── convert_xls.py │ ├── helpers.py │ ├── pyftp_final.py │ ├── sniffer.py │ ├── sync.py │ └── utils.py ├── docs/ │ ├── Makefile │ ├── make.bat │ ├── make_zip_sample_csv.py │ ├── make_zip_sample_xls.py │ ├── shell-napoleon-html.sh │ ├── shell-napoleon-recreate.sh │ └── source/ │ ├── conf.py │ ├── d6tstack.rst │ ├── index.rst │ ├── modules.rst │ ├── setup.rst │ └── tests.rst ├── examples-csv.ipynb ├── examples-dask.ipynb ├── examples-excel.ipynb ├── examples-pyspark.ipynb ├── examples-read-write.ipynb ├── examples-sql.ipynb ├── requirements-dev.txt ├── requirements.txt ├── setup.cfg ├── setup.py └── tests/ ├── __init__.py ├── pypi.sh ├── test-parquet.py ├── test_combine_csv.py ├── test_combine_old.py ├── test_sync.py ├── test_xls.py ├── tmp-reindex-withorder.py ├── tmp-runtest.py └── tmp.py