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

How do I stop a script that is running in the background in Qpython3?

I am using Qpython3 on my Android tablet. I have a Python script for a talking alarm clock that I would like to run in the background and then go off at the time the user sets. The problem is, once I set the console running in the background, I…
0
votes
1 answer

Qpython or Qpython3?

I'd like to try Qpython on a Samsung Galaxy Tab 4 running Android 4.4.2. Which would be better, in terms of stability, functionality, supported libraries, etc., Qpython or Qpython3? Or can they be installed side-by-side? Thanks.
David
  • 1
  • 1
  • 2
0
votes
0 answers

QPython console error in Bluestacks emulator

I have installed QPython on my android bluestacks emulator. When I launch the console, I get the following error: u0_a56@klte:/ $ /data/data/com.hipipal.qpyplus/files/bin/qpython.sh "/storage/sdcard/com.hipipal.qpyplus/.run/.last_tmp.py" &&…
jay
  • 1,982
  • 2
  • 24
  • 54
0
votes
2 answers

Kivy on Qpython3 (Android)

How I can use the Kivy framework in Qpython3 (Python 3.2 for android) app? I know that Qpython (Python 2.7 for android) app support this framework. pip_console don't install kivy. I have an error, when I try to install it. Please help me.
0
votes
1 answer

Stdout.write() returns an undesired value in QPython

When I use stdout.write() instead of print(), I get an extra return value. How can I get rid of the extra output after a? Thanks for some advice. >>>from sys import stdout >>>stdout.write('a''\n') a 2
qxliang
  • 1
  • 4
0
votes
1 answer

Scripts won't run on QPython3

I'm trying to run scripts on qpython3, android 5.0.1 and when executing the scripts nothing happens. Even the example scripts that are installed with the app. Interactive mode/running commands in console does work, only scripts don't. What could be…
Ido Wolf
  • 181
  • 1
  • 2
  • 8
0
votes
1 answer

QPython3 on Android read and write txt file

I am writing a little python textbased game on my android phone with qpython3. Now I want to store the highscores in a txt file but I can't find out how I can realize this. I know how I can do it on windows but it doesn't work on android. Hope…
Kevin Kreps
  • 560
  • 6
  • 18
0
votes
1 answer

How do I add a phone number to a contact using Qpython3

Im using Qpython3 on Android 4.2.2. Im currently able to list the latest sms from a particular contact and extract a 10 digit phone number. I want to update a contact's phone number with this number. How should I do this ? To be more precise, I…
Anand
  • 1
  • 1
  • 1
-1
votes
1 answer

Join columns to a table in parallel

Currently I use a function to run an aj join for a single column from a large table on to a smaller table which has its time column shifted t milliseconds ahead, joining on a sym column as well as time. I then compute and programatically name a new…
foam78
  • 264
  • 1
  • 8
-1
votes
2 answers

Python (qpython) socket programming

import socket import sys # creating socket object s = socket.socket(socket.AF_INET, socket.SOCK_STREAM) host = 'www.google.com' port = "80" x = "GET / HTTP/1.1\r\nHost : "+ host + "\n\n" s.connect((host, port) s.send(request.encode()) # the…
-1
votes
1 answer

Qpython dashboard

when I open qpython I cannot see the system or My python folders as described in " Getting started" in the qpython wiki. I have searched in vain for a similar question.
-1
votes
2 answers

How can I delete an sms straight after it is sent on android with SL4A?

I have a small company and I wanted to make a rather simple python3 program that will run on my phone on Qpython3 using SL4A. The purpose of it is to send group SMSs to my customers with offers (whose phone numbers I store in a list) from my…
-2
votes
1 answer

Use the bin binary on a per-ticker basis

For two tables each with datetime and ticker symbol columns, how can we achieve the functionality of the binary function bin within each ticker group. That is, instead of returning the latest index from the entire left-table prior to the time of…
foam78
  • 264
  • 1
  • 8
-2
votes
2 answers

Get list of all apps with QPython / sl4a

Does anyone know how I can get a list of packages from all apps installed on Android using Qpython? My goal is to list all apps and be able to run, using getLaunchableApplications() and the "launch" function until I could open some, but it does not…
1 2 3 4 5
6