Download Shareware and Freeware Software for Windows, Linux, Macintosh, PDA

line Home  |  About Us  |  Link To Us  |  FAQ  |  Contact

Serving Software Downloads in 956 Categories, Downloaded 50.177.920 Times

Python Games freeware
Filter: All | Freeware | Demo
 

Python Games

< 1 2 3 4 5 > 
Added: October 26, 2010 | Visits: 1.747

Games::Mastermind::Solver Games::Mastermind::Solver is a Master Mind puzzle solver. SYNOPSIS # a trivial Mastermind solver use Games::Mastermind; use Games::Mastermind::Solver::BruteForce; my $player = Games::Mastermind::Solver::BruteForce ->new( Games::Mastermind->new ); my $try; print join( ,...



Platforms: *nix

License: Freeware Size: 4.1 KB Download (191): Games::Mastermind::Solver Download

Added: February 27, 2010 | Visits: 691

python-gammu python-gammu are Python bindings for Gammu library. It currently does not support all Gammu features, but range of covered functions is increasing, if you need some specific, feel free to use bug tracking system for feature requests..





Platforms: *nix

License: Freeware Size: 73.73 KB Download (114): python-gammu Download

Added: November 23, 2010 | Visits: 956

pyAwale pyAwale is a pure Python implementation of the Ivory Coast rules for Awale. Awale is a game of great antiquity, and has been played around the world in various forms for millenia. This project is a member of the mancala family of board games.. This server is a central point for development,...


Platforms: *nix

License: Freeware Size: 286.72 KB Download (98): pyAwale Download

Added: March 23, 2010 | Visits: 911

Java Embedded Python Java Embedded Python embeds CPython in Java. It is safe to use in a heavily threaded environment, it is quite fast and its stability is a main feature and goal..


Platforms: *nix

License: Freeware Size: 614.4 KB Download (95): Java Embedded Python Download

Added: March 20, 2010 | Visits: 902

Games::Blackjack Games::Blackjack is a Perl module with Blackjack Utility Classes. SYNOPSIS use Games::Blackjack; # Create new shoe of cards my $shoe = Games::Blackjack::Shoe->new(nof_decks => 4); # Create two hands, player/dealer my $player = Games::Blackjack::Hand->new(shoe => $shoe); my $dealer =...


Platforms: *nix

License: Freeware Size: 6.14 KB Download (102): Games::Blackjack Download

Added: August 26, 2010 | Visits: 1.249

Games::ScottAdams::Tutorial Games::ScottAdams::Tutorial is a Perl module with the Scott Adams Adventure Compiler Tutorial. INTRODUCTION This document walks you through the process of creating a small but complete and playable game with six rooms, seven items including a single treasure, and a couple of puzzles. It...


Platforms: *nix

License: Freeware Size: 49.15 KB Download (127): Games::ScottAdams::Tutorial Download

Added: July 06, 2010 | Visits: 1.217

Games::ScottAdams::Manual Games::ScottAdams::Manual is the Scott Adams Adventure Compiler Reference Manual. SYNOPSIS # foo.sa - definition file for Scott Adams adventure "foo" %room swamp dismal swamp %exit n meadow %exit e edge %exit w grove %item mud Evil smelling mud %getdrop mud %action take mud here...


Platforms: *nix

License: Freeware Size: 49.15 KB Download (100): Games::ScottAdams::Manual Download

Added: April 05, 2010 | Visits: 1.420

Games::Checkers SYNOPSIS # automatical computer-vus-computer play script use Games::Checkers::Constants; use Games::Checkers::Board; use Games::Checkers::BoardTree; my $board = new Games::Checkers::Board; my $color = White; my $numMoves = 0; print $board->dump; while ($board->canColorMove($color)) {...


Platforms: *nix

License: Freeware Size: 286.72 KB Download (124): Games::Checkers Download

Added: March 21, 2010 | Visits: 2.182

Java Games Java Games project is a collection of simple games that are compiled into Java applets and meant to be played online in a Web browser. Currently the collection contains four games: XO World (similar to tic-tac-toe, but with lines of 5 on a 10x10 board); 100 Mack (guess the random combination of...


Platforms: *nix

License: Freeware Size: 133.12 KB Download (596): Java Games Download

Added: June 11, 2010 | Visits: 1.465

python-dvb3 python-dvb3 is Python bindings for the Linux DVB v3 API.. Kamaelia - making concurrency simpler in python - index


Platforms: *nix

License: Freeware Size: 7.17 KB Download (154): python-dvb3 Download

Added: April 27, 2010 | Visits: 906

Games::Object Games::Object is a Perl module to provide a base class for game objects. SYNOPSIS package MyGameObject; use Games::Object; use vars qw(@ISA); @ISA = qw(Games::Object); sub new { # Create object my $proto = shift; my $class = ref($proto) || $proto; my $self = $class->SUPER::new(@_);...


Platforms: *nix

License: Freeware Size: 84.99 KB Download (89): Games::Object Download

Added: November 27, 2010 | Visits: 1.265

Games::Go::SGF2misc::SVG Games::Go::SGF2misc::SVG is a Perl package to simplify SGF game rendering using Image::LibrSVG. SYNOPSIS use Games::Go::SGF2misc::SVG; my $image = new Games::Go::SGF2misc::SVG(imagesize => 3in, boardsize => 19, gobanColor=> white ); $image->drawGoban(); $image->placeStone(b,cd);...


Platforms: *nix

License: Freeware Size: 6.14 KB Download (100): Games::Go::SGF2misc::SVG Download

Added: July 11, 2010 | Visits: 628

pygame Pygame is a set of Python modules designed for writing games. It is written on top of the excellent SDL library. This allows you to create fully featured games and multimedia programs in the python language. Pygame is highly portable and runs on nearly every platform and operating system....


Platforms: *nix

License: Freeware Size: 849.92 KB Download (96): pygame Download

Added: January 24, 2010 | Visits: 1.688

Games::OpenGL::Font::2D Games::OpenGL::Font::2D module can load/render 2D colored bitmap fonts via OpenGL. SYNOPSIS use Games::OpenGL::Font::2D; my $font = Games::OpenGL::Font::2D->new( file => font.bmp ); use SDL::App::FPS; my $app = SDL::App::FPS->new( ... ); # dont forget to change these on resize...


Platforms: *nix

License: Freeware Size: 22.53 KB Download (171): Games::OpenGL::Font::2D Download

Added: May 03, 2010 | Visits: 914

Games::Console Games::Console Perl module provide a 2D quake style in-game console. SYNOPSIS use Games::Console; my $console = Games::Console->new( font => $font_object, background_color => [ 1,1,0], background_alpha => 0.4, text_color => [ 1,1,1 ], text_alpha => 1, speed => 50, # in percent per...


Platforms: *nix

License: Freeware Size: 21.5 KB Download (97): Games::Console Download

Added: September 05, 2010 | Visits: 1.774

Games::Dice Games::Dice is a Perl module that can be used to simulate dice rolls. SYNOPSIS use Games::Dice roll; $strength = roll 3d6+1; use Games::Dice roll_array; @rolls = roll_array 4d8; Games::Dice simulates die rolls. It uses a function-oriented (not object-oriented) interface. No functions...


Platforms: *nix

License: Freeware Size: 4.1 KB Download (99): Games::Dice Download

Added: September 27, 2010 | Visits: 903

Games::Mastermind Games::Mastermind is a simple framework for MasterMind games. SYNOPSIS use Games::Mastermind; # the classic game $mm = Games::Mastermind->new; # make a guess $marks = $game->play(qw( Y C W R )); # results print "You win!n" if $marks->[0] == $mm->holes(); # the game history is...


Platforms: *nix

License: Freeware Size: 14.34 KB Download (105): Games::Mastermind Download

Added: April 15, 2010 | Visits: 1.375

Python CD Python CD is a bootable CD based on Debian GNU/Linux and KNOPPIX. The special thing about it is that it has lots of Python stuff! Installable Python packages In the top level directory of the CD is a directory python/, containing several packages of Python: - Python for Linux - most Linux...


Platforms: *nix

License: Freeware Size: 669.5 MB Download (116): Python CD Download

Added: July 22, 2010 | Visits: 1.300

Extended Python Debugger Extended Python Debugger is a complete debugger for Python than the stock pdb.py debugger. It supports a "restart" command and stack traces that show fewer ?s and give better information for exec statements. Stepping/nexting skips over method/function "defs". It tries to follow gdbs command...


Platforms: *nix

License: Freeware Size: 96.26 KB Download (134): Extended Python Debugger Download

Added: April 19, 2010 | Visits: 1.319

Stanis Python Editor Stanis Python Editor is a python IDE with auto-indentation, auto completion, call tips, syntax coloring, syntax highlighting, uml viewer, class explorer, source index, auto todo list, sticky notes, integrated pycrust shell, python file browser, recent file browser, drag&drop, context help, ......


Platforms: *nix

License: Freeware Size: 11.7 MB Download (102): Stanis Python Editor Download

< 1 2 3 4 5 >