-
Notifications
You must be signed in to change notification settings - Fork 3
Tutorial
Alex Petenchea edited this page Aug 17, 2025
·
2 revisions
This is a demo application was built to showcase how to use python-arango-async
. It is not meant to be a
production-ready app. Instead, it provides a simple way to explore:
- How to connect to an ArangoDB instance using async/await.
- How to manage graphs programmatically: creating, deleting, and listing them.
- How to upload nodes and edges from a small JSON document.
- How to visualize graphs in the browser using Cytoscape.js.
- List existing graphs in your database.
- Upload a new graph by pasting JSON that defines vertices (
_key
) and edges (_from
,_to
). - Visualize the result in the browser.
- Browse the python-arango-async API docs
- Explore ArangoDB’s official documentation.
- Try modifying the demo: add edge labels, delete graphs, or switch layouts.