├── .envrc ├── .gitignore ├── README.md ├── data ├── dblp │ ├── .gitattributes │ ├── README.md │ ├── authorship-snippet.nt.gz │ ├── authorship.nt.gz │ └── coauthors.nt.gz └── simple-graphs │ ├── 01-triangle.txt │ ├── 02-empty.txt │ ├── 03-k5.txt │ ├── 04-s5.txt │ ├── 05-random-small.txt │ ├── 06-random-medium.txt │ ├── 07-random-big.txt │ ├── 08-triangle-duplicate.txt │ └── 09-triangle-loop.txt ├── flake.lock ├── flake.nix ├── programs ├── 00-max-out-degree.py ├── 00-min-in-degree.py ├── 01-metis.py ├── 01-triangle-count.py ├── 02-bipartite.py ├── 02-dblp-linked-data-extraction.py └── graphs │ ├── __init__.py │ └── io.py ├── pyproject.toml ├── queries ├── 3.4-nobel-prize.sparql ├── 3.5.0-triangles.sparql └── 3.5.1-triangles.sparql └── uv.lock /.envrc: -------------------------------------------------------------------------------- 1 | use flake 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knowsys/Course-Knowledge-Graphs/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knowsys/Course-Knowledge-Graphs/HEAD/README.md -------------------------------------------------------------------------------- /data/dblp/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knowsys/Course-Knowledge-Graphs/HEAD/data/dblp/.gitattributes -------------------------------------------------------------------------------- /data/dblp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knowsys/Course-Knowledge-Graphs/HEAD/data/dblp/README.md -------------------------------------------------------------------------------- /data/dblp/authorship-snippet.nt.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knowsys/Course-Knowledge-Graphs/HEAD/data/dblp/authorship-snippet.nt.gz -------------------------------------------------------------------------------- /data/dblp/authorship.nt.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knowsys/Course-Knowledge-Graphs/HEAD/data/dblp/authorship.nt.gz -------------------------------------------------------------------------------- /data/dblp/coauthors.nt.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knowsys/Course-Knowledge-Graphs/HEAD/data/dblp/coauthors.nt.gz -------------------------------------------------------------------------------- /data/simple-graphs/01-triangle.txt: -------------------------------------------------------------------------------- 1 | 3 2 | 0 1 3 | 1 2 4 | 2 0 5 | -------------------------------------------------------------------------------- /data/simple-graphs/02-empty.txt: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /data/simple-graphs/03-k5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knowsys/Course-Knowledge-Graphs/HEAD/data/simple-graphs/03-k5.txt -------------------------------------------------------------------------------- /data/simple-graphs/04-s5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knowsys/Course-Knowledge-Graphs/HEAD/data/simple-graphs/04-s5.txt -------------------------------------------------------------------------------- /data/simple-graphs/05-random-small.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knowsys/Course-Knowledge-Graphs/HEAD/data/simple-graphs/05-random-small.txt -------------------------------------------------------------------------------- /data/simple-graphs/06-random-medium.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knowsys/Course-Knowledge-Graphs/HEAD/data/simple-graphs/06-random-medium.txt -------------------------------------------------------------------------------- /data/simple-graphs/07-random-big.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knowsys/Course-Knowledge-Graphs/HEAD/data/simple-graphs/07-random-big.txt -------------------------------------------------------------------------------- /data/simple-graphs/08-triangle-duplicate.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knowsys/Course-Knowledge-Graphs/HEAD/data/simple-graphs/08-triangle-duplicate.txt -------------------------------------------------------------------------------- /data/simple-graphs/09-triangle-loop.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knowsys/Course-Knowledge-Graphs/HEAD/data/simple-graphs/09-triangle-loop.txt -------------------------------------------------------------------------------- /flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knowsys/Course-Knowledge-Graphs/HEAD/flake.lock -------------------------------------------------------------------------------- /flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knowsys/Course-Knowledge-Graphs/HEAD/flake.nix -------------------------------------------------------------------------------- /programs/00-max-out-degree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knowsys/Course-Knowledge-Graphs/HEAD/programs/00-max-out-degree.py -------------------------------------------------------------------------------- /programs/00-min-in-degree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knowsys/Course-Knowledge-Graphs/HEAD/programs/00-min-in-degree.py -------------------------------------------------------------------------------- /programs/01-metis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knowsys/Course-Knowledge-Graphs/HEAD/programs/01-metis.py -------------------------------------------------------------------------------- /programs/01-triangle-count.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knowsys/Course-Knowledge-Graphs/HEAD/programs/01-triangle-count.py -------------------------------------------------------------------------------- /programs/02-bipartite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knowsys/Course-Knowledge-Graphs/HEAD/programs/02-bipartite.py -------------------------------------------------------------------------------- /programs/02-dblp-linked-data-extraction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knowsys/Course-Knowledge-Graphs/HEAD/programs/02-dblp-linked-data-extraction.py -------------------------------------------------------------------------------- /programs/graphs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knowsys/Course-Knowledge-Graphs/HEAD/programs/graphs/__init__.py -------------------------------------------------------------------------------- /programs/graphs/io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knowsys/Course-Knowledge-Graphs/HEAD/programs/graphs/io.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knowsys/Course-Knowledge-Graphs/HEAD/pyproject.toml -------------------------------------------------------------------------------- /queries/3.4-nobel-prize.sparql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knowsys/Course-Knowledge-Graphs/HEAD/queries/3.4-nobel-prize.sparql -------------------------------------------------------------------------------- /queries/3.5.0-triangles.sparql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knowsys/Course-Knowledge-Graphs/HEAD/queries/3.5.0-triangles.sparql -------------------------------------------------------------------------------- /queries/3.5.1-triangles.sparql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knowsys/Course-Knowledge-Graphs/HEAD/queries/3.5.1-triangles.sparql -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knowsys/Course-Knowledge-Graphs/HEAD/uv.lock --------------------------------------------------------------------------------