Welcome, Guest: Register On Nairaland / LOGIN! / Trending / Recent / New
Stats: 3,150,585 members, 7,809,122 topics. Date: Thursday, 25 April 2024 at 11:59 PM

Python Programming - Programming (7) - Nairaland

Nairaland Forum / Science/Technology / Programming / Python Programming (61652 Views)

Anyone That Know Python Programming Should Help Me To Check The Eorr This / Support Python Programming With Android Devices :qpython E.t.c / What Can Python Programming Language Build? (2) (3) (4)

(1) (2) (3) (4) (5) (6) (7) (8) (9) (10) ... (14) (Reply) (Go Down)

Re: Python Programming by jacob05(m): 2:44pm On Aug 23, 2009
PyQt4 with Qt designer. building a gui app called EasyUi2Py which would help compile Qt designer's Ui files to Python extension without using cmd prompt.
Re: Python Programming by t1m1(m): 7:45pm On Aug 23, 2009
jacob05:

PyQt4 with Qt designer. building a gui app called EasyUi2Py which would help compile Qt designer's Ui files to Python  extension without using cmd prompt.
10x Jacob*
cld u sgst urls. I intend to complete an app overnight using just python (hopefully) - if i get up to speed with the PyQt4 thingy i.e wink.

the other way i know is to design the user interface with Delphi and implement core functionalities using Python, but that combo may be clumsy atimes.

10x 1ce agn.
Re: Python Programming by digitalize(m): 8:30pm On Aug 23, 2009
All of these are great, 10x guys
Re: Python Programming by jacob05(m): 8:58pm On Aug 23, 2009
Still in Progress

Re: Python Programming by jacob05(m): 9:19pm On Aug 23, 2009
After Completed. The app Will Generate Two Files:
The Defined Class Name and A Run File.
Re: Python Programming by t1m1(m): 6:00pm On Aug 24, 2009
10x Jacob*,
Re: Python Programming by jacob05(m): 4:03pm On Aug 25, 2009
t1m1:

10x Jacob*,
You are Welcomed.
Preparing for a Exam .skipping programming for some few days
Re: Python Programming by jacob05(m): 10:53am On Sep 02, 2009
Hi all. Not much has happened here why?
Re: Python Programming by Seun(m): 2:19pm On Sep 02, 2009
I guess the python world is boring. There's not much to discuss. Everything is so easy.
Re: Python Programming by adewaleafolabi(m): 12:55am On Sep 08, 2009
Tried python again but i've moved to java now. And java's been fun. I encounter python frequently since i use ubuntu. Most likely i'd still come back to it. But am actually loving java's style
Re: Python Programming by Seun(m): 12:07pm On Sep 08, 2009
adewaleafolabi:

Tried python again but i've moved to java now. And java's been fun. I encounter python frequently since i use ubuntu. Most likely i'd still come back to it. But am actually loving java's style
Voluntarily?  *shudders*
Re: Python Programming by adewaleafolabi(m): 11:25pm On Sep 08, 2009
Seun i don't quite understand what you mean
Re: Python Programming by Seun(m): 10:29pm On Sep 12, 2009
I'm just surprised that you voluntarily chose PHPJava over Python.
Re: Python Programming by adewaleafolabi(m): 2:07pm On Sep 13, 2009
@seun
i think u meant java instead.
Re: Python Programming by Seun(m): 3:11pm On Sep 13, 2009
Yes. Sorry.
Re: Python Programming by Nobody: 1:54am On Sep 23, 2009
if you ever tried python to the extent of building an app with it, trust me, you will start digging a grave for Java.


one cool thing i just discovered is that with py2exe, you can end up with a single exe file that u can save on ur flash drive and run on any windows computer without installing the app on that computer and without python installed on it.

the downside is that the file could be like 20megs depending on the number and sizes of modules used
and the fact that you can save ur resources as modules makes life easier.

am surprised anyone went back to Java
Re: Python Programming by Nobody: 2:07am On Sep 23, 2009
@jacob,

thats good job and good thinking too, i see you importing the os module
and using something like os.system("pyuic4 inputFile.ui >outputFile.py")

you might want to add a resource compiler to it, maybe with a later upgrade.
Re: Python Programming by babafish: 9:18pm On Sep 23, 2009
Pls how can i save/convert a word document into pdf file or format.
Its urgent
isaelegbede@yahoo.com
08066707167
Re: Python Programming by jacob05(m): 6:48pm On Sep 27, 2009
webdezzi:

@jacob,

thats good job and good thinking too, i see you importing the os module
and using something like os.system("pyuic4 inputFile.ui >outputFile.py"wink

you might want to add a resource compiler to it, maybe with a later upgrade.
Good Thinking Man!
Re: Python Programming by jacob05(m): 6:50pm On Sep 27, 2009
Love Programming in pyqt it's so easy. but the downside of it is the py to exe size complications.
Re: Python Programming by Nobody: 3:19pm On Sep 28, 2009
the size depends on the modules u are importing, and i hope you are distributing only the "dist" folder, the build folder is just a temporary folder created during the build process and it is safe to discard it.

20megs is not bad if python is not on the target computer.
and you can ignore or not share the MSVCR71.dll and w9xpopen.exe files

setting the zipfile option to none will create a single executable file which you can run and share easily

from distutils.core import setup
import py2exe, sys, os

sys.argv.append('py2exe')

setup(
options = {'py2exe': {'bundle_files': 1}},
windows = [{'script': "test.py"}],
zipfile = None,
)
http://www.py2exe.org/index.cgi/SingleFileExecutable
Re: Python Programming by jacob05(m): 11:18pm On Sep 28, 2009
This is why i like a bit of C\C++ . undecided
Re: Python Programming by Nobody: 2:45pm On Oct 07, 2009
i still pray i will be able to try c++ before i leave this world, too much to accomplish but tight schedule.
I guess i will need a threading module to be able to do all i intend to do,
Re: Python Programming by jacob05(m): 2:05pm On Oct 22, 2009
lost all My precious files. too bad struggling to recover the files
Re: Python Programming by jacob05(m): 12:56am On Nov 22, 2009
Python and BASIC powerful combination?. Learning basic in kwara poly. Missing darling Python and cheers to all my Pythonic fellows.

1 Like

Re: Python Programming by beefy23(m): 10:32pm On Nov 25, 2009
Guys

you might want to check this link out http://www.web2py.com, it provides an MVC framework for python programming.
Re: Python Programming by jacob05(m): 1:18am On Jan 20, 2010
nice framework!. python on the move
Re: Python Programming by alexis(m): 8:02am On Jan 21, 2010
web2py, cherrypy and django are in my opinion the top web frameworks for python
Re: Python Programming by jacob05(m): 8:29am On Apr 20, 2010
Learn Python.And be forever happy with your programming career. Hi all. Longest time.
Re: Python Programming by Klacickizo: 12:44am On May 27, 2010
python d best i have cum 2 knw
Re: Python Programming by jacob05(m): 10:03pm On May 27, 2010
@kla same here. any code or app to share?
Re: Python Programming by kodion: 3:48pm On Jun 03, 2010
FYI -NITDA is supporting the Nigerian stop of the Python Africa Tour as the first of a series of training workshops. The 5-day software development workshop in the use of Python programming language will have volunteer python experts from across Africa and Europe in attendance to deliver training, programming workshops, and presentations in a BarCamp.

The event is targeted at beginner to intermediate levels and will be broken into 2 groups so those with some experience can come with projects in progress or ideas they want to discuss or work on.

More info at http://python.org.ng/pat/workshop

(1) (2) (3) (4) (5) (6) (7) (8) (9) (10) ... (14) (Reply)

Meet Emmanuella Mayaki: Hired By A School In The UK As Coding Instructor / Build A JAMB Result Checking Website To Win 150,000 Naira / Meet Dare Obasanjo Who Works With Microsoft

(Go Up)

Sections: politics (1) business autos (1) jobs (1) career education (1) romance computers phones travel sports fashion health
religion celebs tv-movies music-radio literature webmasters programming techmarket

Links: (1) (2) (3) (4) (5) (6) (7) (8) (9) (10)

Nairaland - Copyright © 2005 - 2024 Oluwaseun Osewa. All rights reserved. See How To Advertise. 22
Disclaimer: Every Nairaland member is solely responsible for anything that he/she posts or uploads on Nairaland.