Approximate fuzzy subgraph matching in polynomial time
Last updated Jul 17, 2025
22
Stars
4
Forks
3
Issues
0
Stars/day
Attention Score
8
Topics
Language breakdown
No language data available.
▸ Files
click to expand
README
Fornax
Deprecation Notice
This application was deprecated on April 5th 2024, there will be no further dependency or security updates.
Install
Via pip:pip install fornax
Note that Fornax requires numpy to be installed (part of the SciPy ecosystem)
which in turn has non python dependencies.
The available options for installing SciPy packages are listed here.
We recomend installing fornax via anaconda
conda create --name myenv python=3.6
source activate myenv
pip install fornax
Install (Dev)
From the root directory:# install dev dependencies
pip install -r requirements/dev.txt
install fornax
pip install -e .
View the Docs
View the docs at: fornax.readthedocs.ioTest
From the root directorypython run_test.py
Tutorials
See the tutorials for a full working example.- Part 1 - Download a small graph dataset
- Part 2 - Search the dataset using fornax
Install Tutorial Dependencies (using conda)
The following tutorials use jupyter notebooks to create a worked example. We recommend you use the anaconda python distribution to run the notebooks.conda env create -f environment.yml
Run the Tutorials
source activate fornax_tutorial
cd docs/tutorial
jupyter-notebook
Documentation
Build the Docs
# install docs dependencies
pip install -r requirements/docs.txt
install fornax
pip install .
build
cd docs
make html
View the Docs Locally
cd _build/html
python3 -m http.server
navigate to 0.0.0.0:8000 in your browser.🔗 More in this category