List All Pages
PySnippets is a project created by Erez Shinan. I maintain a programming blog at http://erezsh.wordpress.com This project is still at an early stage, and many things are left to be done. If you you...
This is an A* implementation I wrote in 2007. It's highly customizable: You provide it with a class of methods to define your map/graph. You can get away with implementing just four functions: *...
Name: Erez Shinan E-mail: erez27 at gmail Twitter: http://twitter.com/erezsh
foldunfold Table of Contents Uses Requirements Examples Limitations Future FileDict is a dictionary interface I wrote, that saves and loads its data from a file using keys. Current version uses...
If you are allowed to edit pages in this Site, simply click on edit button at the bottom of the page. This will open an editor. To create a link to a new page, use syntax: [[[new page name]]] or...
Please change this page according to your policy (configure first using Site Manager) and remove this note. Who can join? You can write here who can become a member of this site. Join! So you...
Lru
just a test
This is a priority queue I wrote in 2007. It accepts a priority key, and returns items from larger to smaller. Uses bisect. Complexity add(item) — O(log2 n) remove(item) — O(log2...
Summary: General purpose proxy and wrapper types Home-page: http://cheeseshop.python.org/pypi/ProxyTypes Author: Phillip J. Eby Author-email: moc.anras-ybe|kaep#moc.anras-ybe|kaep License: PSF or...
What is this site? How to add a snippet? Snippets Python Client Recent changes Snippet tags Add a new snippet Site members List all pages Page Tags Site Manager
Members: Moderators Admins
Import any snippet from PySnippets with just one line in your python code (well, two, if you count importing this module) Usage import snippets snippet_name = snippets.get('snippet_name') Now...
Browse About Contact
Not just another snippets site! PySnippets allows you to import online snippets directly from your python code, in one line. It greatly eases sharing, reusing and distributing code...
According to Wikipedia, the world largest wiki site: A Wiki ([ˈwiː.kiː] <wee-kee> or [ˈwɪ.kiː] <wick-ey>) is a type of website that allows users to add, remove, or otherwise edit...
foldunfold Table of Contents Examples Caveats More reading X offers anonymous functions for python which have a short and simple syntax, and can be pickled. X works by "absorbing" operations,...
Unless otherwise stated, the content of this page is licensed under Creative Commons Attribution-ShareAlike 3.0 License