I'm looking for a way to serialize generic Python objects between a CherryPy-based server and a Python client running on a Symbian phone.. Since pyS60 doesn't implement the pickle module, how would you do it?
I know about Cerealizer but it requires…
I'm planning some Symbian related development on S60 3.1 platform. It seems like generally available language options are Python and C++. However Nokia's official forum seems very much tilted towards C++.
I want to know what are the advantages and…
I'm a Python beginner and now it's freakin me out:
L = []
file = urllib.urlopen("http://someurl.com/someText.txt")
line = file.readline()
while line != "" :
L.append(line)
line = file.readline()
appuifw.selection_list(choices=L)
and I get this…
I want to develop pys60 by eric4 IDE. I know that it's so late and has no worth but I need it. The following link:
http://developer.nokia.com/Community/Discussion/showthread.php/173353-Eric-Ide-perfect-IDE-for-Python-PyS60-developmant
describes it…
I want to read a line from serial with Symbian C++ but to do that I have to continue reading into a buffer until I reach "/n". I have no idea how to do this though. This is actually a Python project but I am trying to create a C++ library with with…
I am trying to compile the PyS60USB for Pys60 2.0 with the Symbian Belle Sdk but for some seemingly unrelated reason I am getting the seemingly random errors about almost everything not naming a type, like…
A simple matter makes me suffering as I'm new to PyS60 development.
What is the IDE for
Executing program on-device with a single reasonable amount of clicks,
Typical step-into, step-over, run-to, watch (used from PC) for the on-device running…
i want that upon opening my N73's camera cover,the camera software keeps working as usual,but that it is blocked by a black screen covering the whole screen so that it appears that the camera is not working... I know my requirement is weired but i…
I'm programming a simple pyS60 app, not really done anything with python or using multiple threads before so this is all a bit new to me.
In order to keep the app open, I set an e32.Ao_lock to wait() after the body of the application is initialised,…
I've made a python script which should modify the profile of the phone based on the phone position. Runned under ScriptShell it works great.
The problem is that it hangs, both with the "sis" script runned upon "boot up", as well as without it.
So my…
I have problem with my pys60 code. Problem in this part of code :
def readline():
ch=mySocket.recv(1)
if(ch=='v'):
appuifw.note(u"v", "info")
if(ch=='w'):
appuifw.note(u"w", "info")
if(ch=='x'):
…
I can not get location info from pyS60. It seems the featured API is not activated.
How can I activate this API? Is there any free licensing system?
Or anything so that I can use restricted (or non-free for general developers) APIs at least in my…
I am developing a sms app for symbian using pys60.
I have created a thread for sending the sms but theread is not working.
I want this thread to run in background, irrespective of applicaton closed or not.
contact index is a dictionary with contact…
Hi I have a nokia 5800 phone on which I was doing some pys60 ui programming. I used the below code to create the arrow. In short the draw() will draw the arrow onto the canvas surface. The canvas has redraw_callback and resize_callback hooked up to…