├── .clabot ├── .coveragerc ├── .deepsource.toml ├── .gitignore ├── LICENSE ├── README.md ├── import_x ├── __init__.py └── loaders │ ├── __init__.py │ └── json_loader.py ├── pyproject.toml └── tests ├── __init__.py ├── loaders ├── __init__.py ├── fixtures │ └── payload.json └── test_json_loader.py └── test_import_x.py /.clabot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/import-x/HEAD/.clabot -------------------------------------------------------------------------------- /.coveragerc: -------------------------------------------------------------------------------- 1 | [run] 2 | omit = tests/* 3 | -------------------------------------------------------------------------------- /.deepsource.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/import-x/HEAD/.deepsource.toml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/import-x/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/import-x/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/import-x/HEAD/README.md -------------------------------------------------------------------------------- /import_x/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/import-x/HEAD/import_x/__init__.py -------------------------------------------------------------------------------- /import_x/loaders/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /import_x/loaders/json_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/import-x/HEAD/import_x/loaders/json_loader.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/import-x/HEAD/pyproject.toml -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/loaders/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/loaders/fixtures/payload.json: -------------------------------------------------------------------------------- 1 | {"test": "import_x"} 2 | -------------------------------------------------------------------------------- /tests/loaders/test_json_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/import-x/HEAD/tests/loaders/test_json_loader.py -------------------------------------------------------------------------------- /tests/test_import_x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSourceCorp/import-x/HEAD/tests/test_import_x.py --------------------------------------------------------------------------------