Questions tagged [qpython3]

QPython3 is a port of Python3 for android. It can run Python3 applications on android devices like mobile or tablet.

QPython3 is a port of Python3 for android. It can run Python3 applications on android devices like mobile or tablet.

89 questions
1
vote
0 answers

I got error while using SSL on Qpython (android)

I have project, where I need control of values, if value is there it send my e-mail. On Win10 work great, but on my old tablet Nexus2013 second generation not workinkg. There I have app: QPython OL and when I run my code, show this error…
1
vote
1 answer

Return KDB query to a pandas dataframe

I would like to extract data from a KDB database and place into a dataframe. My query runs fine in qpad, no issues; just need to write it into my Pandas dataframe. My code: from qpython import qconnection # Create the connection and save the handle…
Peter Lucas
  • 1,979
  • 1
  • 16
  • 27
1
vote
0 answers

Is there a way to send multipart SMS message which is longer than 160 character with Qpython?

I'm making a SMS robot for my phone that sends delivery time for customers. And the message is over 160 characters. I successfully sent messages with less than 160 characters with Qpython. But I have not found a way to send multipart SMS. This is…
Roger
  • 11
  • 1
1
vote
1 answer

How to intent python?

I'm using QPython3 on my Android, but I have no idea how to intent code. I have tried using d.startActivity('android.intent.action.MAIN') But I might be implementing it wrong. My code right now: question = input("Say a number: ") answer =…
user11119833
  • 17
  • 1
  • 3
1
vote
1 answer

PermissionError when closing xlsxwriter Workbook in QPython despite having permissions

I do have permission to write to a specific directory, and the file gets created too. But the line w.close() causes the error. Since I'm using this module to create the file, it isn't open in any other application. If it's relevant, other modules…
1
vote
0 answers

QPython Android PySpeedTest

I installed this module PySpeedTest on the QPython on Androidenter code here and tried running the below code import pyspeedtest st = pyspeedtest.SpeedTest() ping = st.ping() download = st.download() upload = st.upload() print('ping: ' +…
TheICQ
  • 19
  • 4
1
vote
1 answer

QPython3 on Android 7.1 - Can not install packages using pip

I am trying to run a python code on my Android 7.1 mobile using QPython3 app. I clicked on the "Menu" tab and then "Run script" option. Out of many programs, I opened "pip_console.py" and typed pip install pandas This gives me error…
Sanket
  • 119
  • 1
  • 6
  • 15
1
vote
2 answers

What would be a more pythonic way of constructing this command and running it

os.system(sys.executable+" "+sys.prefix+"/bin/"+arg) This is part of the pip console app that comes with qpython for android
Ricky Wilson
  • 3,187
  • 4
  • 24
  • 29
1
vote
1 answer

How to install Kivent in qpython?

Is it possible to install kivent in qpython for Android? Kivy is installed but I can't seem to find a way to install kivent
Madworks
  • 31
  • 5
1
vote
2 answers

QPython cannot install requests module

Trying to install the requests module on QPython 3 using pip install requests gives me this error pip.log What is the cause of this error and how can it be resolved?
Amith KK
  • 555
  • 2
  • 8
  • 20
1
vote
4 answers

QPython prompts "Press enter to exit" after running script. How to interact with console instead?

When I run any script in QPython, it runs in a console then I get prompted "Press enter to exit", but I want to interact with my just-run script instead of exiting. Is there any configuration option to control this behavior? Does it have anything to…
1
vote
1 answer

qpython paramiko (or any other SSH python module) install

Recently I got qpython on my android device to program python on android. I would like to connect to a SSH server from it using paramiko. However, when i try pip install paramiko from the pip console program i get the…
Tech Planet
  • 31
  • 1
  • 5
1
vote
0 answers

qpython3, no codec search functions registered

Recently tried installing qpython3 on my nexus 5x. Every time I try running anything I get a fatal python error "no code search functions registered". Based on everything I've seen about qpython and qpython3 I thought I'd be able to just install and…
Mr. DROP TABLE
  • 334
  • 2
  • 9
1
vote
1 answer

Qpython3, sqlite3 can't connect to database

I'm beginner and I just try qpython for android. I try to connect database at qpython3 by using sqlite3: My code import sqlite3 conn=sqlite3.connect('mydatabase.db') But it raises error and unable to open database file. Any solution for this?? If I…
1
vote
0 answers

Kivy in Qpython on Android device

Mr Nooby Gonzales here Using Qpython3 on Android, trying to import Kivy module. Tried running the basic hello world program in snippets3 folder: #-*-coding:utf8;-*- #qpy:2 #qpy:kivy from kivy.app import App from kivy.uix.button import…