├── .gitignore ├── .travis.yml ├── CHANGES.txt ├── LICENCE.TXT ├── MANIFEST.in ├── README.md ├── agamemnon ├── __init__.py ├── cassandra.py ├── delegate.py ├── exceptions.py ├── factory.py ├── graph_constants.py ├── memory.py ├── plugins │ ├── __init__.py │ └── elasticsearch.py ├── primitives.py ├── rdf_store.py └── tests │ ├── __init__.py │ ├── test_config.yml │ ├── test_rdf.py │ └── unit_tests.py ├── bin └── generate_indices ├── docs ├── Makefile ├── arch.rst ├── conf.py ├── index.rst └── usage.rst ├── requirements.txt ├── setup.cfg └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globusonline/agamemnon/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globusonline/agamemnon/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globusonline/agamemnon/HEAD/CHANGES.txt -------------------------------------------------------------------------------- /LICENCE.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globusonline/agamemnon/HEAD/LICENCE.TXT -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | include *.rst *.txt 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globusonline/agamemnon/HEAD/README.md -------------------------------------------------------------------------------- /agamemnon/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globusonline/agamemnon/HEAD/agamemnon/__init__.py -------------------------------------------------------------------------------- /agamemnon/cassandra.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globusonline/agamemnon/HEAD/agamemnon/cassandra.py -------------------------------------------------------------------------------- /agamemnon/delegate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globusonline/agamemnon/HEAD/agamemnon/delegate.py -------------------------------------------------------------------------------- /agamemnon/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globusonline/agamemnon/HEAD/agamemnon/exceptions.py -------------------------------------------------------------------------------- /agamemnon/factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globusonline/agamemnon/HEAD/agamemnon/factory.py -------------------------------------------------------------------------------- /agamemnon/graph_constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globusonline/agamemnon/HEAD/agamemnon/graph_constants.py -------------------------------------------------------------------------------- /agamemnon/memory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globusonline/agamemnon/HEAD/agamemnon/memory.py -------------------------------------------------------------------------------- /agamemnon/plugins/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /agamemnon/plugins/elasticsearch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globusonline/agamemnon/HEAD/agamemnon/plugins/elasticsearch.py -------------------------------------------------------------------------------- /agamemnon/primitives.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globusonline/agamemnon/HEAD/agamemnon/primitives.py -------------------------------------------------------------------------------- /agamemnon/rdf_store.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globusonline/agamemnon/HEAD/agamemnon/rdf_store.py -------------------------------------------------------------------------------- /agamemnon/tests/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /agamemnon/tests/test_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globusonline/agamemnon/HEAD/agamemnon/tests/test_config.yml -------------------------------------------------------------------------------- /agamemnon/tests/test_rdf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globusonline/agamemnon/HEAD/agamemnon/tests/test_rdf.py -------------------------------------------------------------------------------- /agamemnon/tests/unit_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globusonline/agamemnon/HEAD/agamemnon/tests/unit_tests.py -------------------------------------------------------------------------------- /bin/generate_indices: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globusonline/agamemnon/HEAD/bin/generate_indices -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globusonline/agamemnon/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/arch.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globusonline/agamemnon/HEAD/docs/arch.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globusonline/agamemnon/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globusonline/agamemnon/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/usage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globusonline/agamemnon/HEAD/docs/usage.rst -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globusonline/agamemnon/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globusonline/agamemnon/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globusonline/agamemnon/HEAD/setup.py --------------------------------------------------------------------------------