Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/lightbridge-ks/flet-calculator
Test Simple Calculator App using Flet
https://github.com/lightbridge-ks/flet-calculator
flet python-app
Last synced: about 2 months ago
JSON representation
Test Simple Calculator App using Flet
- Host: GitHub
- URL: https://github.com/lightbridge-ks/flet-calculator
- Owner: Lightbridge-KS
- Created: 2024-01-27T18:00:03.000Z (11 months ago)
- Default Branch: main
- Last Pushed: 2024-01-29T21:51:05.000Z (11 months ago)
- Last Synced: 2024-10-12T22:09:12.678Z (3 months ago)
- Topics: flet, python-app
- Language: Python
- Homepage: https://flet-calculator-lightbridge.netlify.app
- Size: 64 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# A Simple Calculator Flet App
An example of a minimal Flet app which is a fork (with minimal modification) from [this calculator app](https://github.com/taaaf11/Calculator).
To run the app:
```shell
flet run
```## Deploy
- **Web App** currently deployed via [Netlify](https://flet-calculator-lightbridge.netlify.app/)
- **Desktop App** in the [release section](https://github.com/Lightbridge-KS/flet-calculator/releases) build by appveyor## Hard lesson in `requirements.txt`
In `requirements.txt` do not include other package that depend on other languages.
I've used this config and fail:
```text
pyinstaller>=5.7.0
pillow==10.2.0
```Using just `flet` works fine.