https://github.com/emberfox205/finite-automata-toolkit
Collection of GUI tools to create and interact with finite automata
https://github.com/emberfox205/finite-automata-toolkit
dfa finite-automata graphviz pandas python streamlit
Last synced: 2 months ago
JSON representation
Collection of GUI tools to create and interact with finite automata
- Host: GitHub
- URL: https://github.com/emberfox205/finite-automata-toolkit
- Owner: emberfox205
- License: mit
- Created: 2025-04-26T20:43:28.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-05-02T09:57:42.000Z (about 1 year ago)
- Last Synced: 2025-06-14T12:03:52.910Z (about 1 year ago)
- Topics: dfa, finite-automata, graphviz, pandas, python, streamlit
- Language: Python
- Homepage:
- Size: 15.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# finite-automata-toolkit
[](https://www.python.org/downloads/release/python-3129/)
Collection of GUI tools, built with Streamlit, to create and interact with finite automata.
---
## Installation
### Prerequisites
- [Python 3.12.9](https://www.python.org/downloads/release/python-3129/) or newer
- [Miniconda](https://docs.conda.io/en/latest/miniconda.html) or [Anaconda](https://www.anaconda.com/products/distribution) (optional)
- [Graphviz](https://graphviz.org/download/) (required for visualization)
### Setup Instructions
1. Clone the repository
```bash
git clone https://github.com/emberfox205/finite-automata-toolkit.git
cd finite-automata-toolkit
```
2. Install Graphviz (system dependency)
**On Windows:**
```bash
# Download and install from https://graphviz.org/download/
# Make sure to add Graphviz to your PATH during installation
```
**On macOS:**
```bash
brew install graphviz
```
**On Ubuntu/Debian:**
```bash
sudo apt update
sudo apt install graphviz
```
3. Set up environment (choose one option):
**Option A: Using Python's venv**
```bash
python -m venv venv
# On Windows
venv\Scripts\activate
# On macOS/Linux
source venv/bin/activate
```
**Option B: Using Conda (optional)**
```bash
conda create -n finite-automata python=3.12.9
conda activate finite-automata
```
4. Install required dependencies
```bash
pip install -r requirements.txt
```
5. Run the application
```bash
streamlit run main.py
```