├── .github ├── dependabot.yml └── workflows │ ├── build.yml │ └── deploy.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .readthedocs.yml ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.md ├── auxiliary └── human.py ├── clevercsv ├── __init__.py ├── __main__.py ├── __version__.py ├── _optional.py ├── _regexes.py ├── _types.py ├── break_ties.py ├── cabstraction.pyi ├── consistency.py ├── console │ ├── __init__.py │ ├── application.py │ └── commands │ │ ├── __init__.py │ │ ├── _docs.py │ │ ├── _utils.py │ │ ├── code.py │ │ ├── detect.py │ │ ├── explore.py │ │ ├── standardize.py │ │ └── view.py ├── cparser.pyi ├── cparser_util.py ├── cparser_util.pyi ├── detect.py ├── detect_pattern.py ├── detect_type.py ├── dialect.py ├── dict_read_write.py ├── encoding.py ├── escape.py ├── exceptions.py ├── normal_form.py ├── potential_dialects.py ├── py.typed ├── read.py ├── utils.py ├── wrappers.py └── write.py ├── docs ├── CHANGELOG.rst ├── Makefile ├── README.rst ├── _changelog.rst ├── _readme.rst ├── conf.py ├── index.rst ├── make.bat └── source │ ├── clevercsv.console.commands.rst │ ├── clevercsv.console.rst │ ├── clevercsv.rst │ └── modules.rst ├── example ├── README.md ├── airedale.csv ├── imdb.csv └── milk.csv ├── make_release.py ├── man ├── clevercsv-code.1 ├── clevercsv-detect.1 ├── clevercsv-explore.1 ├── clevercsv-help.1 ├── clevercsv-standardize.1 ├── clevercsv-view.1 └── clevercsv.1 ├── notes └── date_regex │ ├── README.md │ ├── datefmt.py │ ├── dateregex.txt │ ├── dateregex_annotated.txt │ ├── dateregex_formats.txt │ └── dateregexmin.txt ├── pyproject.toml ├── setup.py ├── src ├── abstraction.c └── cparser.c ├── stubs ├── pandas │ └── __init__.pyi ├── pythonfuzz │ ├── __init__.pyi │ └── main.pyi ├── regex │ ├── __init__.pyi │ ├── _regex.pyi │ ├── _regex_core.pyi │ └── regex.pyi ├── tabview │ ├── __init__.pyi │ └── tabview.pyi ├── termcolor │ └── __init__.pyi └── wilderness │ └── __init__.pyi └── tests ├── README.md ├── test_fuzz └── fuzz_sniffer.py ├── test_integration ├── README.md ├── error.log ├── error_partial.log ├── failed.log ├── failed_partial.log ├── method.log ├── runtime.log ├── success.log ├── success_partial.log └── test_dialect_detection.py └── test_unit ├── data └── abstraction_testcases.json.gz ├── test_abstraction.py ├── test_c_file_naming.py ├── test_consistency.py ├── test_console.py ├── test_cparser.py ├── test_detect.py ├── test_detect_pattern.py ├── test_detect_type.py ├── test_dict.py ├── test_encoding.py ├── test_fuzzing.py ├── test_normal_forms.py ├── test_potential_dialects.py ├── test_reader.py ├── test_wrappers.py └── test_write.py /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alan-turing-institute/CleverCSV/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alan-turing-institute/CleverCSV/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alan-turing-institute/CleverCSV/HEAD/.github/workflows/deploy.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alan-turing-institute/CleverCSV/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alan-turing-institute/CleverCSV/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alan-turing-institute/CleverCSV/HEAD/.readthedocs.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alan-turing-institute/CleverCSV/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alan-turing-institute/CleverCSV/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alan-turing-institute/CleverCSV/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alan-turing-institute/CleverCSV/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alan-turing-institute/CleverCSV/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alan-turing-institute/CleverCSV/HEAD/README.md -------------------------------------------------------------------------------- /auxiliary/human.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alan-turing-institute/CleverCSV/HEAD/auxiliary/human.py -------------------------------------------------------------------------------- /clevercsv/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alan-turing-institute/CleverCSV/HEAD/clevercsv/__init__.py -------------------------------------------------------------------------------- /clevercsv/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alan-turing-institute/CleverCSV/HEAD/clevercsv/__main__.py -------------------------------------------------------------------------------- /clevercsv/__version__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alan-turing-institute/CleverCSV/HEAD/clevercsv/__version__.py -------------------------------------------------------------------------------- /clevercsv/_optional.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alan-turing-institute/CleverCSV/HEAD/clevercsv/_optional.py -------------------------------------------------------------------------------- /clevercsv/_regexes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alan-turing-institute/CleverCSV/HEAD/clevercsv/_regexes.py -------------------------------------------------------------------------------- /clevercsv/_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alan-turing-institute/CleverCSV/HEAD/clevercsv/_types.py -------------------------------------------------------------------------------- /clevercsv/break_ties.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alan-turing-institute/CleverCSV/HEAD/clevercsv/break_ties.py -------------------------------------------------------------------------------- /clevercsv/cabstraction.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alan-turing-institute/CleverCSV/HEAD/clevercsv/cabstraction.pyi -------------------------------------------------------------------------------- /clevercsv/consistency.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alan-turing-institute/CleverCSV/HEAD/clevercsv/consistency.py -------------------------------------------------------------------------------- /clevercsv/console/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alan-turing-institute/CleverCSV/HEAD/clevercsv/console/__init__.py -------------------------------------------------------------------------------- /clevercsv/console/application.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alan-turing-institute/CleverCSV/HEAD/clevercsv/console/application.py -------------------------------------------------------------------------------- /clevercsv/console/commands/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alan-turing-institute/CleverCSV/HEAD/clevercsv/console/commands/__init__.py -------------------------------------------------------------------------------- /clevercsv/console/commands/_docs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alan-turing-institute/CleverCSV/HEAD/clevercsv/console/commands/_docs.py -------------------------------------------------------------------------------- /clevercsv/console/commands/_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alan-turing-institute/CleverCSV/HEAD/clevercsv/console/commands/_utils.py -------------------------------------------------------------------------------- /clevercsv/console/commands/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alan-turing-institute/CleverCSV/HEAD/clevercsv/console/commands/code.py -------------------------------------------------------------------------------- /clevercsv/console/commands/detect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alan-turing-institute/CleverCSV/HEAD/clevercsv/console/commands/detect.py -------------------------------------------------------------------------------- /clevercsv/console/commands/explore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alan-turing-institute/CleverCSV/HEAD/clevercsv/console/commands/explore.py -------------------------------------------------------------------------------- /clevercsv/console/commands/standardize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alan-turing-institute/CleverCSV/HEAD/clevercsv/console/commands/standardize.py -------------------------------------------------------------------------------- /clevercsv/console/commands/view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alan-turing-institute/CleverCSV/HEAD/clevercsv/console/commands/view.py -------------------------------------------------------------------------------- /clevercsv/cparser.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alan-turing-institute/CleverCSV/HEAD/clevercsv/cparser.pyi -------------------------------------------------------------------------------- /clevercsv/cparser_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alan-turing-institute/CleverCSV/HEAD/clevercsv/cparser_util.py -------------------------------------------------------------------------------- /clevercsv/cparser_util.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alan-turing-institute/CleverCSV/HEAD/clevercsv/cparser_util.pyi -------------------------------------------------------------------------------- /clevercsv/detect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alan-turing-institute/CleverCSV/HEAD/clevercsv/detect.py -------------------------------------------------------------------------------- /clevercsv/detect_pattern.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alan-turing-institute/CleverCSV/HEAD/clevercsv/detect_pattern.py -------------------------------------------------------------------------------- /clevercsv/detect_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alan-turing-institute/CleverCSV/HEAD/clevercsv/detect_type.py -------------------------------------------------------------------------------- /clevercsv/dialect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alan-turing-institute/CleverCSV/HEAD/clevercsv/dialect.py -------------------------------------------------------------------------------- /clevercsv/dict_read_write.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alan-turing-institute/CleverCSV/HEAD/clevercsv/dict_read_write.py -------------------------------------------------------------------------------- /clevercsv/encoding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alan-turing-institute/CleverCSV/HEAD/clevercsv/encoding.py -------------------------------------------------------------------------------- /clevercsv/escape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alan-turing-institute/CleverCSV/HEAD/clevercsv/escape.py -------------------------------------------------------------------------------- /clevercsv/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alan-turing-institute/CleverCSV/HEAD/clevercsv/exceptions.py -------------------------------------------------------------------------------- /clevercsv/normal_form.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alan-turing-institute/CleverCSV/HEAD/clevercsv/normal_form.py -------------------------------------------------------------------------------- /clevercsv/potential_dialects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alan-turing-institute/CleverCSV/HEAD/clevercsv/potential_dialects.py -------------------------------------------------------------------------------- /clevercsv/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /clevercsv/read.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alan-turing-institute/CleverCSV/HEAD/clevercsv/read.py -------------------------------------------------------------------------------- /clevercsv/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alan-turing-institute/CleverCSV/HEAD/clevercsv/utils.py -------------------------------------------------------------------------------- /clevercsv/wrappers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alan-turing-institute/CleverCSV/HEAD/clevercsv/wrappers.py -------------------------------------------------------------------------------- /clevercsv/write.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alan-turing-institute/CleverCSV/HEAD/clevercsv/write.py -------------------------------------------------------------------------------- /docs/CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alan-turing-institute/CleverCSV/HEAD/docs/CHANGELOG.rst -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alan-turing-institute/CleverCSV/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alan-turing-institute/CleverCSV/HEAD/docs/README.rst -------------------------------------------------------------------------------- /docs/_changelog.rst: -------------------------------------------------------------------------------- 1 | .. include:: ./CHANGELOG.rst 2 | -------------------------------------------------------------------------------- /docs/_readme.rst: -------------------------------------------------------------------------------- 1 | .. include:: ./README.rst 2 | -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alan-turing-institute/CleverCSV/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alan-turing-institute/CleverCSV/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alan-turing-institute/CleverCSV/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/source/clevercsv.console.commands.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alan-turing-institute/CleverCSV/HEAD/docs/source/clevercsv.console.commands.rst -------------------------------------------------------------------------------- /docs/source/clevercsv.console.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alan-turing-institute/CleverCSV/HEAD/docs/source/clevercsv.console.rst -------------------------------------------------------------------------------- /docs/source/clevercsv.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alan-turing-institute/CleverCSV/HEAD/docs/source/clevercsv.rst -------------------------------------------------------------------------------- /docs/source/modules.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alan-turing-institute/CleverCSV/HEAD/docs/source/modules.rst -------------------------------------------------------------------------------- /example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alan-turing-institute/CleverCSV/HEAD/example/README.md -------------------------------------------------------------------------------- /example/airedale.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alan-turing-institute/CleverCSV/HEAD/example/airedale.csv -------------------------------------------------------------------------------- /example/imdb.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alan-turing-institute/CleverCSV/HEAD/example/imdb.csv -------------------------------------------------------------------------------- /example/milk.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alan-turing-institute/CleverCSV/HEAD/example/milk.csv -------------------------------------------------------------------------------- /make_release.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alan-turing-institute/CleverCSV/HEAD/make_release.py -------------------------------------------------------------------------------- /man/clevercsv-code.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alan-turing-institute/CleverCSV/HEAD/man/clevercsv-code.1 -------------------------------------------------------------------------------- /man/clevercsv-detect.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alan-turing-institute/CleverCSV/HEAD/man/clevercsv-detect.1 -------------------------------------------------------------------------------- /man/clevercsv-explore.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alan-turing-institute/CleverCSV/HEAD/man/clevercsv-explore.1 -------------------------------------------------------------------------------- /man/clevercsv-help.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alan-turing-institute/CleverCSV/HEAD/man/clevercsv-help.1 -------------------------------------------------------------------------------- /man/clevercsv-standardize.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alan-turing-institute/CleverCSV/HEAD/man/clevercsv-standardize.1 -------------------------------------------------------------------------------- /man/clevercsv-view.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alan-turing-institute/CleverCSV/HEAD/man/clevercsv-view.1 -------------------------------------------------------------------------------- /man/clevercsv.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alan-turing-institute/CleverCSV/HEAD/man/clevercsv.1 -------------------------------------------------------------------------------- /notes/date_regex/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alan-turing-institute/CleverCSV/HEAD/notes/date_regex/README.md -------------------------------------------------------------------------------- /notes/date_regex/datefmt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alan-turing-institute/CleverCSV/HEAD/notes/date_regex/datefmt.py -------------------------------------------------------------------------------- /notes/date_regex/dateregex.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alan-turing-institute/CleverCSV/HEAD/notes/date_regex/dateregex.txt -------------------------------------------------------------------------------- /notes/date_regex/dateregex_annotated.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alan-turing-institute/CleverCSV/HEAD/notes/date_regex/dateregex_annotated.txt -------------------------------------------------------------------------------- /notes/date_regex/dateregex_formats.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alan-turing-institute/CleverCSV/HEAD/notes/date_regex/dateregex_formats.txt -------------------------------------------------------------------------------- /notes/date_regex/dateregexmin.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alan-turing-institute/CleverCSV/HEAD/notes/date_regex/dateregexmin.txt -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alan-turing-institute/CleverCSV/HEAD/pyproject.toml -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alan-turing-institute/CleverCSV/HEAD/setup.py -------------------------------------------------------------------------------- /src/abstraction.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alan-turing-institute/CleverCSV/HEAD/src/abstraction.c -------------------------------------------------------------------------------- /src/cparser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alan-turing-institute/CleverCSV/HEAD/src/cparser.c -------------------------------------------------------------------------------- /stubs/pandas/__init__.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alan-turing-institute/CleverCSV/HEAD/stubs/pandas/__init__.pyi -------------------------------------------------------------------------------- /stubs/pythonfuzz/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /stubs/pythonfuzz/main.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alan-turing-institute/CleverCSV/HEAD/stubs/pythonfuzz/main.pyi -------------------------------------------------------------------------------- /stubs/regex/__init__.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alan-turing-institute/CleverCSV/HEAD/stubs/regex/__init__.pyi -------------------------------------------------------------------------------- /stubs/regex/_regex.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alan-turing-institute/CleverCSV/HEAD/stubs/regex/_regex.pyi -------------------------------------------------------------------------------- /stubs/regex/_regex_core.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alan-turing-institute/CleverCSV/HEAD/stubs/regex/_regex_core.pyi -------------------------------------------------------------------------------- /stubs/regex/regex.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alan-turing-institute/CleverCSV/HEAD/stubs/regex/regex.pyi -------------------------------------------------------------------------------- /stubs/tabview/__init__.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alan-turing-institute/CleverCSV/HEAD/stubs/tabview/__init__.pyi -------------------------------------------------------------------------------- /stubs/tabview/tabview.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alan-turing-institute/CleverCSV/HEAD/stubs/tabview/tabview.pyi -------------------------------------------------------------------------------- /stubs/termcolor/__init__.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alan-turing-institute/CleverCSV/HEAD/stubs/termcolor/__init__.pyi -------------------------------------------------------------------------------- /stubs/wilderness/__init__.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alan-turing-institute/CleverCSV/HEAD/stubs/wilderness/__init__.pyi -------------------------------------------------------------------------------- /tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alan-turing-institute/CleverCSV/HEAD/tests/README.md -------------------------------------------------------------------------------- /tests/test_fuzz/fuzz_sniffer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alan-turing-institute/CleverCSV/HEAD/tests/test_fuzz/fuzz_sniffer.py -------------------------------------------------------------------------------- /tests/test_integration/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alan-turing-institute/CleverCSV/HEAD/tests/test_integration/README.md -------------------------------------------------------------------------------- /tests/test_integration/error.log: -------------------------------------------------------------------------------- 1 | 12f6fa751d2b2a491a54bc9e0e39d05f 2 | -------------------------------------------------------------------------------- /tests/test_integration/error_partial.log: -------------------------------------------------------------------------------- 1 | 12f6fa751d2b2a491a54bc9e0e39d05f 2 | -------------------------------------------------------------------------------- /tests/test_integration/failed.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alan-turing-institute/CleverCSV/HEAD/tests/test_integration/failed.log -------------------------------------------------------------------------------- /tests/test_integration/failed_partial.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alan-turing-institute/CleverCSV/HEAD/tests/test_integration/failed_partial.log -------------------------------------------------------------------------------- /tests/test_integration/method.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alan-turing-institute/CleverCSV/HEAD/tests/test_integration/method.log -------------------------------------------------------------------------------- /tests/test_integration/runtime.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alan-turing-institute/CleverCSV/HEAD/tests/test_integration/runtime.log -------------------------------------------------------------------------------- /tests/test_integration/success.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alan-turing-institute/CleverCSV/HEAD/tests/test_integration/success.log -------------------------------------------------------------------------------- /tests/test_integration/success_partial.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alan-turing-institute/CleverCSV/HEAD/tests/test_integration/success_partial.log -------------------------------------------------------------------------------- /tests/test_integration/test_dialect_detection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alan-turing-institute/CleverCSV/HEAD/tests/test_integration/test_dialect_detection.py -------------------------------------------------------------------------------- /tests/test_unit/data/abstraction_testcases.json.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alan-turing-institute/CleverCSV/HEAD/tests/test_unit/data/abstraction_testcases.json.gz -------------------------------------------------------------------------------- /tests/test_unit/test_abstraction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alan-turing-institute/CleverCSV/HEAD/tests/test_unit/test_abstraction.py -------------------------------------------------------------------------------- /tests/test_unit/test_c_file_naming.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alan-turing-institute/CleverCSV/HEAD/tests/test_unit/test_c_file_naming.py -------------------------------------------------------------------------------- /tests/test_unit/test_consistency.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alan-turing-institute/CleverCSV/HEAD/tests/test_unit/test_consistency.py -------------------------------------------------------------------------------- /tests/test_unit/test_console.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alan-turing-institute/CleverCSV/HEAD/tests/test_unit/test_console.py -------------------------------------------------------------------------------- /tests/test_unit/test_cparser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alan-turing-institute/CleverCSV/HEAD/tests/test_unit/test_cparser.py -------------------------------------------------------------------------------- /tests/test_unit/test_detect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alan-turing-institute/CleverCSV/HEAD/tests/test_unit/test_detect.py -------------------------------------------------------------------------------- /tests/test_unit/test_detect_pattern.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alan-turing-institute/CleverCSV/HEAD/tests/test_unit/test_detect_pattern.py -------------------------------------------------------------------------------- /tests/test_unit/test_detect_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alan-turing-institute/CleverCSV/HEAD/tests/test_unit/test_detect_type.py -------------------------------------------------------------------------------- /tests/test_unit/test_dict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alan-turing-institute/CleverCSV/HEAD/tests/test_unit/test_dict.py -------------------------------------------------------------------------------- /tests/test_unit/test_encoding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alan-turing-institute/CleverCSV/HEAD/tests/test_unit/test_encoding.py -------------------------------------------------------------------------------- /tests/test_unit/test_fuzzing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alan-turing-institute/CleverCSV/HEAD/tests/test_unit/test_fuzzing.py -------------------------------------------------------------------------------- /tests/test_unit/test_normal_forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alan-turing-institute/CleverCSV/HEAD/tests/test_unit/test_normal_forms.py -------------------------------------------------------------------------------- /tests/test_unit/test_potential_dialects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alan-turing-institute/CleverCSV/HEAD/tests/test_unit/test_potential_dialects.py -------------------------------------------------------------------------------- /tests/test_unit/test_reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alan-turing-institute/CleverCSV/HEAD/tests/test_unit/test_reader.py -------------------------------------------------------------------------------- /tests/test_unit/test_wrappers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alan-turing-institute/CleverCSV/HEAD/tests/test_unit/test_wrappers.py -------------------------------------------------------------------------------- /tests/test_unit/test_write.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alan-turing-institute/CleverCSV/HEAD/tests/test_unit/test_write.py --------------------------------------------------------------------------------