PAKE is a distributed system for Python source modules installation, discovery and updates.
It is designed to require minimal server configuration and to do everything locally (influence of author's weak and unstable Internet connection).
Each user/developer sets up a node. Then adds some
... [More] alien nodes manually to build initial network. As they wander through the Web-jungle they can find other users' nodes which they may add to their network. Or they can just use node-discovery feature (which is not implemented yet).
To provide security packages must be PGP signed (functionality not implemented yet) - the signatures are stored on nodes alongside the archives. [Less]
The BList is a type that looks, acts, and quacks like a Python list, but has better performance for for modifying large lists.
For small lists (fewer than 128 elements), BLists and the built-in list have very similar performance.
Example usage:
>>> from blist import *
>>>
... [More] x = blist([0]) # x is a BList with one element
>>> x *= 2**29 # x is a BList with > 500 million elements
>>> x.append(5) # append to x
>>> y = x[4:-234234] # Take a 500 million element slice from x
>>> del x[3:1024] # Delete a few thousand elements from x [Less]
Stream your own music collection to all your internet/network enabled devices! CherryMusic is an easy to use standalone music server, that streams the music to any HTML5/Flash capable browser (Android 2.3+, iPhones as well!). No database to setup. Your music is automatically indexed and searchable.
... [More]
You can create and share playlists with friends. Furthermore, CherryMusic can transcode the music on the fly, so you can even listen to just about any format over the wire. [Less]
Pyrser is a toolbox with : A PEG parser, AST rewriting helpers and Type System.
Pyrser is a python module that help you for all parsing job. You could use a EDSL (with here docs) for writing your BNF. But you could also use Python Class to describe your grammar.
Pyrser is available on Pypi
... [More] with documentation here (http://pythonhosted.org/pyrser/).
This toolbox was developed for pedagogic purpose for EPITECH (http://www.epitech.eu). [Less]
This site uses cookies to give you the best possible experience.
By using the site, you consent to our use of cookies.
For more information, please see our
Privacy Policy