Python Programming

Welcome. Please Login, Register, Or Activate! 
type your username and password to login
Date: November 22, 2009, 12:10 AM
430622 members and 297777 Topics
Latest Member: seomov
Nairaland [Nigerian Forum] Home Help Search Who is currently online? Login Register
Nairaland Forum  |  Technology  |  Programming  |  Python Programming
Pages: (1) (2) (3) (4) (5) (6) (7) Go Down Send this topic Notify of replies
Author Topic: Python Programming  (Read 5760 views)
jacob05 (m)
Re: Python Programming
« #192 on: August 23, 2009, 02:44 PM »

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.
t1m1 (m)
Re: Python Programming
« #193 on: August 23, 2009, 07:45 PM »

Quote from: jacob05 on August 23, 2009, 02:44 PM
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.
digitalize (m)
Re: Python Programming
« #194 on: August 23, 2009, 08:30 PM »

All of these are great, 10x guys
jacob05 (m)
Re: Python Programming
« #195 on: August 23, 2009, 08:58 PM »

Still in Progress


* MyGui.jpg (16.7 KB, 435x203 )
jacob05 (m)
Re: Python Programming
« #196 on: August 23, 2009, 09:19 PM »

After Completed. The app Will Generate Two Files:
The Defined Class Name and A Run File.
t1m1 (m)
Re: Python Programming
« #197 on: August 24, 2009, 06:00 PM »

10x Jacob*,
jacob05 (m)
Re: Python Programming
« #198 on: August 25, 2009, 04:03 PM »

Quote from: t1m1 on August 24, 2009, 06:00 PM
10x Jacob*,
You are Welcomed.
Preparing for a Exam .skipping programming for some few days
jacob05 (m)
Re: Python Programming
« #199 on: September 02, 2009, 10:53 AM »

Hi all. Not much has happened here why?
Seun (m)
Re: Python Programming
« #200 on: September 02, 2009, 02:19 PM »

I guess the python world is boring.  There's not much to discuss.  Everything is so easy.
adewaleafolabi (m)
Re: Python Programming
« #201 on: September 08, 2009, 12:55 AM »

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
Seun (m)
Re: Python Programming
« #202 on: September 08, 2009, 12:07 PM »

Quote from: adewaleafolabi on September 08, 2009, 12:55 AM
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*
adewaleafolabi (m)
Re: Python Programming
« #203 on: September 08, 2009, 11:25 PM »

Seun i don't quite understand what you mean
Seun (m)
Re: Python Programming
« #204 on: September 12, 2009, 10:29 PM »

I'm just surprised that you voluntarily chose PHPJava over Python.
adewaleafolabi (m)
Re: Python Programming
« #205 on: September 13, 2009, 02:07 PM »

@seun
i think u meant java instead.
Seun (m)
Re: Python Programming
« #206 on: September 13, 2009, 03:11 PM »

Yes.  Sorry.
webdezzi (m)
Re: Python Programming
« #207 on: September 23, 2009, 01:54 AM »

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 your 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 your resources as modules makes life easier.

am surprised anyone went back to Java
webdezzi (m)
Re: Python Programming
« #208 on: September 23, 2009, 02:07 AM »

@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.
babafish
Re: Python Programming
« #209 on: September 23, 2009, 09:18 PM »

Pls how can i save/convert a word document into pdf file or format.
Its urgent
isaelegbede@yahoo.com
08066707167
jacob05 (m)
Re: Python Programming
« #210 on: September 27, 2009, 06:48 PM »

 
Quote from: webdezzi on September 23, 2009, 02:07 AM
@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.
Good Thinking Man!
jacob05 (m)
Re: Python Programming
« #211 on: September 27, 2009, 06:50 PM »

Love Programming in pyqt it's so easy. but the downside of it is the py to exe size complications.
webdezzi (m)
Re: Python Programming
« #212 on: September 28, 2009, 03:19 PM »

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

Quote
    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
jacob05 (m)
Re: Python Programming
« #213 on: September 28, 2009, 11:18 PM »

This is why i like a bit of C\C++ . Undecided
webdezzi (m)
Re: Python Programming
« #214 on: October 07, 2009, 02:45 PM »

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,

jacob05 (m)
Re: Python Programming
« #215 on: October 22, 2009, 02:05 PM »

lost all My precious files. too bad struggling to recover the files
 I Have A Problem With Raise Event In C#  Ms .net Core - Mcad-mcsd, E-books In .chm Format  Mcts 70-536 Brain Dumps  Page 2
Pages: (1) (2) (3) (4) (5) (6) (7) Go Up Send Topic to Friend by E-mail Reply 


Sections: Autos/Cars (2) Jobs/Vacancies (2) (3) Career Talk Education General(2) Politics Romance Computers Phones Travel
Sports Fashion Health Religion Celebrities TV/Movies (2) Music/Radio (2) Books Webmasters Programming

Links: Page1 Page2 Page3 Page4 Page5 Page6 Page7 Page8 Page9 Page10

Nairaland is owned by Oluwaseun Osewa. See also: Nairalist Classified Ads
Nairaland Forum | Powered by SMF 1.0.12.
© 2001-2005, Lewis Media. All Rights Reserved.