├── .github ├── release-drafter-config.yml └── workflows │ ├── check-pypi.yml │ ├── integration.yml │ ├── publish-pypi.yml │ └── release-drafter.yml ├── .gitignore ├── LICENSE ├── README.md ├── example ├── Country.csv ├── KNOWS.csv ├── Person.csv └── VISITED.csv ├── example2 └── Robots.csv ├── pyproject.toml ├── redisgraph_bulk_loader ├── __init__.py ├── bulk_insert.py ├── bulk_update.py ├── config.py ├── entity_file.py ├── exceptions.py ├── label.py ├── query_buffer.py └── relation_type.py ├── test ├── __init__.py ├── test_bulk_loader.py ├── test_bulk_update.py ├── test_config.py ├── test_label.py └── test_relation_type.py └── tox.ini /.github/release-drafter-config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisGraph/redisgraph-bulk-loader/HEAD/.github/release-drafter-config.yml -------------------------------------------------------------------------------- /.github/workflows/check-pypi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisGraph/redisgraph-bulk-loader/HEAD/.github/workflows/check-pypi.yml -------------------------------------------------------------------------------- /.github/workflows/integration.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisGraph/redisgraph-bulk-loader/HEAD/.github/workflows/integration.yml -------------------------------------------------------------------------------- /.github/workflows/publish-pypi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisGraph/redisgraph-bulk-loader/HEAD/.github/workflows/publish-pypi.yml -------------------------------------------------------------------------------- /.github/workflows/release-drafter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisGraph/redisgraph-bulk-loader/HEAD/.github/workflows/release-drafter.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisGraph/redisgraph-bulk-loader/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisGraph/redisgraph-bulk-loader/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisGraph/redisgraph-bulk-loader/HEAD/README.md -------------------------------------------------------------------------------- /example/Country.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisGraph/redisgraph-bulk-loader/HEAD/example/Country.csv -------------------------------------------------------------------------------- /example/KNOWS.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisGraph/redisgraph-bulk-loader/HEAD/example/KNOWS.csv -------------------------------------------------------------------------------- /example/Person.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisGraph/redisgraph-bulk-loader/HEAD/example/Person.csv -------------------------------------------------------------------------------- /example/VISITED.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisGraph/redisgraph-bulk-loader/HEAD/example/VISITED.csv -------------------------------------------------------------------------------- /example2/Robots.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisGraph/redisgraph-bulk-loader/HEAD/example2/Robots.csv -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisGraph/redisgraph-bulk-loader/HEAD/pyproject.toml -------------------------------------------------------------------------------- /redisgraph_bulk_loader/__init__.py: -------------------------------------------------------------------------------- 1 | __all__ = [ 2 | "bulk_insert", 3 | ] 4 | -------------------------------------------------------------------------------- /redisgraph_bulk_loader/bulk_insert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisGraph/redisgraph-bulk-loader/HEAD/redisgraph_bulk_loader/bulk_insert.py -------------------------------------------------------------------------------- /redisgraph_bulk_loader/bulk_update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisGraph/redisgraph-bulk-loader/HEAD/redisgraph_bulk_loader/bulk_update.py -------------------------------------------------------------------------------- /redisgraph_bulk_loader/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisGraph/redisgraph-bulk-loader/HEAD/redisgraph_bulk_loader/config.py -------------------------------------------------------------------------------- /redisgraph_bulk_loader/entity_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisGraph/redisgraph-bulk-loader/HEAD/redisgraph_bulk_loader/entity_file.py -------------------------------------------------------------------------------- /redisgraph_bulk_loader/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisGraph/redisgraph-bulk-loader/HEAD/redisgraph_bulk_loader/exceptions.py -------------------------------------------------------------------------------- /redisgraph_bulk_loader/label.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisGraph/redisgraph-bulk-loader/HEAD/redisgraph_bulk_loader/label.py -------------------------------------------------------------------------------- /redisgraph_bulk_loader/query_buffer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisGraph/redisgraph-bulk-loader/HEAD/redisgraph_bulk_loader/query_buffer.py -------------------------------------------------------------------------------- /redisgraph_bulk_loader/relation_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisGraph/redisgraph-bulk-loader/HEAD/redisgraph_bulk_loader/relation_type.py -------------------------------------------------------------------------------- /test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/test_bulk_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisGraph/redisgraph-bulk-loader/HEAD/test/test_bulk_loader.py -------------------------------------------------------------------------------- /test/test_bulk_update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisGraph/redisgraph-bulk-loader/HEAD/test/test_bulk_update.py -------------------------------------------------------------------------------- /test/test_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisGraph/redisgraph-bulk-loader/HEAD/test/test_config.py -------------------------------------------------------------------------------- /test/test_label.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisGraph/redisgraph-bulk-loader/HEAD/test/test_label.py -------------------------------------------------------------------------------- /test/test_relation_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisGraph/redisgraph-bulk-loader/HEAD/test/test_relation_type.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedisGraph/redisgraph-bulk-loader/HEAD/tox.ini --------------------------------------------------------------------------------