├── .github ├── issue_template.md ├── pull_request_template.md ├── stale.yml └── workflows │ └── release.yml ├── .gitignore ├── .travis.yml ├── LEAD.md ├── LICENSE.md ├── MANIFEST.in ├── Makefile ├── README.md ├── data ├── articles.csv ├── articles.json ├── comments.csv ├── comments.json ├── sample.csv └── vix.csv ├── examples └── __init__.py ├── pylama.ini ├── pytest.ini ├── setup.cfg ├── setup.py ├── tableschema_pandas ├── VERSION ├── __init__.py ├── mapper.py └── storage.py ├── tests ├── __init__.py ├── test_mapper.py └── test_storage.py └── tox.ini /.github/issue_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frictionlessdata/tableschema-pandas-py/HEAD/.github/issue_template.md -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frictionlessdata/tableschema-pandas-py/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frictionlessdata/tableschema-pandas-py/HEAD/.github/stale.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frictionlessdata/tableschema-pandas-py/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frictionlessdata/tableschema-pandas-py/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frictionlessdata/tableschema-pandas-py/HEAD/.travis.yml -------------------------------------------------------------------------------- /LEAD.md: -------------------------------------------------------------------------------- 1 | roll 2 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frictionlessdata/tableschema-pandas-py/HEAD/LICENSE.md -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frictionlessdata/tableschema-pandas-py/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frictionlessdata/tableschema-pandas-py/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frictionlessdata/tableschema-pandas-py/HEAD/README.md -------------------------------------------------------------------------------- /data/articles.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frictionlessdata/tableschema-pandas-py/HEAD/data/articles.csv -------------------------------------------------------------------------------- /data/articles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frictionlessdata/tableschema-pandas-py/HEAD/data/articles.json -------------------------------------------------------------------------------- /data/comments.csv: -------------------------------------------------------------------------------- 1 | entry_id,comment 2 | 1,good 3 | -------------------------------------------------------------------------------- /data/comments.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frictionlessdata/tableschema-pandas-py/HEAD/data/comments.json -------------------------------------------------------------------------------- /data/sample.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frictionlessdata/tableschema-pandas-py/HEAD/data/sample.csv -------------------------------------------------------------------------------- /data/vix.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frictionlessdata/tableschema-pandas-py/HEAD/data/vix.csv -------------------------------------------------------------------------------- /examples/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pylama.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frictionlessdata/tableschema-pandas-py/HEAD/pylama.ini -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frictionlessdata/tableschema-pandas-py/HEAD/pytest.ini -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [bdist_wheel] 2 | universal=1 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frictionlessdata/tableschema-pandas-py/HEAD/setup.py -------------------------------------------------------------------------------- /tableschema_pandas/VERSION: -------------------------------------------------------------------------------- 1 | 1.1.0 2 | -------------------------------------------------------------------------------- /tableschema_pandas/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frictionlessdata/tableschema-pandas-py/HEAD/tableschema_pandas/__init__.py -------------------------------------------------------------------------------- /tableschema_pandas/mapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frictionlessdata/tableschema-pandas-py/HEAD/tableschema_pandas/mapper.py -------------------------------------------------------------------------------- /tableschema_pandas/storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frictionlessdata/tableschema-pandas-py/HEAD/tableschema_pandas/storage.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_mapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frictionlessdata/tableschema-pandas-py/HEAD/tests/test_mapper.py -------------------------------------------------------------------------------- /tests/test_storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frictionlessdata/tableschema-pandas-py/HEAD/tests/test_storage.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frictionlessdata/tableschema-pandas-py/HEAD/tox.ini --------------------------------------------------------------------------------