Skip to content

Commit 351cfaa

Browse files
committed
Tutorial video link added
1 parent 4191a10 commit 351cfaa

File tree

8 files changed

+77
-474
lines changed

8 files changed

+77
-474
lines changed

Pipfile

+1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ pyperclip = "*"
1111
streamlit-agraph = "*"
1212
lorem-text = "*"
1313
faker = "*"
14+
streamlit-player = "*"
1415

1516
[dev-packages]
1617

Pipfile.lock

+58-44
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

README.md

+8-8
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
# MOCK GRAPH DATA GENERATOR
22
This is a prototype app for generating mock graph data for [Neo4j](https://neo4j.com/) database instances.
33

4-
<!-- TODO: Add animated gif: 1. Design in Arrows, 2. Mapping options, 3. Uploading to data-importer -->
5-
6-
## Requirements
7-
[Poetry](https://python-poetry.org/) should be installed. Code in this repo uses Poetry for managing dependencies and running a virtual environment.
8-
94
The app uses [Streamlit](https://streamlit.io/) to create and manage the UI interface.
105

116

12-
## Adding new packages
13-
`poetry add <package_name>`
7+
## Recommendations
8+
Connect with a Chromium browser. Known issues when using with Safari, especially with interfacing with arrows and the data-importer.
9+
1410

1511
## Running
1612
Locally
17-
`poetry run streamlit run mock_generators/app.py`
13+
```
14+
pipenv shell
15+
pipenv sync
16+
pipenv run streamlit run mock_generators/app.py
17+
```

mock_generators/app.py

+9-5
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
from tabs.design_tab import design_tab
55
# from tabs.integrated_design_tab import integrated_design_tab
66
from tabs.data_importer import data_importer_tab
7+
from tabs.tutorial import tutorial_tab
78
from config import load_generators
89

910
# TODO: Move this stuff into the config class
@@ -43,23 +44,26 @@
4344

4445
# UI
4546
st.title("Mock Graph Data Generator")
46-
st.markdown("This is a collection of tools to generate mock graph data for [Neo4j](https://neo4j.com) graph databases.")
47+
st.markdown("This is a collection of tools to generate mock graph data for [Neo4j](https://neo4j.com) graph databases. NOTE: Chromium browser recommended for best experience.")
48+
49+
4750

4851
generators = None
4952
imported_file = None
5053

5154
# Streamlit runs from top-to-bottom from tabs 1 through 8. This is essentially one giant single page app. Earlier attempt to use Streamlit's multi-page app functionality resulted in an inconsistent state between pages.
5255

53-
t1, t2, t5 = st.tabs([
56+
t0, t1, t2, t5 = st.tabs([
57+
"⓪ Tutorial",
5458
"① Design",
5559
"② Generate",
5660
"③ Data Importer"
5761
])
58-
# with t0:
59-
# ideate()
62+
63+
with t0:
64+
tutorial_tab()
6065
with t1:
6166
design_tab()
62-
# integrated_design_tab()
6367
with t2:
6468
import_tab()
6569
with t5:

mock_generators/tabs/config_tab.py

-109
This file was deleted.

mock_generators/tabs/design_tab.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
import logging
88
import datetime
99
from models.generator import GeneratorType
10-
import pyperclip
10+
# import pyperclip
1111
import json
1212

1313
def design_tab():

0 commit comments

Comments
 (0)