Python

Python Source Code

Free Python Source Code. Download from a vast collections of free Python source code below. Games are also available like Rock Paper Scissors Game and a lot more.

Safelock 0.5

Submitted by Mohamed Feddad on
Simple drag & drop file encryption tool. based on python and uses PyCrypto to encrypt the inputted files with AES encryption. Then sqlite database file is generated with a unique key to store the encrypted files and folders in binary blobs for later decryption. More info and binaries

USB Resetter 1.0

Submitted by Mohamed Feddad on
USB resetting is the closest equivalent to physically unplugging and re-plugging a USB device. It's written in python, based on PySide for GUI and PyUsb for USB support. How to Run it : (With Python2.7) pip install requirements.txt && python run.py

Python: A Very Simple Guessing Game Dedicated For Beginners

Submitted by razormist on
In this tutorial we will create a very simple Guessing Game Using Python Programming. Python lets you work more quickly than other programming languages.It is very easy to learn syntax emphasizes readability and reduces time consuming in developing. In Python you don't have to worry about a miss semi colon, because it is not necessarily needed in python. So let now start the coding... Getting

Adventure game in Python (Droid Adventure) - Text Based

Submitted by pdan250 on

Okay, i just finished programing a new droid adventure game. I got source codes from internet, pasted them on python, personalized everything, made a few changes in story, and VOILA! Here it is! Droids adventure game! Just copy the source code to your python shell, then run the module. Hope you have fun!

Simple Python Gui Game

Submitted by shering on

A simple python GUI game Softwares: • Install Python 2.3.5, • Install Pygame 1.6 & • LiveWires 2.0 Installations: Unzip the python game folder into local (C:) /python23/ Click on the python icon named game file to start playing. Its easy to play the game check the installations and user manual on the zip file for help. You may also leave a comment for help.

Sudoku Game using python 3.3.4

Submitted by engrmarcel on
#‎using‬ python 3.3.4 to develop sudoku game ‪#‎sudoku‬ game from random import randint ‪#‎generate‬ board def build_board(): board=[] for i in range(9): block=[[" "," "," "], [" "," "," "], [" "," "," "]] board.append(block) return board ## ## Ensure no other block in the same row has the value ## def row_available(block, row, board, num): # Determine which of the main 3 rows this 3x3 block is at