Can desktop applications be developed in python (100% python)
like: media plaer , messenger (skype,yahoo) , browser , device driver
and also can mobile apps be developed
Windows apps in python
Started by arxh, Jul 31 2010 12:30 AM
5 replies to this topic
#1
Posted 31 July 2010 - 12:30 AM
|
|
|
#2
Posted 31 July 2010 - 06:25 AM
If the python runtime is installed, then yes. Any python app you build on Linux will also work on Windows (assuming no Linux-specific calls). Mobile devices are much MUCH less likely to have the python runtime installed, however.
#3
Posted 31 July 2010 - 08:35 AM
hmm...
cant it be compiled..... so that it does not requires any other software/r.e.
like when i install skype i dont need anything else to be installed
cant it be compiled..... so that it does not requires any other software/r.e.
like when i install skype i dont need anything else to be installed
#4
Posted 31 July 2010 - 09:19 AM
It looks like (based on a google search) there are some python compilers for Windows.
#5
Posted 31 July 2010 - 01:19 PM
Yes well they aren't really compilers, but if your final goal is to have a running executable you can.
What happens is that the executable you create links with the Python library which can then run Python code, so it's not compiling, more like distributing Python undercover :)
Plus, you can do it yourself (if you can write C, you can just as I said, include Python.h and call functions to load and run your code).
What happens is that the executable you create links with the Python library which can then run Python code, so it's not compiling, more like distributing Python undercover :)
Plus, you can do it yourself (if you can write C, you can just as I said, include Python.h and call functions to load and run your code).
#6
Posted 08 August 2010 - 02:24 AM
Py2exe creates standalone windows programs by bundling the python runtime and your source files into a single executable.
FrontPage - py2exe.org
There is also Pyinstaller and BBFreeze but I haven't explored those much.
For GUI programming look here:
GuiProgramming - PythonInfo Wiki
I personally suggest PyQt ( PyQt - PythonInfo Wiki )
FrontPage - py2exe.org
There is also Pyinstaller and BBFreeze but I haven't explored those much.
For GUI programming look here:
GuiProgramming - PythonInfo Wiki
I personally suggest PyQt ( PyQt - PythonInfo Wiki )


Sign In
Create Account


Back to top









