Metadata-Version: 2.4
Name: streamlit-sigmajs
Version: 0.1.0
Summary: Add your description here
Home-page: 
Author: John Smith
Author-email: john@example.com
Project-URL: Homepage, https://github.com/yourusername/my-package
Project-URL: Repository, https://github.com/yourusername/my-package
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: streamlit>=1.50.0
Dynamic: author
Dynamic: author-email
Dynamic: license-file
Dynamic: requires-python

# st-sigma

Streamlit component that allows you visualize interactive graphs using sigma.js.

## Installation instructions

Activate your uv venv, then run:

```sh
pip install -e .
```

To build your frontend code, run the following commands from the `st_sigma/frontend` directory:

```sh
npm install
npm run build
```

To run in development mode with hot-reloading, in the `st_sigma/frontend` directory, run:

```sh
npm install
npm run start
```

To start your streamlit app, in the `st_sigma` directory, run:

```sh
uv pip install streamlit neo4j
streamlit run example_app.py
```

## Usage instructions

```python
import streamlit as st
from st_sigma import st_sigmagraph, neo4jgraph_to_sigma

import neo4j
from neo4j import GraphDatabase

NEO4J_URI = "bolt://localhost:7677"
NEO4J_USER = "neo4j"
NEO4J_PASSWORD = "your_password"

def query_neo4j_graph(query):
    
    with GraphDatabase.driver(NEO4J_URI, auth=(NEO4J_USER, NEO4J_PASSWORD)) as driver:
        result = driver.execute_query( query, result_transformer_ = neo4j.Result.graph )
        
        return result


query = st.text_area(
    "Enter Cypher Query",
    value="MATCH (n)-[r]->(m) RETURN n, r, m LIMIT 4",
    height=100
)

st.subheader("Component with variable args")


height = st.slider("Graph Height", min_value=200, max_value=800, value=600, step=50)


if st.button("Visualize Graph"):
    try:
        with st.spinner("Querying Neo4j..."):
            result = query_neo4j_graph(query)
            result = neo4jgraph_to_sigma(result)
            
            if not result["nodes"]:
                st.warning("No nodes found in the query result.")
            else:
                st.success(f"Found {len(result['nodes'])} nodes and {len(result['relationships'])} relationships")
                
                st_sigmagraph(
                    graphData=result,
                    height=height,
                    key="neo4j_graph"
                )
    except Exception as e:
        st.error(f"Error: {str(e)}")
```
