script languages on windows mobile - something similar to python @ nokia s60

I try to find something similar to nokia's python for windows mobile based devices - a script interpreter [in this case also able to create standalone apps] with easy access to all phone interfaces - ability to make a phone call, send SMS, make a photo, send a file over GPRS, etc...

While there is 2.5 pythonce available for windows mobile it is pure python interpreter and what I look for are all those "libraries" that nokia's python has like "import camera", "import messaging", ability to control the phone programatically. Also the bluetooth console of nokia python is great.

I do not want to use .NET CF as even there (AFAIK) to control camera you need to use some indirect methods (for example: http://blogs.msdn.com/marcpe/archive/2006/03/03/542941.aspx).

Appreciate any help you can provide, thanks in advance.

I hope there is something I was unable to locate via google.


Asked by: Lenny459 | Posted: 28-01-2022






Answer 1

It sounds as if this is an opportunity for you to develop some C extension modules for the PythonCE project.

Answered by: Lily356 | Posted: 01-03-2022



Answer 2

IronPython?

Answered by: Blake949 | Posted: 01-03-2022



Answer 3

Well there is Mortscript. a widely used scripting for Windows Mobile. Not sure if it can access all the phones functions. I believe there is TCL for Windows Mobile as well.

Answered by: Nicole680 | Posted: 01-03-2022



Similar questions

python - Uses for Dynamic Languages

Closed. This question is opinion-based. It is not c...


java - Linking languages

I asked a question earlier about which language to use for an AI prototype. The consensus seemed to be that if I want it to be fast, I need to use a language like Java or C++, but that Python / Perl / Ruby would be good for the interface bits. So, this leads me on to another question. How easy is it to link these languages togethe...


How do languages such as Python overcome C's Integral data limits?

While doing some random experimentation with a factorial program in C, Python and Scheme. I came across this fact: In C, using 'unsigned long long' data type, the largest factorial I can print is of 65. which is '9223372036854775808' that is 19 digits as specified here. In Python, I ca...


What languages other than Python have an explicit self?

It seems a bit weird that Python requires you to explicitly pass self as the first argument to all class functions. Are there other languages that require something similar?


python - Do all dynamic languages have the circular import issue?

For the following Python code: first.py # first.py from second import Second class First: def __init__(self): print 'Second' second.py # second.py from first import First class Second: def __init__(self): print 'Second' After creating the files and running the following from the shell:...


python - Using other languages with ruby

Is it possible to use multiple languages along side with ruby. For example, I have my application code in Ruby on Rails. I would like to calculate the recommendations and I would like to use python for that. So essentially, python code would get the data and calculate all the stuff and probably get the data from DB, calculate and update the tables.Is it possible and what do you guys think about its adv/disadv Thank...


java - Mapping Languages to Paradigms

I recently read Eric Steven Raymond's article "How To Become A Hacker" and I like his suggestion of learning 5 key languages (he suggests Python, C/C++, Lisp, Java, and Perl) as a way of covering the main programming paradigms in use today. His advice is that it's not so important which specific languages a programmer knows. It's more important to know different approaches to programming, for two reasons.


.net - Which of the languages does Python resemble in its class syntax?

I want to start programming in python and I was wondering, which languages does Python resemble in syntax? I am familiar with .net.


is python as capable as other languages like c++?

i am looking to start learning. people have told me it is juts as capable. though i haven't really seen any good looking games available. some decent ones on pygame, but none really stand out. i would like to know if python really is as capable as other languages. EDIT: thanks guys, is python good for game development?


Does Python classes support events like other languages?

I'm working on my first Python project, and I'm already missing events in my classes. Perhaps it's not even called events in Python, but I would like to create "groups" in my classes to which function references can be added. At some point in my class all function references in my group would execute. Is this built into Python? (I'm using 2.7 at the moment)






Still can't find your answer? Check out these communities...



PySlackers | Full Stack Python | NHS Python | Pythonist Cafe | Hacker Earth | Discord Python



top