kivy

File manager with search and sort option for Kivy and Kivymd

File manager with search and sort option for Kivy and Kivymd

while Kivy file manager and KivyMD file manager exist, they lack in their functionality as listed below. Hence the existing KivyMD file manager is customised to have search and sort option to access any file quickly. This post explains the working of the modified file manager. You can download the code of the modified Kivymd […]

File manager with search and sort option for Kivy and Kivymd Read More »

How to convert python code to exe and apk for Linux, Android, Windows, Raspberry Pi and Libre computer

Convert Python code to Exe and APK for Linux, Android, Windows, Raspberry Pi, and Libre computer

Are you looking to convert your Python code or python project to an executable for Linux, Android, Windows, Raspberry Pi or Libre Computer. You have reached the right place. We will convert the python code to executable that will work in all these different operating systems. Why to convert python code to executable When you

Convert Python code to Exe and APK for Linux, Android, Windows, Raspberry Pi, and Libre computer Read More »

Python GUI project - Free Image to PDF converter

Python GUI project – Image to PDF converter

This post has all of a useful Python GUI project with source code and executable. This project can be considered as a Python GUI example. The source code is converted to executable for Linux, Android, Windows, Raspberry Pi pc and Libre Computer. You can use the source code to study this as a python GUI

Python GUI project – Image to PDF converter Read More »

KivyMD recipe for python for android and buildozer

KivyMD recipe for python for android and buildozer

Why this kivyMD recipe After the development of the app in Python, Kivy  and  KivyMD, eventually, you would want to convert the python code to an android app. For this step, you need to add kivyMD as a requirements in Python for android or Buildozer. KivyMD has undergone a major change recently. The kivyMD mentioned

KivyMD recipe for python for android and buildozer Read More »

How to convert python code to an android app in 5 steps

Python to android App in 5 steps

Here are the 5 steps to convert your python code to an android apk Write and test your python code in desktop pc Run the following command p4a apk –private [dir location] –package org.techris.kmd –name “Custom name” –version 24.05.10 –bootstrap sdl2 –requirements python3==3.11.2,kivy,kivymd –sdk-dir [SDK installation location] –ndk-dir [ndk installation location] –android-api 34 –ndk-api 24

Python to android App in 5 steps Read More »

How to solve ModuleNotFoundError: No module named 'setuptools'

How to solve ModuleNotFoundError: No module named ‘setuptools’ with p4a and buildozer

As you are dealing with Python packages, some times you may need to use the setup.py script to build certain packages. But some time, you will face the following error STDOUT: Traceback (most recent call last): File “/home/gk/.local/share/python-for-android/build/other_builds/kivymd/armeabi-v7a__ndk_target_24/kivymd/setup.py”, line 8, in <module> from setuptools import find_packages, setup ModuleNotFoundError: No module named ‘setuptools’ For this example,

How to solve ModuleNotFoundError: No module named ‘setuptools’ with p4a and buildozer Read More »

Different free options to convert the python code to a mobile app

How to convert python code to mobile app for free?

You have completed an idea into a working Python code in desktop PC. If you wonder, whether the same code can be run in a mobile environment which is different in architecture, screen size, interaction method and file system, this post is for you. Here we explain various methods available to convert a python code

How to convert python code to mobile app for free? Read More »

how-to-make-an-android-app-with-python-backend

How to make an android app with python Backend?

Developing an Android app with Python as a backend is absolutely possible. There are primarily two methods to make this into a reality. They are Write Python code and convert it into a android apk Write python code as modules and call the python modules from Java or Kotlin First option can be done by

How to make an android app with python Backend? Read More »

Can you write a code in Python and convert it to an Android app?

Can you write a code in Python and convert it to an Android app?

YES. You can convert the Python code to an Android App. However, this is easier said than done. You need special tools for this conversion as Android does not have python interpreter installed by default. Following frameworks are the tools you need. You can use one of these to convert the python code to an

Can you write a code in Python and convert it to an Android app? Read More »

Scroll to Top