An open API service indexing awesome lists of open source software.

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

Awesome Lists containing this project

README

          

Python Brasil Kivy App
======================

Python Brasil Mobile App powered by Kivy

## Screenshots

| Initial screen | Menu | Schedule |
| --------------- | ----------------- | ----------------- |
| ![](img/ss1.png)| ![](img/ss2.png) | ![](img/ss3.png) |

## 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
```