Skip to content

Latest commit

 

History

History
33 lines (23 loc) · 525 Bytes

README.md

File metadata and controls

33 lines (23 loc) · 525 Bytes

Sqlite to Excel

Setup

Clone this project to your computer and install required dependencies

# Windows
python -m venv .venv
.\.venv\Scripts\activate
pip install -r .\requirements.txt

# Mac
python3 -m venv venv
source ./venv/bin/activate
pip install -r ./requirements.txt

Rename .env.example to .env then changes all the variables base on your need

Run project

# Windows
python .\main.py

# Mac
python ./main.py

Build executable binary file

Searching for PyInstaller for details