├── .coveragerc ├── .coveralls.yml ├── .github └── workflows │ └── django.yml ├── .gitignore ├── .travis.yml ├── LICENSE ├── Makefile ├── README.md ├── coverage.rc ├── data_importer ├── __init__.py ├── admin.py ├── core │ ├── __init__.py │ ├── base.py │ ├── default_settings.py │ ├── descriptor.py │ └── exceptions.py ├── django_migrations │ ├── 0001_initial.py │ └── __init__.py ├── forms.py ├── importers │ ├── __init__.py │ ├── base.py │ ├── csv_importer.py │ ├── generic.py │ ├── xls_importer.py │ ├── xlsx_importer.py │ └── xml_importer.py ├── listeners.py ├── models.py ├── readers │ ├── __init__.py │ ├── csv_reader.py │ ├── xls_reader.py │ ├── xlsx_reader.py │ └── xml_reader.py ├── south_migrations │ ├── 0001_initial.py │ ├── 0002_auto__add_field_filehistory_owner.py │ ├── 0003_auto__add_field_filehistory_is_task__add_field_filehistory_status.py │ ├── 0004_auto__del_field_filehistory_content__add_field_filehistory_filename.py │ ├── 0005_auto__add_filehistorylog.py │ └── __init__.py ├── tasks.py ├── templates │ ├── data_importer.html │ └── my_upload.html └── views.py ├── docs ├── Makefile ├── make.bat └── source │ ├── conf.py │ ├── core.rst │ ├── core │ ├── base.rst │ ├── default_settings.rst │ ├── descriptor.rst │ └── exceptions.rst │ ├── forms.rst │ ├── importers.rst │ ├── importers │ ├── base.rst │ ├── csvimporter.rst │ ├── generic.rst │ ├── xlsimporter.rst │ ├── xlsximporter.rst │ └── xmlimporter.rst │ ├── index.rst │ ├── models.rst │ ├── readers │ ├── csvreader.rst │ ├── xlsreader.rst │ ├── xlsxreader.rst │ └── xmlreader.rst │ ├── readme.rst │ └── views.rst ├── example ├── __init__.py ├── django_test_settings.py ├── manage.py ├── models.py ├── templates │ └── index.html ├── urls.py └── views.py ├── requirements.txt ├── setup.cfg ├── setup.py ├── tests ├── __init__.py ├── data │ ├── Workbook3.csv │ ├── Workbook3.xlsx │ ├── invoice.csv │ ├── person_test.csv │ ├── ptbr_test.xls │ ├── ptbr_test.xlsx │ ├── ptbr_test_mac.csv │ ├── ptbr_test_win.csv │ ├── test.csv │ ├── test.xls │ ├── test.xlsx │ ├── test.xml │ ├── test_invalid_lines.xlsx │ ├── test_json_descriptor.json │ └── test_music.xml ├── test_base.py ├── test_base_model.py ├── test_csv_importer.py ├── test_descriptor.py ├── test_dict_fields.py ├── test_foreignkey.py ├── test_forms.py ├── test_generic_importer.py ├── test_models.py ├── test_settings.py ├── test_tasks.py ├── test_xls_importer.py ├── test_xlsx_importer.py └── test_xml_importer.py └── tox.ini /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valdergallo/data-importer/HEAD/.coveragerc -------------------------------------------------------------------------------- /.coveralls.yml: -------------------------------------------------------------------------------- 1 | repo_token: pYmoUmt7U5eLpw7LijsqBrLXR7nKfNStt 2 | -------------------------------------------------------------------------------- /.github/workflows/django.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valdergallo/data-importer/HEAD/.github/workflows/django.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valdergallo/data-importer/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valdergallo/data-importer/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valdergallo/data-importer/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valdergallo/data-importer/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valdergallo/data-importer/HEAD/README.md -------------------------------------------------------------------------------- /coverage.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valdergallo/data-importer/HEAD/coverage.rc -------------------------------------------------------------------------------- /data_importer/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valdergallo/data-importer/HEAD/data_importer/__init__.py -------------------------------------------------------------------------------- /data_importer/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valdergallo/data-importer/HEAD/data_importer/admin.py -------------------------------------------------------------------------------- /data_importer/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data_importer/core/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valdergallo/data-importer/HEAD/data_importer/core/base.py -------------------------------------------------------------------------------- /data_importer/core/default_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valdergallo/data-importer/HEAD/data_importer/core/default_settings.py -------------------------------------------------------------------------------- /data_importer/core/descriptor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valdergallo/data-importer/HEAD/data_importer/core/descriptor.py -------------------------------------------------------------------------------- /data_importer/core/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valdergallo/data-importer/HEAD/data_importer/core/exceptions.py -------------------------------------------------------------------------------- /data_importer/django_migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valdergallo/data-importer/HEAD/data_importer/django_migrations/0001_initial.py -------------------------------------------------------------------------------- /data_importer/django_migrations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valdergallo/data-importer/HEAD/data_importer/django_migrations/__init__.py -------------------------------------------------------------------------------- /data_importer/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valdergallo/data-importer/HEAD/data_importer/forms.py -------------------------------------------------------------------------------- /data_importer/importers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valdergallo/data-importer/HEAD/data_importer/importers/__init__.py -------------------------------------------------------------------------------- /data_importer/importers/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valdergallo/data-importer/HEAD/data_importer/importers/base.py -------------------------------------------------------------------------------- /data_importer/importers/csv_importer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valdergallo/data-importer/HEAD/data_importer/importers/csv_importer.py -------------------------------------------------------------------------------- /data_importer/importers/generic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valdergallo/data-importer/HEAD/data_importer/importers/generic.py -------------------------------------------------------------------------------- /data_importer/importers/xls_importer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valdergallo/data-importer/HEAD/data_importer/importers/xls_importer.py -------------------------------------------------------------------------------- /data_importer/importers/xlsx_importer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valdergallo/data-importer/HEAD/data_importer/importers/xlsx_importer.py -------------------------------------------------------------------------------- /data_importer/importers/xml_importer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valdergallo/data-importer/HEAD/data_importer/importers/xml_importer.py -------------------------------------------------------------------------------- /data_importer/listeners.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valdergallo/data-importer/HEAD/data_importer/listeners.py -------------------------------------------------------------------------------- /data_importer/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valdergallo/data-importer/HEAD/data_importer/models.py -------------------------------------------------------------------------------- /data_importer/readers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valdergallo/data-importer/HEAD/data_importer/readers/__init__.py -------------------------------------------------------------------------------- /data_importer/readers/csv_reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valdergallo/data-importer/HEAD/data_importer/readers/csv_reader.py -------------------------------------------------------------------------------- /data_importer/readers/xls_reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valdergallo/data-importer/HEAD/data_importer/readers/xls_reader.py -------------------------------------------------------------------------------- /data_importer/readers/xlsx_reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valdergallo/data-importer/HEAD/data_importer/readers/xlsx_reader.py -------------------------------------------------------------------------------- /data_importer/readers/xml_reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valdergallo/data-importer/HEAD/data_importer/readers/xml_reader.py -------------------------------------------------------------------------------- /data_importer/south_migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valdergallo/data-importer/HEAD/data_importer/south_migrations/0001_initial.py -------------------------------------------------------------------------------- /data_importer/south_migrations/0002_auto__add_field_filehistory_owner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valdergallo/data-importer/HEAD/data_importer/south_migrations/0002_auto__add_field_filehistory_owner.py -------------------------------------------------------------------------------- /data_importer/south_migrations/0003_auto__add_field_filehistory_is_task__add_field_filehistory_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valdergallo/data-importer/HEAD/data_importer/south_migrations/0003_auto__add_field_filehistory_is_task__add_field_filehistory_status.py -------------------------------------------------------------------------------- /data_importer/south_migrations/0004_auto__del_field_filehistory_content__add_field_filehistory_filename.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valdergallo/data-importer/HEAD/data_importer/south_migrations/0004_auto__del_field_filehistory_content__add_field_filehistory_filename.py -------------------------------------------------------------------------------- /data_importer/south_migrations/0005_auto__add_filehistorylog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valdergallo/data-importer/HEAD/data_importer/south_migrations/0005_auto__add_filehistorylog.py -------------------------------------------------------------------------------- /data_importer/south_migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data_importer/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valdergallo/data-importer/HEAD/data_importer/tasks.py -------------------------------------------------------------------------------- /data_importer/templates/data_importer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valdergallo/data-importer/HEAD/data_importer/templates/data_importer.html -------------------------------------------------------------------------------- /data_importer/templates/my_upload.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valdergallo/data-importer/HEAD/data_importer/templates/my_upload.html -------------------------------------------------------------------------------- /data_importer/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valdergallo/data-importer/HEAD/data_importer/views.py -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valdergallo/data-importer/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valdergallo/data-importer/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valdergallo/data-importer/HEAD/docs/source/conf.py -------------------------------------------------------------------------------- /docs/source/core.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valdergallo/data-importer/HEAD/docs/source/core.rst -------------------------------------------------------------------------------- /docs/source/core/base.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valdergallo/data-importer/HEAD/docs/source/core/base.rst -------------------------------------------------------------------------------- /docs/source/core/default_settings.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valdergallo/data-importer/HEAD/docs/source/core/default_settings.rst -------------------------------------------------------------------------------- /docs/source/core/descriptor.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valdergallo/data-importer/HEAD/docs/source/core/descriptor.rst -------------------------------------------------------------------------------- /docs/source/core/exceptions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valdergallo/data-importer/HEAD/docs/source/core/exceptions.rst -------------------------------------------------------------------------------- /docs/source/forms.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valdergallo/data-importer/HEAD/docs/source/forms.rst -------------------------------------------------------------------------------- /docs/source/importers.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valdergallo/data-importer/HEAD/docs/source/importers.rst -------------------------------------------------------------------------------- /docs/source/importers/base.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valdergallo/data-importer/HEAD/docs/source/importers/base.rst -------------------------------------------------------------------------------- /docs/source/importers/csvimporter.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valdergallo/data-importer/HEAD/docs/source/importers/csvimporter.rst -------------------------------------------------------------------------------- /docs/source/importers/generic.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valdergallo/data-importer/HEAD/docs/source/importers/generic.rst -------------------------------------------------------------------------------- /docs/source/importers/xlsimporter.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valdergallo/data-importer/HEAD/docs/source/importers/xlsimporter.rst -------------------------------------------------------------------------------- /docs/source/importers/xlsximporter.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valdergallo/data-importer/HEAD/docs/source/importers/xlsximporter.rst -------------------------------------------------------------------------------- /docs/source/importers/xmlimporter.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valdergallo/data-importer/HEAD/docs/source/importers/xmlimporter.rst -------------------------------------------------------------------------------- /docs/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valdergallo/data-importer/HEAD/docs/source/index.rst -------------------------------------------------------------------------------- /docs/source/models.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valdergallo/data-importer/HEAD/docs/source/models.rst -------------------------------------------------------------------------------- /docs/source/readers/csvreader.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valdergallo/data-importer/HEAD/docs/source/readers/csvreader.rst -------------------------------------------------------------------------------- /docs/source/readers/xlsreader.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valdergallo/data-importer/HEAD/docs/source/readers/xlsreader.rst -------------------------------------------------------------------------------- /docs/source/readers/xlsxreader.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valdergallo/data-importer/HEAD/docs/source/readers/xlsxreader.rst -------------------------------------------------------------------------------- /docs/source/readers/xmlreader.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valdergallo/data-importer/HEAD/docs/source/readers/xmlreader.rst -------------------------------------------------------------------------------- /docs/source/readme.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valdergallo/data-importer/HEAD/docs/source/readme.rst -------------------------------------------------------------------------------- /docs/source/views.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valdergallo/data-importer/HEAD/docs/source/views.rst -------------------------------------------------------------------------------- /example/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/django_test_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valdergallo/data-importer/HEAD/example/django_test_settings.py -------------------------------------------------------------------------------- /example/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valdergallo/data-importer/HEAD/example/manage.py -------------------------------------------------------------------------------- /example/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valdergallo/data-importer/HEAD/example/models.py -------------------------------------------------------------------------------- /example/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valdergallo/data-importer/HEAD/example/templates/index.html -------------------------------------------------------------------------------- /example/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valdergallo/data-importer/HEAD/example/urls.py -------------------------------------------------------------------------------- /example/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valdergallo/data-importer/HEAD/example/views.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valdergallo/data-importer/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valdergallo/data-importer/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valdergallo/data-importer/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | # python 2 | -------------------------------------------------------------------------------- /tests/data/Workbook3.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valdergallo/data-importer/HEAD/tests/data/Workbook3.csv -------------------------------------------------------------------------------- /tests/data/Workbook3.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valdergallo/data-importer/HEAD/tests/data/Workbook3.xlsx -------------------------------------------------------------------------------- /tests/data/invoice.csv: -------------------------------------------------------------------------------- 1 | name;data;price 2 | test;2014-01-01;23,98 3 | -------------------------------------------------------------------------------- /tests/data/person_test.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valdergallo/data-importer/HEAD/tests/data/person_test.csv -------------------------------------------------------------------------------- /tests/data/ptbr_test.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valdergallo/data-importer/HEAD/tests/data/ptbr_test.xls -------------------------------------------------------------------------------- /tests/data/ptbr_test.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valdergallo/data-importer/HEAD/tests/data/ptbr_test.xlsx -------------------------------------------------------------------------------- /tests/data/ptbr_test_mac.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valdergallo/data-importer/HEAD/tests/data/ptbr_test_mac.csv -------------------------------------------------------------------------------- /tests/data/ptbr_test_win.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valdergallo/data-importer/HEAD/tests/data/ptbr_test_win.csv -------------------------------------------------------------------------------- /tests/data/test.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valdergallo/data-importer/HEAD/tests/data/test.csv -------------------------------------------------------------------------------- /tests/data/test.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valdergallo/data-importer/HEAD/tests/data/test.xls -------------------------------------------------------------------------------- /tests/data/test.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valdergallo/data-importer/HEAD/tests/data/test.xlsx -------------------------------------------------------------------------------- /tests/data/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valdergallo/data-importer/HEAD/tests/data/test.xml -------------------------------------------------------------------------------- /tests/data/test_invalid_lines.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valdergallo/data-importer/HEAD/tests/data/test_invalid_lines.xlsx -------------------------------------------------------------------------------- /tests/data/test_json_descriptor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valdergallo/data-importer/HEAD/tests/data/test_json_descriptor.json -------------------------------------------------------------------------------- /tests/data/test_music.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valdergallo/data-importer/HEAD/tests/data/test_music.xml -------------------------------------------------------------------------------- /tests/test_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valdergallo/data-importer/HEAD/tests/test_base.py -------------------------------------------------------------------------------- /tests/test_base_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valdergallo/data-importer/HEAD/tests/test_base_model.py -------------------------------------------------------------------------------- /tests/test_csv_importer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valdergallo/data-importer/HEAD/tests/test_csv_importer.py -------------------------------------------------------------------------------- /tests/test_descriptor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valdergallo/data-importer/HEAD/tests/test_descriptor.py -------------------------------------------------------------------------------- /tests/test_dict_fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valdergallo/data-importer/HEAD/tests/test_dict_fields.py -------------------------------------------------------------------------------- /tests/test_foreignkey.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valdergallo/data-importer/HEAD/tests/test_foreignkey.py -------------------------------------------------------------------------------- /tests/test_forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valdergallo/data-importer/HEAD/tests/test_forms.py -------------------------------------------------------------------------------- /tests/test_generic_importer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valdergallo/data-importer/HEAD/tests/test_generic_importer.py -------------------------------------------------------------------------------- /tests/test_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valdergallo/data-importer/HEAD/tests/test_models.py -------------------------------------------------------------------------------- /tests/test_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valdergallo/data-importer/HEAD/tests/test_settings.py -------------------------------------------------------------------------------- /tests/test_tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valdergallo/data-importer/HEAD/tests/test_tasks.py -------------------------------------------------------------------------------- /tests/test_xls_importer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valdergallo/data-importer/HEAD/tests/test_xls_importer.py -------------------------------------------------------------------------------- /tests/test_xlsx_importer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valdergallo/data-importer/HEAD/tests/test_xlsx_importer.py -------------------------------------------------------------------------------- /tests/test_xml_importer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valdergallo/data-importer/HEAD/tests/test_xml_importer.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valdergallo/data-importer/HEAD/tox.ini --------------------------------------------------------------------------------