Showing posts with label python. Show all posts
Showing posts with label python. Show all posts

Friday, August 3, 2012

quick easy tutorial to use cx_freeze

first we install cx_freeze
then we make setup.py file
we write this code in it :

Thursday, August 2, 2012

download medcker "memo md5 cracker 3"


you can download pyc files and can run them if you installed python and PyQt4 .
or you can download exe .

Sunday, June 24, 2012

python itertools.product how to start from specified index? and make your own generator function?

ok now i was wondering if am gonna use itertools.product but i want it to start from a specific string i mean if we had itertools.product("abcd") it will give you "a","b","c","d"... so what if i wanted to start from "b"??

Sunday, June 17, 2012

PyQt how to send signals from Qthread to change the GUI from the main thread?

ok now i'v been searching alot until i have finally understood how QThread works with signals to change the GUI from the main thread and actually it is pretty easy and simple.....

Sunday, June 3, 2012

python docs pdf

here is all python docs in a pdf file called library.pdf
you can download it from here
4shared

Saturday, May 26, 2012

PyQt GUI FREEZE while loops!

well that because your app has not time to update the gui so you need to use
time.sleep function
 and QtGui.Application.processEvents function....