├── .gitignore ├── .travis.yml ├── CHANGES.rst ├── LICENSE ├── README.rst ├── arff.py ├── ci_scripts └── create_doc.sh ├── docs ├── Makefile ├── make.bat └── source │ ├── _static │ └── empty │ ├── conf.py │ └── index.rst ├── setup.py └── tests ├── __init__.py ├── examples └── issue69.arff ├── test_conversor.py ├── test_data.py ├── test_decode.py ├── test_decode_attribute.py ├── test_decode_attribute_types.py ├── test_decode_comment.py ├── test_decode_data.py ├── test_decode_relation.py ├── test_dump.py ├── test_dump_escape.py ├── test_dumps.py ├── test_dumps_escape.py ├── test_encode.py ├── test_encode_attribute.py ├── test_encode_comment.py ├── test_encode_relation.py ├── test_load.py ├── test_loads.py └── test_loads_dumps.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renatopp/liac-arff/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renatopp/liac-arff/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGES.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renatopp/liac-arff/HEAD/CHANGES.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renatopp/liac-arff/HEAD/LICENSE -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renatopp/liac-arff/HEAD/README.rst -------------------------------------------------------------------------------- /arff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renatopp/liac-arff/HEAD/arff.py -------------------------------------------------------------------------------- /ci_scripts/create_doc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renatopp/liac-arff/HEAD/ci_scripts/create_doc.sh -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renatopp/liac-arff/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renatopp/liac-arff/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/source/_static/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renatopp/liac-arff/HEAD/docs/source/conf.py -------------------------------------------------------------------------------- /docs/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renatopp/liac-arff/HEAD/docs/source/index.rst -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renatopp/liac-arff/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/examples/issue69.arff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renatopp/liac-arff/HEAD/tests/examples/issue69.arff -------------------------------------------------------------------------------- /tests/test_conversor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renatopp/liac-arff/HEAD/tests/test_conversor.py -------------------------------------------------------------------------------- /tests/test_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renatopp/liac-arff/HEAD/tests/test_data.py -------------------------------------------------------------------------------- /tests/test_decode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renatopp/liac-arff/HEAD/tests/test_decode.py -------------------------------------------------------------------------------- /tests/test_decode_attribute.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renatopp/liac-arff/HEAD/tests/test_decode_attribute.py -------------------------------------------------------------------------------- /tests/test_decode_attribute_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renatopp/liac-arff/HEAD/tests/test_decode_attribute_types.py -------------------------------------------------------------------------------- /tests/test_decode_comment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renatopp/liac-arff/HEAD/tests/test_decode_comment.py -------------------------------------------------------------------------------- /tests/test_decode_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renatopp/liac-arff/HEAD/tests/test_decode_data.py -------------------------------------------------------------------------------- /tests/test_decode_relation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renatopp/liac-arff/HEAD/tests/test_decode_relation.py -------------------------------------------------------------------------------- /tests/test_dump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renatopp/liac-arff/HEAD/tests/test_dump.py -------------------------------------------------------------------------------- /tests/test_dump_escape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renatopp/liac-arff/HEAD/tests/test_dump_escape.py -------------------------------------------------------------------------------- /tests/test_dumps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renatopp/liac-arff/HEAD/tests/test_dumps.py -------------------------------------------------------------------------------- /tests/test_dumps_escape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renatopp/liac-arff/HEAD/tests/test_dumps_escape.py -------------------------------------------------------------------------------- /tests/test_encode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renatopp/liac-arff/HEAD/tests/test_encode.py -------------------------------------------------------------------------------- /tests/test_encode_attribute.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renatopp/liac-arff/HEAD/tests/test_encode_attribute.py -------------------------------------------------------------------------------- /tests/test_encode_comment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renatopp/liac-arff/HEAD/tests/test_encode_comment.py -------------------------------------------------------------------------------- /tests/test_encode_relation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renatopp/liac-arff/HEAD/tests/test_encode_relation.py -------------------------------------------------------------------------------- /tests/test_load.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renatopp/liac-arff/HEAD/tests/test_load.py -------------------------------------------------------------------------------- /tests/test_loads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renatopp/liac-arff/HEAD/tests/test_loads.py -------------------------------------------------------------------------------- /tests/test_loads_dumps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renatopp/liac-arff/HEAD/tests/test_loads_dumps.py --------------------------------------------------------------------------------