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
-1
votes
0 answers

I can't see the files I download from Google on pydroid

don't even see the files I download from Google in the pydroid environment on my Android phone! I was going to write a python program to check the vulnerabilities and risks of pdf files, but I don't know why when I open a directory, I can see any…
soms
  • 1
  • 1
-1
votes
0 answers

In pydroid, is there a way to update the python interpreter from version 3.9.7 to version 3.11?

The pydroid interpreter showing python version 3.9.7 On pydroid, the current python version is 3.9.7. However, I have some code I want to run on pydroid that requires version 3.11.0 or better. Is there a command I can use to update the version from…
-1
votes
1 answer

Why does the post endpoint of a flask API not work?

I made a simple flask API that has two endpoints for me to learn how to use flask. First, there is a GET API that randomly outputs a value from a CSV. I have tested this part and it works fine, but the other part is a POST Endpoint that allows you…
-1
votes
1 answer

trying to pip install numpy with pydroid, OSError: Cython needs to be installed in Python as a module

I have pydroid pro. When I tried to install the numpy and cv2 libraries, pip failed and gave me this error (see screenshot) OSError: Cython needs to be installed in Python as a module I tried to install via the terminal and it didn't work either
حمزة
  • 1
  • 1
-1
votes
1 answer

Trying to obtain the resolution of Android device screen

I am trying to find the resolution of an Android device. I have already tried using the win32api as well as ctypes but both are not working on my Android device. I am using PyDroid to code my application.
ed.vcnt
  • 13
  • 3
-1
votes
5 answers

How to import module in pydroid

I'm having problem in importing my created module in pydroid 3. The process seems very simple in desktop version of python 3 but I tried doing it in Mobile in pydroid 3 application, but it does not work. The output was no module named ‘mymodule’…
Seed
  • 1
  • 1
  • 4
-2
votes
1 answer

Why null value also satisfies the if condition of simple while True command and break condition?

My python code Output I have used pydroid3 in my mobile and I couldn't get why null values also satisfies the if condition. I Just pressed the enter button.
1 2 3 4 5 6
7