Projects tagged ‘client’, ‘python’, and ‘server’


[21 total ]

38 Users
   

XBMC media center is a free cross-platform media-player jukebox and entertainment hub. XBMC is open source (GPL) software available for Linux, Mac OS X, Microsoft Windows operating-system, and the ... [More] Xbox game-console. XBMC can play a very complete spectrum of of multimedia formats, and featuring playlist, audio visualizations, slideshow, and weather forecast functions, together with a multitude of third-party plugins. [Less]
Created over 2 years ago.

27 Users
 

XBMC is a multimedia player/jukebox for the Xbox from Microsoft. It can be used to play or view most common video, audio, and picture formats such as MPEG-1/2/4, DivX, XviD, MP3, AAC, JPG, and GIF ... [More] directly from a CD or DVD in the Xbox DVD-ROM drive or from the Xbox hard drive. XBMC can also stream files over a local network or from the Internet. Playlist and slideshow functions, a weather forecast, and many audio visualizations are also included. [Less]
Created over 3 years ago.

3 Users
 

A collection of python scripts for XBMC. This is the home to such scripts as Apple Movie Trailers, Youtube, Xinbox, xStocks, Accuweather and Tetris just to name a few. If you have made a script ... [More] that you would like to commit to this svn contact one of the Project Admins. The offical channel for this project is #xbmc-scripting on Freenode network. Its for code support only, not support how to get a script to work. [Less]
Created over 2 years ago.

2 Users
   

Glorylab is a multiplayer 3D deathmatch game with swords, crossbows, maces and magic in a living labirynth.The world and rules are simple, but their various combinations might be unpredictable.
Created over 3 years ago.

0 Users

Python already has a number of networking libraries, but for simple games the ones in the standard lib seem to be confining, and Twisted seems like overkill. TinyNL aims to be a small (one file) ... [More] , no-nonsense networking libarary that can be used in games. TinyNL is based on a central server and message passing using TCP. UDP is used for server discovery. [Less]
Created 7 months ago.

0 Users

The python-poker-engine is a simple poker engine that supports hand evaluation and comparisons; table/game management; and tournament management. The python-poker-engine uses an event-based system ... [More] to decouple the engine from a particular user interface or networking architecture. We wish to create several different poker clients for homebrew tournaments amongst small groups of players, targeting desktop operating systems and possibly mobile phones (e.g. iphone). [Less]
Created about 1 year ago.

0 Users

This is a web chatroom, the server is written in python, running on GAE, the client is written in ActionScript3, running on flashplayer.
Created 8 months ago.

0 Users

pysqliteserver is sqlite server/client written completely in Python. It has two main parts, server and client. Communication between them is done using socket module and pybon, so in order to run ... [More] pysqliteserver please download and install it. Server example: from pysqliteserver.server import * server = SqliteServer(None, 1024)Client example: from pysqliteserver.client import * con = connect('127.0.0.1', 1024, '', '', database='test1.db') cur = con.cursor() try: cur.execute('create table t1(a, b, c, d);') except Exception, msg: print Exception, msg cur.execute('create table if not exists t1(a, b, c, d);') cur.close() cur = con.cursor() cur.execute('insert into t1(a, b, c, d) values(?, ?, ?, ?);', (10, 20, 30, 40)) cur.execute('insert into t1(a, b, c, d) values(?, ?, ?, ?);', (11, 21, 31, 41)) cur.execute('insert into t1(a, b, c, d) values(?, ?, ?, ?);', (12, 22, 32, 42)) cur.close() cur = con.cursor() cur.executemany('insert into t1(a, b, c, d) values(?, ?, ?, ?);', [(110, 120, 130, 140), (210, 220, 230, 240)]) cur.close() cur = con.cursor() cur.execute('select * from t1;') print 'row:', cur.fetchone() cur.close() cur = con.cursor() cur.execute('select * from t1;') print 'rows:', cur.fetchmany(2) cur.close() cur = con.cursor() cur.execute('select * from t1;') print 'rows:', cur.fetchall(compression='zlib') cur.close() cur = con.cursor() cur.execute('select * from t1;') print 'rows:', cur.fetchall(compression='bz2') cur.close() con.commit() con.close() [Less]
Created 7 months ago.

0 Users

The project is for learning purpose, maybe it will not be useful. Two modes of chatting (with and without server). Two modes of message delivering - XML-RPC calls and socket mode. Internet talk mode in future.
Created about 1 year ago.

0 Users

Ropy was built to allow fellow Python developers to call each others programs on each other's machines with as little fuss as possible. The server itself is just a simple extension of the Python ... [More] BaseHTTPRequestHandler, and must be customised by the person who deploys the server to expose any method he or she likes. GET or POST calls to the server are then routed to those methods, with the parameters fed in as arguments. The main idea is that it is very simple to setup, with just a few lines of code to add your services to the server, and only one line of code to call a service on a remote server. It is not a replacement for more mature products, just a lightweight tool to help Python developers collaborate. [Less]
Created 12 months ago.