Spaces:
Runtime error
Runtime error
File size: 843 Bytes
22d57c6 2a1cdbf |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 |
---
title: Code To Doc Streamlit
emoji: π
colorFrom: gray
colorTo: red
sdk: streamlit
sdk_version: 1.44.1
app_file: app.py
pinned: false
license: apache-2.0
short_description: doc gen
---
Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
# Code to Project Document Generator
This is a Streamlit app that takes code files and a heading structure, and generates:
- A DOCX project report
- A PPTX presentation
It uses lightweight models like T5 and tools like python-docx and pptx. Deployable on Hugging Face Spaces!
## Usage
1. Upload your code files (Python or React)
2. Upload a `headings.txt` file with your report headings
3. Click Generate
## Output
- `project_report.docx`
- `project_presentation.pptx`
## Run Locally
```bash
pip install -r requirements.txt
streamlit run app.py
```
|