Tagged Questions

Python on Symbian Series 60

learn more… | top users | synonyms

10
votes
7answers
1k views

Does anyone have experience with PyS60 mobile development

I am in the position of having to make a technology choice early in a project which is targetted at mobile phones. I saw that there is a python derivative for S60 and wondered whether anyone could ...
9
votes
2answers
819 views

Does PyS60 produce sis files that are native?

I am currently looking at developing a mobile apps for the S60 platform and is specifically looking at PyS60. It seems to suggest that the it can be compiled into native .sis files without the need ...
7
votes
6answers
745 views

How to solve Python memory leak when using urrlib2?

I'm trying to write a simple Python script for my mobile phone to periodically load a web page using urrlib2. In fact I don't really care about the server response, I'd only like to pass some values ...
7
votes
2answers
259 views

Mobile Development barrier to entry

I'm looking at making some mobile apps in my spare time and I want to be able to put them up online for anyone to use (and probably open-source). I've worked with PyS60 a while ago and I really liked ...
6
votes
2answers
185 views

Google Data API on Symbian

I want to use Google Data API on a Symbian device with pys60 but I couldn't find any doc. Is there any way to install Google Data APIs Python Client Library on Symbian ?
4
votes
3answers
143 views

Non blocking python sockets

I'd like to write a small Bluetooth server application to my Nokia phone in PyS60. It needs to be able to send response to the client's request and be able to push data to the client as well. option ...
4
votes
4answers
436 views

closing files properly opened with urllib2.urlopen()

I have following code in a python script try: # send the query request sf = urllib2.urlopen(search_query) search_soup = BeautifulSoup.BeautifulStoneSoup(sf.read()) sf.close() ...
3
votes
2answers
414 views

PyS60 application not going full screen

I am very new to PyS60. I was testing how to set an application to full screen mode but unfortunately, it doesn't work as expected. I tested the script on Nokia 6120 Classic. Here is what I did: ...
3
votes
5answers
328 views

Does the stack limit of Symbian also apply to PyS60?

Symbian has a stack limit of 8kB. Does this also apply to the function calling in PyS60 apps?
3
votes
2answers
253 views

Does PyS60 has a reliable garbage collection?

I have heard it many times that garbage collection in PyS60 is not up to to the mark. This imposes a lot of limits on writing cleaner code. Can I at least rely that the non cyclic references are ...
2
votes
1answer
124 views

How To Deploy PyS60 Apps To The Ovi Store?

I'm developing some PyS60 applications and today I've seen that it's possible to deploy them to the Ovi Store according to the Release Notes(Discussion Thread too): All the Pyds that have zero ...
2
votes
1answer
93 views

Application closes on Nokia E71 when using urllib.urlopen

Im running the following code on my Nokia E71. But after the text input, the program closes abruptly. I have a GPRS connection on my phone,but i still seem to be having some problem with ...
2
votes
1answer
466 views

What Jabber/XMPP libraries are available for PyS60 (Python for Symbian S60) interpreter?

I'm interested in developing a XMPP client on the mobile S60 Symbian platform using the Python interpreter PyS60. I've done a search on Google for possible libraries, but turned up empty. I'm hoping ...
1
vote
1answer
128 views

How to programmatically pair a bluetooth device on Symbian using PyS60?

Is there a way to pair up two BT devices using PyS60? Perhaps there is a system API which prompts PIN and communicate with other device so it will appear as Paired device then. Unfortunately can't ...
1
vote
1answer
320 views

Certificate Error on installing PythonForS60

I am trying to create a small application for Symbian mobile phones using Python. Being a beginner i am having some trouble in setting up the environment for development. I installed Symbian3 ...
1
vote
0answers
113 views

how to cancel incoming message sound on Symbian PyS60

I am writing a parental control app using PyS60 ( on Nokia E72) The app is operated via sms's. Every sms that operates the app is deleted when entering the inbox listener's callback, and by using a ...
1
vote
2answers
374 views

strings in hebrew in python for s60

I'm using python for S60. I want to use string in hebrew, to represent them on the GUI and to send them in SMS message. It seems that the PythonScriptShell don't accept such expressions, for example: ...
1
vote
1answer
198 views

gsm location in python

I have this script file in python running on S60: import location def current_location(): gsm_loc = location.gsm_location() print gsm_loc current_location() instead of printing a tuple of mcc, ...
1
vote
6answers
425 views

PyS60 vs Symbian C++

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 ...
1
vote
5answers
285 views

Simple code but can't find the error (PyS60 but not specific)

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() ...
1
vote
1answer
228 views

PyS60 on device debug?

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, ...
1
vote
1answer
432 views

simple python script to block nokia n73 screen

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 ...
1
vote
1answer
247 views

How to workaround lack of multiple ao.lock?

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() ...
1
vote
4answers
441 views

How to do PyS60 development on OS X

Is it possible to do PyS60 development on Mac OS X? There is an XCode-plugin for Symbian C++ -development, but I don't know whether I can create Python-apps for my Nokia phone with that. I'm talking ...
1
vote
1answer
134 views

Bluetooth obex reception on 3rd edition device fails

I have got a mix of 2nd edition and 3rd edition s60 phones. I start custom obex listener on both phones using Python and try to send files to them. Though I can send files to 2nd edition phone; I ...
1
vote
1answer
898 views

python and symbian - keystroke capture

I'm trying to write a simple prototyping appliaction in python to capture a users keystrokes while writing a text messages (SMS) to collect some stat info for use in a biometric application for ...
1
vote
1answer
855 views

Python for S60: Listen to a socket in sparate thread

I am developing a Bluetooth game in Python for S60 based Nokia devices. The Bluetooth sockets in S60 are proving to be quite tricky. For two reasons: I can't do master to multiple slave sockets in ...
1
vote
6answers
224 views

Clashing guidelines

While coding in Python it's better to code by following the guidelines of PEP8. And while coding for Symbian it's better to follow its coding standards. But when I code for PyS60 which guidelines ...
1
vote
3answers
667 views

is there a way to pickup the lat/lon from Google Map Mobile 3.0(MyLocation Feature) with a python script?

I want to fetch my current lat/lon from google maps mobile 3.0 with the help of some script which i guess could be a python one. Is this possible? and more importantly is the google maps mobile api ...
1
vote
2answers
212 views

Python 2.5 to Python 2.2 converter

I am working on a PyS60 application for S60 2nd Edition devices. I have coded my application logic in Python 2.5. Is there any tool that automates th conversion from Python 2.5 to Python 2.2 or do I ...
1
vote
3answers
471 views

Serializing a Python object to/from a S60 phone

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 ...
0
votes
0answers
22 views

PyS60 Positioning fail N80 & E63

I have a problem getting a "positioning thru networking" script to run on a Nokia N80 & E63. The same code runs fine on a more recent E5. Are there any PyS60 Gurus that can help out? Here's the ...
0
votes
0answers
36 views

python ensymble mergesis not takes uid

I have created pys60 mobile app and added python runtime into my .sis using mergesis of ensymble. But, it says "unable to install protected application", which means that I have to add proper uid ...
0
votes
0answers
20 views

How to embed the run-time SIS file into your application SIS file?

I have created a application using pys60 and I have created .sis for the same using pythonfors60 2.0.0. When I try to install the app in any device, it says as "python runtime missing" It means that ...
0
votes
0answers
37 views

pys60 nokia applications : Python runtime is missing

I have created a application with pys60 and then used python for s60 for created a .sis file for installation. When I install that application on any other mobile, I am getting error as "Python ...
0
votes
0answers
41 views

no fork() method available in pys60

I am building a app in pys60. I want to create a thread which will run in background from application. so that even if application closed, that thread will run. I am trying to use os.fork() but its ...
0
votes
1answer
45 views

pys60 thread not working in symbian python

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 ...
0
votes
0answers
17 views

making a timebar of duration of music using pys60

can someone help me make a timebars just like in music players on pys60 using canvas module? I need it for my filemanager and I have no clue on how to create it on pys60.
0
votes
1answer
49 views

garbage text drawn on screen on tilting

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

How do you access a serial port in Python for mobiles?

The serial port must be over USB cable, from the phone to a computer. In Java, I got it working by using the following code: CommConnection comm = (CommConnection)Connector.open("comm:USB1"); // ...
0
votes
1answer
75 views

Python Newbie: How to create a progressbar with topwindow module that can show the diffrence between two times(minutes)? [closed]

Ive just started learning programming in python esp. Pys60, I was wondering if it was possible in pys60, (I hope people still remember pys60). It would help me a lot to create my app. Please keep the ...
0
votes
0answers
20 views

Pys60 :Introducing audio without causing delay or Ui unresponsiveness

I import the Audio module...and use audio.say() function but the problem is the rest of my program is delayed while the audio.say() is being executed.Is there anyway the audio.say() can work in ...
0
votes
0answers
67 views

PyS60 key events and voice recording

I'm trying to write a PyS60 script (for my N95) that will allow me to record while a button is pressed down, and stop when it is released. I thought this would be quite a simple task but it has proven ...
0
votes
0answers
77 views

Is there any example of use of Python Berkeley DB in S60 Mobile

I am trying to use Berkeley DB in S60 mobile phone using python. I faced a problem in which how to bind the library in my python phone environment. Is there a special version of Berkeley DB to be used ...
0
votes
1answer
81 views

PyS60 : An always running app.. Hanging the Phones UI ? (How to tackle that ?)

I am testing my application in the Python Shell on Symbian S60 Platform. Functionally, the application just runs great on the shell.. but its seems so hang the interface ? Even when : It does not ...
0
votes
0answers
52 views

OpenGL ES question about glVertexPointers

I'm trying to draw a circle with this piece of pyopengl code on my phone: vertices = {} for i in range(0, 1080, 3): vertices[i] = (math.cos(3.14 * i / 180.0)) #x value vertices[i+1] = ...
0
votes
1answer
74 views

Is there a “Back Button” in Python PyS60

What it is I am creating an application on a Nokia mobile phone 5800 series and I was wondering if there was a back button function. It would be better to give an example of what I mean, If I ...
0
votes
1answer
250 views

Connecting pys60 bluetooth console

I'm trying to program using python (pys60) in my phone. i'm using two way to connect my ubuntu 10.10 to my phone using bluetooth console first is: sdptool add --channel=2 SP mknod /dev/rfcomm0 ...
0
votes
0answers
54 views

Navigation bar in application sis dissapears

I made a pys60 app and have multiple tabs in it. When I run through the console, it shows and run perfectly fine but when I convert it into a sis, the navigation bar disappears (it moves up the screen ...
0
votes
1answer
80 views

Extra Python libraries on phone

I have Python installed on my S60 phone...but I require some addtional libraries like pyaudio and lightblue to be installed on my phone...is there a way I can do this? Also where are the Python ...

1 2