https://github.com/ellisonleao/pybrapp
Python brasil kivy app concept - WIP
https://github.com/ellisonleao/pybrapp
android ios kivy mobile python pythonbrasil
Last synced: 15 days ago
JSON representation
Python brasil kivy app concept - WIP
- Host: GitHub
- URL: https://github.com/ellisonleao/pybrapp
- Owner: ellisonleao
- Archived: true
- Created: 2017-09-10T17:33:29.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2017-10-06T21:19:14.000Z (about 8 years ago)
- Last Synced: 2025-02-08T01:03:08.904Z (8 months ago)
- Topics: android, ios, kivy, mobile, python, pythonbrasil
- Language: Python
- Homepage:
- Size: 2.83 MB
- Stars: 24
- Watchers: 8
- Forks: 12
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Python Brasil Kivy App
======================Python Brasil Mobile App powered by Kivy
## Screenshots
| Initial screen | Menu | Schedule |
| --------------- | ----------------- | ----------------- |
| |  |  |## Installing and running
1. Clone repo
```
git clone https://github.com/ellisonleao/pybrapp.git
```2. Install dependencies (use your prefered method for virtual environments)
```
$ cd pybrapp# first install Cython
$ pip install -U Cython# install remanining dependencies
$ pip install -r requirements.txt
```Disclaimer: This version is also installing `pygame` as the window provider. You can change it to SDL by following [these steps](https://kivy.org/docs/installation/installation-linux.html#dependencies-with-sdl2)
3. Running
```
$ make run
```## Building apk
Note: `buildozer` does not works on virtual environments so you will need to install it on your system.
1. Install Cython 0.25.2
```
$ pip install Cython==0.25.2
```2. Install `buildozer`
```
$ pip install buildozer
```3. Build apk
- for debug
```
$ make apk
```- for release
```
$ make apk_release
```