Initial commit: NRW Dienstplan Generator (Variante 2)
This commit is contained in:
commit
99480bb7ff
10 changed files with 960 additions and 0 deletions
21
.github/copilot-instructions.md
vendored
Normal file
21
.github/copilot-instructions.md
vendored
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
Python project for creating Excel xlsx files with openpyxl library.
|
||||
|
||||
## Project Structure
|
||||
- `src/main.py` - Main script for creating Excel files
|
||||
- `output/` - Directory for generated Excel files
|
||||
- `requirements.txt` - Python dependencies (openpyxl)
|
||||
- `.venv/` - Python virtual environment
|
||||
|
||||
## Setup Instructions
|
||||
1. Virtual environment is already configured
|
||||
2. Dependencies are already installed
|
||||
3. Run the script: `python src/main.py`
|
||||
|
||||
## Usage
|
||||
The main script demonstrates how to:
|
||||
- Create Excel workbooks
|
||||
- Add and format headers
|
||||
- Insert data rows
|
||||
- Apply styling (fonts, colors, alignment)
|
||||
- Adjust column widths
|
||||
- Save files with timestamps
|
||||
Reference in a new issue