├── .gitignore ├── .travis.yml ├── LICENSE ├── README.rst ├── examples └── example.py ├── pygraph_redis ├── __init__.py └── directed_graph.py ├── run_test.sh ├── setup.py └── tests ├── common_test.py ├── test_attributes.py ├── test_general.py ├── test_partial_removal.py ├── test_perf.py └── test_write_off.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kakwa/pygraph_redis/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kakwa/pygraph_redis/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kakwa/pygraph_redis/HEAD/LICENSE -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kakwa/pygraph_redis/HEAD/README.rst -------------------------------------------------------------------------------- /examples/example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kakwa/pygraph_redis/HEAD/examples/example.py -------------------------------------------------------------------------------- /pygraph_redis/__init__.py: -------------------------------------------------------------------------------- 1 | #empty 2 | -------------------------------------------------------------------------------- /pygraph_redis/directed_graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kakwa/pygraph_redis/HEAD/pygraph_redis/directed_graph.py -------------------------------------------------------------------------------- /run_test.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | cd `dirname $0` 3 | python setup.py test 4 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kakwa/pygraph_redis/HEAD/setup.py -------------------------------------------------------------------------------- /tests/common_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kakwa/pygraph_redis/HEAD/tests/common_test.py -------------------------------------------------------------------------------- /tests/test_attributes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kakwa/pygraph_redis/HEAD/tests/test_attributes.py -------------------------------------------------------------------------------- /tests/test_general.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kakwa/pygraph_redis/HEAD/tests/test_general.py -------------------------------------------------------------------------------- /tests/test_partial_removal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kakwa/pygraph_redis/HEAD/tests/test_partial_removal.py -------------------------------------------------------------------------------- /tests/test_perf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kakwa/pygraph_redis/HEAD/tests/test_perf.py -------------------------------------------------------------------------------- /tests/test_write_off.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kakwa/pygraph_redis/HEAD/tests/test_write_off.py --------------------------------------------------------------------------------