notion-graph-view
notion-graph-view copied to clipboard
Generate a roam research like network graph view from your Notion pages.
Once running main.py /notion-graph-view/env/lib/python3.10/site-packages/notion_client/client.py", line 126, in _parse_response raise APIResponseError(response, body["message"], code) notion_client.errors.APIResponseError: Could not find block with ID: **************************. Make sure the relevant pages and databases are shared with...
Graph is generated at: ./graph_out.html Traceback (most recent call last): File "C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.9_3.9.3568.0_x64__qbz5n2kfra8p0\lib\runpy.py", line 197, in _run_module_as_main return _run_code(code, main_globals, None, File "C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.9_3.9.3568.0_x64__qbz5n2kfra8p0\lib\runpy.py", line 87, in _run_code exec(code, run_globals)...
Faced index out of bound issue before, need to handle the empty/null title list case. Below is the updated working version ``` def _add_node(self, block: any, **kwargs): """ :param block:...
I have set up a bunch of relations with the same database. So a page might link to another page on the same database. Graph View doesn't seem to display...
``` Traceback (most recent call last): File "/home/nicolas/.miniconda3/envs/py39/lib/python3.9/runpy.py", line 197, in _run_module_as_main return _run_code(code, main_globals, None, File "/home/nicolas/.miniconda3/envs/py39/lib/python3.9/runpy.py", line 87, in _run_code exec(code, run_globals) File "/home/nicolas/.miniconda3/envs/py39/lib/python3.9/site-packages/notion_graph/__main__.py", line 4, in cli.main()...
Something that I noticed is that generating the graph is really slow, and I'm guessing it's due to having to pull all the pages from Notion API. I have a...