├── .gitignore ├── .travis.yml ├── CHANGES.md ├── LICENSE.txt ├── MANIFEST.in ├── README.rst ├── newlinejson ├── __init__.py ├── __main__.py └── core.py ├── setup.cfg ├── setup.py ├── tests ├── conftest.py ├── data │ ├── dictionaries.csv │ ├── dictionaries.json │ ├── dictionaries.json.gz │ ├── with-null.csv │ └── with-null.json ├── test_core.py └── test_main.py └── utils └── profiler.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geowurster/NewlineJSON/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geowurster/NewlineJSON/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geowurster/NewlineJSON/HEAD/CHANGES.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geowurster/NewlineJSON/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geowurster/NewlineJSON/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geowurster/NewlineJSON/HEAD/README.rst -------------------------------------------------------------------------------- /newlinejson/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geowurster/NewlineJSON/HEAD/newlinejson/__init__.py -------------------------------------------------------------------------------- /newlinejson/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geowurster/NewlineJSON/HEAD/newlinejson/__main__.py -------------------------------------------------------------------------------- /newlinejson/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geowurster/NewlineJSON/HEAD/newlinejson/core.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [bdist_wheel] 2 | universal = 1 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geowurster/NewlineJSON/HEAD/setup.py -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geowurster/NewlineJSON/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/data/dictionaries.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geowurster/NewlineJSON/HEAD/tests/data/dictionaries.csv -------------------------------------------------------------------------------- /tests/data/dictionaries.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geowurster/NewlineJSON/HEAD/tests/data/dictionaries.json -------------------------------------------------------------------------------- /tests/data/dictionaries.json.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geowurster/NewlineJSON/HEAD/tests/data/dictionaries.json.gz -------------------------------------------------------------------------------- /tests/data/with-null.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geowurster/NewlineJSON/HEAD/tests/data/with-null.csv -------------------------------------------------------------------------------- /tests/data/with-null.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geowurster/NewlineJSON/HEAD/tests/data/with-null.json -------------------------------------------------------------------------------- /tests/test_core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geowurster/NewlineJSON/HEAD/tests/test_core.py -------------------------------------------------------------------------------- /tests/test_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geowurster/NewlineJSON/HEAD/tests/test_main.py -------------------------------------------------------------------------------- /utils/profiler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geowurster/NewlineJSON/HEAD/utils/profiler.py --------------------------------------------------------------------------------