gitextract_c3o8axzv/ ├── .github/ │ ├── dependabot.yml │ └── workflows/ │ ├── coverage.yml │ ├── publish-to-pypi.yml │ └── tox.yml ├── .gitignore ├── CHANGELOG.rst ├── LICENSE ├── README.rst ├── examples/ │ ├── inf1990-2004.net │ └── inf2005-2009.net ├── linkpred/ │ ├── __init__.py │ ├── cli.py │ ├── evaluation/ │ │ ├── __init__.py │ │ ├── listeners.py │ │ ├── scoresheet.py │ │ └── static.py │ ├── exceptions.py │ ├── linkpred.py │ ├── network/ │ │ ├── __init__.py │ │ ├── addremove.py │ │ └── algorithms.py │ ├── predictors/ │ │ ├── __init__.py │ │ ├── base.py │ │ ├── eigenvector.py │ │ ├── misc.py │ │ ├── neighbour.py │ │ ├── path.py │ │ └── util.py │ ├── preprocess.py │ └── util.py ├── pyproject.toml ├── pytest.ini ├── tests/ │ ├── __init__.py │ ├── test_addremove.py │ ├── test_cli.py │ ├── test_evaluation_static.py │ ├── test_functional.py │ ├── test_linkpred.py │ ├── test_listeners.py │ ├── test_predictors_base.py │ ├── test_predictors_eigenvector.py │ ├── test_predictors_misc.py │ ├── test_predictors_neighbour.py │ ├── test_predictors_path.py │ ├── test_preprocess.py │ ├── test_scoresheet.py │ ├── test_util.py │ └── utils.py └── tox.ini