Re: Android APK

2023-01-25 Thread jacob kruger
Beeware is the only one I have tried out: https://beeware.org/ Jacob Kruger +2782 413 4791 "Resistance is futile...but, acceptance is versatile..." On 2023/01/25 22:55, Jules Tillinghast wrote: Is there a good python library for converting python3 to android APK -- https://mail.

Re: Android APK

2023-01-25 Thread Skip Montanaro
> > Is there a good python library for converting python3 to android APK > I'm not an app type of person, so don't watch that space. I've heard of Kivy: https://kivy.org/ I also something called python-for-android on PyPI with a recent release: https://pypi.org/project/

Android APK

2023-01-25 Thread Jules Tillinghast
Is there a good python library for converting python3 to android APK -- Please consider the environment before printing this email.Remember when writing or responding to email, the Massachusetts Secretary of State has determined that e-mail is a public record. All electronic messages sent

Re: Python for Android

2021-07-22 Thread Barry
 > On 19 Jul 2021, at 18:43, Bischoop wrote: > >  > Will Python delevopment apps for Android OS getting easier? > So far best option is Kivy which is not liked by many developers, > another option is PyQT5, which finally gets some support but there still > are some bu

Python for Android

2021-07-19 Thread Bischoop
Will Python delevopment apps for Android OS getting easier? So far best option is Kivy which is not liked by many developers, another option is PyQT5, which finally gets some support but there still are some buts.. Tkinter, some tried but it's still a NO for Android support. --

Re: question about making an App for Android

2019-10-15 Thread Cousin Stanley
Cousin Stanley wrote: > There is also a useful python package > called sunset which I fouund a reference to > on stackoverflow Maybe I'll wake up some time today :-) The python package is called suntime not sunset # pip3 show suntime -- Stanley C. Kitching Human Being Ph

Re: question about making an App for Android

2019-10-15 Thread Cousin Stanley
Cousin Stanley wrote: > > d_sse = sse_sunset - sse_sunrise # seconds of daylight > I think it might be required to convert utc time to local time for the difference in sunrise and sunset times to make sense in local time -- Stanley C. Kitching Human Being Phoenix, A

Re: question about making an App for Android

2019-10-15 Thread Cousin Stanley
atidude and longitude are known sunrise and sunset times are available $ cat daylight_phoenix.py #!/usr/bin/env python3 ''' NewsGroup comp.lang.python Subject .. question about maiking an App for Android Date . 2019-10-10 Post_By ...

Re: question about making an App for Android

2019-10-12 Thread pyotr filipivich
Dennis Lee Bieber on Sat, 12 Oct 2019 12:26:43 -0400 typed in comp.lang.python the following: >On Fri, 11 Oct 2019 20:41:47 -0700, pyotr filipivich >declaimed the following: > > >> I've been hacking around with what needs to be computed. As in >>"okay,the orbits have different speed at dif

Re: question about making an App for Android

2019-10-11 Thread pyotr filipivich
Dennis Lee Bieber on Fri, 11 Oct 2019 20:05:03 -0400 typed in comp.lang.python the following: > >* To support my practically unused 8" SCT {especially in cloudy Michigan}{I >also need to find some sort of battery holders that will fit the fork arms >-- the originals have cracked at the ends and d

Re: question about making an App for Android

2019-10-11 Thread Eli the Bearded
computing the angle of the sun. That sounds like one "hard" input, one easy input, and a bunch of already solved math. >> But getting from the development environment (the desktop) to the >> phone is something I am clueless about. > Getting anything that is not wr

Re: question about making an App for Android

2019-10-11 Thread Akkana Peck
n. > >But getting from the development environment (the desktop) to the > >phone is something I am clueless about. > > Getting anything that is not written in Java onto an Android phone is > likely going to be a pain. You will most likely need an environment that > runs

Re: question about making an App for Android

2019-10-11 Thread pyotr filipivich
Chris Angelico on Fri, 11 Oct 2019 10:43:53 +1100 typed in comp.lang.python the following: >On Fri, Oct 11, 2019 at 10:40 AM pyotr filipivich wrote: >> Chris Angelico on Fri, 11 Oct 2019 09:49:03 +1100 >> typed in comp.lang.python the following: >> >On Fri, Oct 11, 2019 at 9:41 AM Dennis Lee B

Re: question about making an App for Android

2019-10-10 Thread Chris Angelico
On Fri, Oct 11, 2019 at 10:40 AM pyotr filipivich wrote: > > Chris Angelico on Fri, 11 Oct 2019 09:49:03 +1100 > typed in comp.lang.python the following: > >On Fri, Oct 11, 2019 at 9:41 AM Dennis Lee Bieber > >wrote: > >> > >> On Thu, 10 Oct 2019 08:47:07 -0700, pyotr filipivich > >> declaime

Re: question about making an App for Android

2019-10-10 Thread pyotr filipivich
Chris Angelico on Fri, 11 Oct 2019 09:49:03 +1100 typed in comp.lang.python the following: >On Fri, Oct 11, 2019 at 9:41 AM Dennis Lee Bieber >wrote: >> >> On Thu, 10 Oct 2019 08:47:07 -0700, pyotr filipivich >> declaimed the following: >> >"A simple program" to divide the amount of "today's"

Re: question about making an App for Android

2019-10-10 Thread pyotr filipivich
; Chapter 41 The Equation of Time > > > The phone GPS services, if available, may provide the local latitude to >the application. > >>But getting from the development environment (the desktop) to the >>phone is something I am clueless about. >&g

Re: question about making an App for Android

2019-10-10 Thread Chris Angelico
On Fri, Oct 11, 2019 at 9:41 AM Dennis Lee Bieber wrote: > > On Thu, 10 Oct 2019 08:47:07 -0700, pyotr filipivich > declaimed the following: > > > >"A simple program" to divide the amount of "today's" daylight into 12 > >even '"hours", so that Dawn begins the First hour, the third hour is > >mid-

Re: question about making an App for Android

2019-10-10 Thread Michael Torrie
On 10/10/19 9:47 AM, pyotr filipivich wrote: > What I want is a "simple" program to calculate and display the > "natural time", and do so on my phone. > > "A simple program" to divide the amount of "today's" daylight into 12 > even '"hours", so that Dawn begins the First hour, the third hour is >

Re: question about making an App for Android

2019-10-10 Thread Terry Reedy
;, so that Dawn begins the First hour, the third hour is mid-morning, noon is the middle of the day, the ninth hour mid after noon, and the twelfth hour ends at sunset. Is simple, no? {no.} But getting from the development environment (the desktop) to the phone is something I am clueless about.

question about making an App for Android

2019-10-10 Thread pyotr filipivich
What I want is a "simple" program to calculate and display the "natural time", and do so on my phone. "A simple program" to divide the amount of "today's" daylight into 12 even '"hours", so that Dawn begins the First hour, the third hour is mid-morning, noon is the middle of the day, the ninth hou

Re: Transfer Image from Raspberry Pi (Python) to Android app (Java)

2019-07-22 Thread Gregory Ewing
rkartun...@yahoo.com wrote: This code does successfully read in the bytes until there are around 2000-3000 bytes left to be read and then it seems to freeze on the int bytes_read = in.read(msg_buff, 0, msg_buff.length) line. This happens because you're trying to read more bytes than the sender

Transfer Image from Raspberry Pi (Python) to Android app (Java)

2019-07-22 Thread rkartunova--- via Python-list
Hi everyone! I need help transferring an image via TCP from a python program on my raspberry pi to an android application. I have set up a client-server architecture such that my raspberry pi 3 records audio, performs some analysis on it, and then sends the data (via TCP) to the android app to

Re: convert .py to Android ?

2019-05-14 Thread Eli the Bearded
In comp.lang.python, Ben Finney wrote: > "Steve" writes: >> I have a working .py program >> that I want to get into my Android Moto G phone. > To my knowledge, an Android app must be implemented, at some level, in > Java and specifically linked to Androi

Re: convert .py to Android ?

2019-05-14 Thread Ben Finney
"Steve" writes: > I have a working .py program (Do you mean a Python program? Or something different?) > that I want to get into my Android Moto G phone. To my knowledge, an Android app must be implemented, at some level, in Java and specifically linked to Android Java lib

convert .py to Android ?

2019-05-13 Thread Steve
I tried this before and suddenly had a more pressing issue. Now that I want to get back into it, I cannot seem to find the responses that were offered here. I have a working .py program that I want to get into my Android Moto G phone. A bit more than a year ago, I went through the Kivy set up

android development

2019-05-03 Thread togethercomltd
please i want some insight on how to build a file recovery application for android. how do i start aboutit? -- https://mail.python.org/mailman/listinfo/python-list

Python back-end architecture for android application

2018-07-26 Thread praveenkumar beedanal
Hello all, I am new to python language. I am planning to create android application, whose back end will be Python. The work of the android application is to visualize the co2 emission information and production quantity of the each resource plants. I have confusion regarding the back end

Re: Python on Android?

2018-02-21 Thread Chris Angelico
hello, world" app; might not be enough for everything I'd like to do, but core functionality should be there. If anyone has any suggestions, here's the hello world project that I've been playing with: https://github.com/Rosuav/kivy-testing In theory, the command "buildoz

Re: Python on Android?

2018-02-20 Thread Abdur-Rahmaan Janhangeer
unning Python scripts on Android > phones? I have a brother (honestly! I'm not actually using a phone > myself!) who's trying to run one of my scripts in QPython, which > claims to be version 3.2.2. I think that really truly is a Python 3.2 > implementation - probing for newer

Re: Python on Android?

2018-02-20 Thread Chris Angelico
On Wed, Feb 21, 2018 at 4:44 PM, Abdur-Rahmaan Janhangeer wrote: > here is a kivy launcher tutorial i once wrote : > https://wp.me/p7UB6x-kB > Thanks. I'm currently a dozen or so tabs deep into learning Kivy, and am just starting to get to looking into launchers. ChrisA -- https://mail.python.o

Re: Python on Android?

2018-02-20 Thread Abdur-Rahmaan Janhangeer
here is a kivy launcher tutorial i once wrote : https://wp.me/p7UB6x-kB Abdur-Rahmaan Janhangeer https://github.com/Abdur-rahmaanJ On 18 Feb 2018 13:59, "Chris Angelico" wrote: Does anyone have experience with running Python scripts on Android phones? I have a brother (honestl

Re: Python on Android?

2018-02-20 Thread Johannes Findeisen
ico wrote: > > > > > >> Does anyone have experience with running Python scripts on Android > > >> phones? I have a brother (honestly! I'm not actually using a phone > > >> myself!) who's trying to run one of my scripts in QPython, which >

Re: Python on Android?

2018-02-20 Thread Johannes Findeisen
On Tue, 20 Feb 2018 23:12:23 +1100 Chris Angelico wrote: > On Mon, Feb 19, 2018 at 3:57 AM, Johannes Findeisen wrote: > > On Sun, 18 Feb 2018 20:57:02 +1100 > > Chris Angelico wrote: > > > >> Does anyone have experience with running Python scripts on Android

Re: Python on Android?

2018-02-20 Thread Cholo Lennon
On 18/02/18 06:57, Chris Angelico wrote: Does anyone have experience with running Python scripts on Android phones? I have a brother (honestly! I'm not actually using a phone myself!) who's trying to run one of my scripts in QPython, which claims to be version 3.2.2. I think that reall

Re: Python on Android?

2018-02-20 Thread Cholo Lennon
On 20/02/18 11:50, Paul Rubin wrote: Chris Angelico writes: probably means I'm going to have to learn Kivy Is SL4A still around? Maybe it's an alternative. QPython 2 & 3, both have samples that use SL4A. -- Cholo Lennon Bs.As. ARG -- https://mail.python.org/mailman/listinfo/python-list

Re: Python on Android?

2018-02-20 Thread Chris Angelico
On Mon, Feb 19, 2018 at 3:57 AM, Johannes Findeisen wrote: > On Sun, 18 Feb 2018 20:57:02 +1100 > Chris Angelico wrote: > >> Does anyone have experience with running Python scripts on Android >> phones? I have a brother (honestly! I'm not actually using a phone >>

Fwd: Re: Python on Android?

2018-02-18 Thread Abdur-Rahmaan Janhangeer
Abdur-Rahmaan Janhangeer https://github.com/Abdur-rahmaanJ -- Forwarded message -- From: "Abdur-Rahmaan Janhangeer" Date: 18 Feb 2018 14:17 Subject: Re: Python on Android? To: "Chris Angelico" Cc: mailed the developer sometimes back, told me to download a

Re: Python on Android?

2018-02-18 Thread Johannes Findeisen
On Sun, 18 Feb 2018 20:29:02 +0300 Kirill Balunov wrote: > To mention another way to use Python on Android is Termux project > <https://termux.com/>. From their site - Termux is an *Android terminal > emulator and Linux environment app* that works directly with no rooting or >

Re: Python on Android?

2018-02-18 Thread MRAB
On 2018-02-18 09:57, Chris Angelico wrote: Does anyone have experience with running Python scripts on Android phones? I have a brother (honestly! I'm not actually using a phone myself!) who's trying to run one of my scripts in QPython, which claims to be version 3.2.2. I think that re

Re: Python on Android?

2018-02-18 Thread Kirill Balunov
To mention another way to use Python on Android is Termux project <https://termux.com/>. From their site - Termux is an *Android terminal emulator and Linux environment app* that works directly with no rooting or setup required and Python is a side-effect. There are still some restrictions

Re: Python on Android?

2018-02-18 Thread Johannes Findeisen
On Sun, 18 Feb 2018 20:57:02 +1100 Chris Angelico wrote: > Does anyone have experience with running Python scripts on Android > phones? I have a brother (honestly! I'm not actually using a phone > myself!) who's trying to run one of my scripts in QPython, which > claims

Python on Android?

2018-02-18 Thread Chris Angelico
Does anyone have experience with running Python scripts on Android phones? I have a brother (honestly! I'm not actually using a phone myself!) who's trying to run one of my scripts in QPython, which claims to be version 3.2.2. I think that really truly is a Python 3.2 implementation - p

headless python app for android/ios

2017-10-27 Thread Robin Becker
In the past we have developed reportlab applications for use on android/ios devices. We used Kivy for the gui and the kivy setup did allow us to create a working reportlab pdf producer under the kivy gui. It was not exactly easy, but in the end we had a working PDF producer. A possible

Re: Access flles on a Android device from Windows PC (Posting On Python-List Prohibited)

2017-06-09 Thread Fred Fishbin
Lawrence_D?Oliveiro wrote: >On Thursday, June 8, 2017 at 3:41:35 PM UTC+12, Fred Fishbin wrote: >> Yup, that seems to be the deal, and there doesn't seem tpo be a really >>simple >> way to deal with this. > >The preferred way to do file transfers to/from Androi

Re: Access flles on a Android device from Windows PC (Posting On Python-List Prohibited)

2017-06-09 Thread Fred Fishbin
Lawrence_D?Oliveiro wrote: >On Thursday, June 8, 2017 at 3:41:35 PM UTC+12, Fred Fishbin wrote: >> Yup, that seems to be the deal, and there doesn't seem tpo be a really >>simple >> way to deal with this. > >The preferred way to do file transfers to/from Androi

Re: Access flles on a Android device from Windows PC

2017-06-09 Thread Fred Fishbin
Um, no. I *now* understand that USB Mass drive is no longer supported, but it was a legit question. I'd still love if someone could post a code sample, or point me in the direction to a code snippet that would show me how to access the phone. I know it can be done, its just not simple anymore

Re: Access flles on a Android device from Windows PC << YES! Thanks

2017-06-07 Thread Fred Fishbin
Yup, that seems to be the deal, and there doesn't seem tpo be a really simple way to deal with this. ...but at least I know what I need to look for. thanks! Freddie eryk sun wrote: >On Tue, Jun 6, 2017 at 7:36 PM, Fred Fishbin wrote: >> >> I want to write little program that my friend can ru

Re: Access flles on a Android device from Windows PC

2017-06-06 Thread eryk sun
On Tue, Jun 6, 2017 at 7:36 PM, Fred Fishbin wrote: > > I want to write little program that my friend can run - he'll plug a USB drive > into his Windows 7 PC, plug his phone in a USB port on same PC, then run my > program and it'll xfer some audiobook files over for him. > > I plugged the USB dri

Re: Access flles on a Android device from Windows PC

2017-06-06 Thread Gregory Ewing
Fred Fishbin wrote: the phone plugged in and became just "SAMSUNG-SM-G930V", no drive designation, just a Portable Media Device. ... what do I use for a path? It's probably something like \\SAMSUNG-SM-G930V One way to find out is to open it with Windows Explorer and then click up in the

Access flles on a Android device from Windows PC

2017-06-06 Thread Fred Fishbin
Hi I want to write little program that my friend can run - he'll plug a USB drive into his Windows 7 PC, plug his phone in a USB port on same PC, then run my program and it'll xfer some audiobook files over for him. I plugged the USB drive in and it became "G:\", but the phone plugged in and b

Catch Android Exception in Python 2.7.6

2015-10-22 Thread Karina Villanes
Hi everybody, I'm writing an python script test for mobile App (for Android). One of them is to test memory device. I have one test to try to install an APK on device that doesn't have enough memory, so I want to catch this exception: 03:27:35 E/ddms: transfer error: No space left on de

Re: Using Jython for Android development?

2015-06-21 Thread Cecil Westerhof
On Sunday 21 Jun 2015 11:26 CEST, Laura Creighton wrote: > In a message of Sun, 21 Jun 2015 10:14:15 +0200, Cecil Westerhof > writes: >> I have no experience yet with Jython or Android development. But I >> was wondering: would it be possible to write applications for >>

Re: Using Jython for Android development?

2015-06-21 Thread Laura Creighton
In a message of Sun, 21 Jun 2015 10:14:15 +0200, Cecil Westerhof writes: >I have no experience yet with Jython or Android development. But I was >wondering: would it be possible to write applications for Android with >Jython? You normally use Java for it, but I think I would like Jython &

Using Jython for Android development?

2015-06-21 Thread Cecil Westerhof
I have no experience yet with Jython or Android development. But I was wondering: would it be possible to write applications for Android with Jython? You normally use Java for it, but I think I would like Jython more. :-D -- Cecil Westerhof Senior Software Engineer LinkedIn: http

kivy: python on android

2015-01-27 Thread Rustom Mody
Following some posts here I thought I'd try python on android via kivy. Followed the tutorials -- involved a couple of GBs(!!) of downloads using something called buildozer Finally got a hello world running on a phone -- Yay! Now when I try to go from hello world to something a more

Android Native Build Help: python build_ext

2015-01-16 Thread Cyd Haselton
I'm building python on my Android tablet and, while the executable and library builds successfully, I run into a problem when the newly built python runs build_ext; it builds the _struct module and then immediately afterwards my build environment throws an 'undefined reference to dlo

Re: Future of python on android

2014-12-29 Thread Anssi Saari
"Fetchinson ." writes: > So what's the future proof way of writing/deploying/installing python > programs on android? Kivy is it I believe. I've meant to look into it but haven't gotten around to it... -- https://mail.python.org/mailman/listinfo/python-list

Re: Future of python on android

2014-12-26 Thread Fetchinson .
On 12/26/14, iMath wrote: > 在 2014年12月25日星期四UTC+8下午11时31分24秒,Fetchinson .写道: >> Hi all, >> >> I was using sl4a for quite some time on android and it basically >> worked very well although some features are missing. It looks like >> sl4a is dead, altho

Re: Future of python on android

2014-12-26 Thread iMath
在 2014年12月25日星期四UTC+8下午11时31分24秒,Fetchinson .写道: > Hi all, > > I was using sl4a for quite some time on android and it basically > worked very well although some features are missing. It looks like > sl4a is dead, although I could be wrong. Does anyone knowledgeable > have any f

Re: Future of python on android

2014-12-26 Thread Chris Angelico
On Fri, Dec 26, 2014 at 8:42 PM, Fetchinson . wrote: > The best would of course be if the > core developer team of python would bless an android distribution and > keep it up to date just as with the linux/windows/macos python > distribution. I don't know if that will happen th

Re: Future of python on android

2014-12-26 Thread Fetchinson .
ransition. The best would of course be if the core developer team of python would bless an android distribution and keep it up to date just as with the linux/windows/macos python distribution. I don't know if that will happen though. It would make sense because the number of android installa

Re: Future of python on android

2014-12-25 Thread Steven D'Aprano
Fetchinson . wrote: > Guido is still working at google, right? No. Google is still using Python for lots of things, but Guido is now working for Dropbox. https://www.python.org/~guido/ -- Steven -- https://mail.python.org/mailman/listinfo/python-list

Re: Future of python on android

2014-12-25 Thread Fetchinson .
i all, >> >> I was using sl4a for quite some time on android and it basically >> worked very well although some features are missing. It looks like >> sl4a is dead, although I could be wrong. Does anyone knowledgeable >> have any further info on the future of sl4a? For in

Re: Future of python on android

2014-12-25 Thread Billy Earney
, Fetchinson . wrote: > Hi all, > > I was using sl4a for quite some time on android and it basically > worked very well although some features are missing. It looks like > sl4a is dead, although I could be wrong. Does anyone knowledgeable > have any further info on the future of sl4

Future of python on android

2014-12-25 Thread Fetchinson .
Hi all, I was using sl4a for quite some time on android and it basically worked very well although some features are missing. It looks like sl4a is dead, although I could be wrong. Does anyone knowledgeable have any further info on the future of sl4a? For instance it doesn't work with andr

Re: python on android: where to start

2014-11-16 Thread maurog
7;m asking you my question, if I want to develop or run some code with >> python on android, what are the resources to start with? > > PyQt4 or PyQt5 with pyqtdeploy... > > http://pyqt.sourceforge.net/Docs/pyqtdeploy/ > > Phil Thanks to all of you for yoour answers -- https://mail.python.org/mailman/listinfo/python-list

Re: python on android: where to start

2014-11-14 Thread Phil Thompson
On 14/11/2014 2:18 pm, maurog wrote: I looked at the newsgroup, but I didn't find recent infos on this topic. On the other side I went lost by looking for this topic with google. So I'm asking you my question, if I want to develop or run some code with python on android, what are the

Re:python on android: where to start

2014-11-14 Thread Dave Angel
maurog Wrote in message: > I looked at the newsgroup, but I didn't find recent infos on this topic. > On the other side I went lost by looking for this topic with google. So > I'm asking you my question, if I want to develop or run some code with > python on android, wha

Re: python on android: where to start

2014-11-14 Thread Mayank Tripathi
develop or run some code with > python on android, what are the resources to start with? > > Thanks > > mauro > -- > https://mail.python.org/mailman/listinfo/python-list > -- https://mail.python.org/mailman/listinfo/python-list

python on android: where to start

2014-11-14 Thread maurog
I looked at the newsgroup, but I didn't find recent infos on this topic. On the other side I went lost by looking for this topic with google. So I'm asking you my question, if I want to develop or run some code with python on android, what are the resources to start with? Tha

Re: Problem with Android Build [SOLVED]

2014-10-22 Thread Cyd Haselton
On Tue, Oct 21, 2014 at 1:57 PM, Chris Angelico wrote: > On Wed, Oct 22, 2014 at 5:53 AM, Cyd Haselton wrote: > > I forgot to add...I also removed and/or commented out lines referencing > > Modules/pwdmodule.o. > > Sounds like the normal sort of work involved in porting to a new > platform. I've

Re: Problem with Android Build

2014-10-21 Thread Cyd Haselton
On Tue, Oct 21, 2014 at 12:36 PM, Chris Angelico wrote: > On Wed, Oct 22, 2014 at 2:32 AM, Cyd Haselton wrote: >> Hello, >> If I have a problem with building Python on an Android device, would >> this be the list to post it to, or should I post it to python-help or

Re: Problem with Android Build

2014-10-21 Thread Chris Angelico
On Wed, Oct 22, 2014 at 2:32 AM, Cyd Haselton wrote: > Hello, > If I have a problem with building Python on an Android device, would > this be the list to post it to, or should I post it to python-help or > python-dev? Hi! Start here. If we can't help, python-dev might be the

Problem with Android Build

2014-10-21 Thread Cyd Haselton
Hello, If I have a problem with building Python on an Android device, would this be the list to post it to, or should I post it to python-help or python-dev? Thanks! Cyd -- https://mail.python.org/mailman/listinfo/python-list

Re: Python Crypto Singature do not support Android???

2014-09-05 Thread Chris Angelico
On Fri, Sep 5, 2014 at 5:23 PM, Frank Liou wrote: > here is my code > > python : > > msg = '123' > msg = msg.encode('utf-8') > digest = SHA.new(msg).digest() > signature = APP_key_Private.sign(digest, '') That code is incomplete, I can't run it. Ditto your Java code. But what seems to be happenin

Re: Python Crypto Singature do not support Android???

2014-09-05 Thread Frank Liou
'') signature like: (331360957518977045630977695238805536647918381415993574748735382369846464411185614465200440681176208702632880466448650921484169461348176316490985530702996236304709994452069542950422484358331316454332743470132105629096577439312314814238554088472504815623363978006284897433036223490623530076474911740732410,) and android : InputStream inPrivate = getResources().getAssets().open(&qu

Re: Python Crypto Singature do not support Android???

2014-09-05 Thread Chris Angelico
On Fri, Sep 5, 2014 at 5:02 PM, Frank Liou wrote: > I use Privatekey sign a signature by android > > and then send to python > > python can't use public key to verify > > and > > python signature result all is number > > but > > android is number an

Python Crypto Singature do not support Android???

2014-09-05 Thread Frank Liou
I use Privatekey sign a signature by android and then send to python python can't use public key to verify and python signature result all is number but android is number and english words is that no support?? -- https://mail.python.org/mailman/listinfo/python-list

Re: how to write file into my android phone?

2014-08-13 Thread Chris “Kwpolska” Warrick
On Aug 14, 2014 8:11 AM, "alex23" wrote: > > On 10/08/2014 7:08 PM, Chris “Kwpolska” Warrick wrote: >>> >>> 2) the phone isn't necessarily visible on a pc as a drive at all. >>> For example the Samsung gs4. >> >> >> This i

Re: how to write file into my android phone?

2014-08-13 Thread alex23
On 10/08/2014 7:08 PM, Chris “Kwpolska” Warrick wrote: 2) the phone isn't necessarily visible on a pc as a drive at all. For example the Samsung gs4. This is actually true for ALL android devices, starting with Android 3.0. This isn't true for my Samsung gs2 running Android 4.1.2

Re: how to write file into my android phone?

2014-08-12 Thread Grant Edwards
On 2014-08-11, Grant Edwards wrote: > What MTP allows is parallel access between the MTP protocol server in > the phone and the rest of the phone (OS and apps). In order to mount > a partition as a USB mass storage device, it has to first be unmounted > by the Android system. That

Re: how to write file into my android phone?

2014-08-12 Thread Anssi Saari
Chris “Kwpolska” Warrick writes: >> 2) the phone isn't necessarily visible on a pc as a drive at all. >> For example the Samsung gs4. > > This is actually true for ALL android devices, starting with Android 3.0. There was just a guy on comp.mobile.android saying his Andr

Re: how to write file into my android phone?

2014-08-11 Thread Grant Edwards
On 2014-08-10, Marko Rauhamaa wrote: > Christian Gollwitzer : > >> Am 10.08.14 11:39, schrieb Steven D'Aprano: >>> Android phones don't mount as storage devices? >>> Oh well, that's Android crossed off my list. >> >> Not any longer. They us

Re: how to write file into my android phone?

2014-08-10 Thread Marko Rauhamaa
Christian Gollwitzer : > Am 10.08.14 11:39, schrieb Steven D'Aprano: >> Android phones don't mount as storage devices? >> Oh well, that's Android crossed off my list. > > Not any longer. They used to, but the support for mass storage was > dropped in favour

Re: how to write file into my android phone?

2014-08-10 Thread Christian Gollwitzer
Am 10.08.14 11:39, schrieb Steven D'Aprano: Android phones don't mount as storage devices? Oh well, that's Android crossed off my list. Not any longer. They used to, but the support for mass storage was dropped in favour of MTP to allow concurrent access from both the c

Re: how to write file into my android phone?

2014-08-10 Thread Steven D'Aprano
on a pc as a drive at all. >> For example the Samsung gs4. > > This is actually true for ALL android devices, starting with Android 3.0. o_O Android phones don't mount as storage devices? Oh well, that's Android crossed off my list. -- Steven -- https://mail.python.org/mailman/listinfo/python-list

Re: how to write file into my android phone?

2014-08-10 Thread Chris “Kwpolska” Warrick
is is actually true for ALL android devices, starting with Android 3.0. It’s possible that the OP is running an ancient device, or a modern one that appears as a USB drive for some reason (eg. custom ROM from the manufacturer). -- Chris “Kwpolska” Warrick <http://chriswarrick.com/> PGP

Re: how to write file into my android phone?

2014-08-09 Thread Dave Angel
Chris “Kwpolska” Warrick Wrote in message: > On Sat, Aug 9, 2014 at 7:56 PM, luofeiyu wrote: >> When i input usb line with my android phone into the pc , there are two >> disks j: and k: (type :removable disk) displayed in win7. >> >> i can get my android

Re: how to write file into my android phone?

2014-08-09 Thread Chris “Kwpolska” Warrick
On Sat, Aug 9, 2014 at 7:56 PM, luofeiyu wrote: > When i input usb line with my android phone into the pc , there are two > disks j: and k: (type :removable disk) displayed in win7. > > i can get my android phone bluetooth mac address . > > import bluetoot

how to write file into my android phone?

2014-08-08 Thread luofeiyu
When i input usb line with my android phone into the pc , there are two disks j: and k: (type :removable disk) displayed in win7. i can get my android phone bluetooth mac address . import bluetooth nearby_devices = bluetooth.discover_devices(lookup_names = True) for addr, phoneName in

Re: Venus / GuthVenus for iPhone, Nexus, Droid and Android Jelly Bean

2014-03-18 Thread Chris Angelico
On Tue, Mar 18, 2014 at 2:45 PM, Brad Guth wrote: > You may want to revise that manifesto to read 'suffer and pay dearly' > instead of "GOING TO DIE", unless you meant via natural causes. Don't bother responding to Thrinaxodon, it's a spammer. ChrisA -- https://mail.python.org/mailman/listinfo/

Re: Venus / GuthVenus for iPhone, Nexus, Droid and Android Jelly Bean

2014-03-17 Thread Brad Guth
;t be asking too much. Most of modern PhotoZoom and numerous other photographic software variations tend to accomplish this digital enlargement process automatically on the fly, (including iPhone, Safari, Android, Mozilla FireFox, Google Chrome and most other internet browsing forms of imag

Re: Venus / GuthVenus for iPhone, Nexus, Droid and Android Jelly Bean

2014-03-17 Thread Thrinaxodon
hat I've focused upon (roughly one third > > > up from the bottom and roughly center), honestly shouldn't be asking too > > > much. Most of modern PhotoZoom and numerous other photographic software variations tend to accomplish this digital enlargement process automatic

Re: Deamonify my python script on Android

2013-12-23 Thread Ben Finney
Kevin Peterson writes: > I want to daemonify my python script on Android device. That is, it > should be automatically invoked on boot up. Those aren't the same thing. To daemonise a program is independent of whether the program starts automatically; it can start automatically withou

Re: Deamonify my python script on Android

2013-12-23 Thread Larry Martell
On Sun, Dec 22, 2013 at 10:22 PM, Kevin Peterson wrote: > Hi, > > I want to daemonify my python script on Android device. That is, it should be > automatically invoked on boot up. > > Appreciate your help. I don't know anything about Android programming, but for Linux i

Deamonify my python script on Android

2013-12-23 Thread Kevin Peterson
Hi, I want to daemonify my python script on Android device. That is, it should be automatically invoked on boot up. Appreciate your help. Thanks, Kevin Peterson -- https://mail.python.org/mailman/listinfo/python-list

Daemonify my python script on Android

2013-12-22 Thread Kevin Peterson
Hi, I want to daemonify my python script on Android device. That is, it should be automatically invoked on boot up. Appreciate your help. Thanks KP -- https://mail.python.org/mailman/listinfo/python-list

Python and Android: PyImport_ImportModule always returns NULL

2013-11-12 Thread Dominik Weinhold
Hello all together, I have a python and android related issue. I hope that this is no problem because apart from stack overflow, where I also posted this question (but got no answer so far), I think a python mailing-list is the best place to post this question. I am trying to use Python

nexec on Android is ready for Python.

2013-09-25 Thread Tomohiko Sumi
I announce that nexec[1] is ready for Python. nexec is a system to transfer system call requests. You can use applications in an nexec server as same as those in your local machine. nexec is ready for Python now. Furthermore, nexec client for Android is available. These mean that you can use

Microsoft accuses Google of pushing services to Android

2013-04-13 Thread 23alagmy
Microsoft accuses Google of pushing services to Android http://natigtas7ab.blogspot.com/2013/04/microsoft-accuses-google-of-pushing.html -- http://mail.python.org/mailman/listinfo/python-list

  1   2   >