Questions tagged [pydroid]

Pydroid is a Python environment for Android. There are versions for Python 2 and Python 3.

Pydroid is a Python environment for Android.

There are versions for Python 2 and Python 3.

Code samples are included, as well as samples for the use of different libraries (numpy, matplotlib, kivy, tkinter, ...).

97 questions
0
votes
0 answers

Python kivy wifidroid permission error in pydroid

I try to make a wifi scanner. So, I run this Bellow code in pydroid3. And getting this error. How can I fix it. If you know please tell me how can I make a wifi scanner android app. import kivymd,kivy from wifidroid.wifi import WifiManager wifi =…
0
votes
1 answer

Why howdoi module is not working on Pydroid3

Im using Pydroid3 as editor and compiler. I want to get my doubts clear on the app itself. I have installed howdoi module on the terminal. But when asking a question it shows syntax error. I tried Import howdoi howdoi list comprehension And i got…
Lucifer L
  • 1
  • 1
0
votes
1 answer

How to access postgreSQL database from android mobile using python

I wand to access the postgreSQL database from android using Pydroid3 application in my mobile phone. to access postgreSQL database i need to import psycopg2, but android doesn't support this. can anyone please suggest the way to solve this issue.
0
votes
0 answers

connection error while using requests module in my django project

I was trying to create a django project. Everything was fine until I did a get request using requests.get() in python in my views.py Following is what my views.py have from django.http import HttpResponse from django.shortcuts import render import…
0
votes
2 answers

How Can I fix This Password Generator Code To Print The Desired Result

I'm currently working on v1 of a password generator. I've been working on the visual elements, and now started working on the actual password generation. I've been coding this on my android device using pydroid 3 and tkinter. I made the program to…
0
votes
1 answer

Run Selenium Python script on Android with Pydroid Selendroid

I have to run this Selenium Python script on Android. from selenium import webdriver from selenium.webdriver.chrome.service import Service from selenium.webdriver.common.by import By from selenium.webdriver.chrome.options import…
hermes_44
  • 101
  • 3
  • 9
0
votes
1 answer

It wont draw my rectangle (pygame on prdroid)

The screen wont fill and it says there is no fill cmd for screen, what did I do wrong? import pygame pygame.init() screen = pygame.display set_mode((0, 0)) white = (255, 255, 255) Square =(0, 0, 0) loop = True while loop: …
0
votes
1 answer

Template not found when i run python manage.py runserver on pydriod 3 app

I've been trying to create a blog with django using my phone and so far until yesterday it has been a success. I was creating my home page yesterday and when I run python manage.py runserver it returns a template not found error. What can be the…
Bello Victor
  • 19
  • 1
  • 6
0
votes
1 answer

Automate whatsapp using python

I'm trying to automate whatsapp using python in my android phone. I'm using pydroid 3 ide to do it. From the terminal I installed pywhatkit $ pip install pywhatkit And i logged into whatsapp web from chrome browser. Now I've write the script named…
Malay
  • 1
  • 3
0
votes
1 answer

How can i fix this kernel error in jupyter notebook

Traceback (most recent call last): File "/data/user/0/ru.iiec.pydroid3/files/arm-linux-androideabi/lib/python3.8/site-packages/tornado/web.py", line 1704, in _execute result = await result File…
0
votes
0 answers

Unable to install git in pydroid . Help please

Unable to install git in pydroid /storage/emulated/0 $ pip install git ERROR: Could not find a version that satisfies the requirement git (from versions: none) ERROR: No matching distribution found for git Please help
0
votes
0 answers

I am using pydroid3 and image.show() not working when I'm running it just say program finished

I am using pydroid3 I created a folder and running python in that folder because my photo is in that folder Image.show is not showing anything When I click on run It simply says " program finished from PIL import Image tf =…
0
votes
0 answers

How do I put a .tar.gz typed file in path for python on my pydroid

Step - 1 I've downloaded a webp support of linux for my Android, it is currently in the path :- /storage/emulated/0/Download/libwebp-1.2.0-linux-x86-64.tar.gz Step - 2 I've tried :- python -m pip install…
Santa
  • 1
  • 1
0
votes
1 answer

apt, apt-get, pkg, dpkg, etc, not found in Pydroid3 terminal

In Termux I learnt to use apt and pkg in Termux to install & manage packages. -$ apt install tree -$ apt remove tree -$ pkg install tree -$ pkg uninstall tree -$ pkg install mariadb -$ dpkg, apt-get, etc... Everything worked fine In Pydroid3…
0
votes
2 answers

How to write android applications in python on an android device?

I am currently learning Python as part of my job and was interested in the possibility of creating android applications using what I am learning. Unfortunately I only have access to a computed at work and the system is pretty locked down in that I…