Metadata-Version: 2.4
Name: ftm-graph
Version: 0.1.0
Summary: Generate a static HTML graph from followthemoney entities
Project-URL: Homepage, https://github.com/stchris/ftm-graph
Author-email: Christian Stefanescu <chris@stchris.net>
License: MIT
License-File: LICENSE
Keywords: followthemoney,graph,network,visualization
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.12
Requires-Dist: jinja2>=3.0
Description-Content-Type: text/markdown

# ftm-graph

Generate a static, offline-enabled .html file with a graph based on a .jsonl file with [followthemoney](https://followthemoney.tech) entities.

## Example usage:

```
$ uvx ftm-graph data.ftm.json output.html
```

Reading data from stdin:

```
$ uvx ftm-random --count 20 --connected --schema Person --schema Company --schema Ownership --schema Associate --schema Directorship | uvx ftm-graph - graph.html
```

Write to a tempfile and open it in the browser:

```
$ uvx ftm-graph testdata/sample.ftm.json --tempfile
```