Tags : Browse Projects

Select a tag to browse associated projects and drill deeper into the tag cloud.

blist

Compare

  Analyzed about 1 hour ago

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]

13.6K lines of code

0 current contributors

about 10 years since last commit

2 users on Open Hub

Inactive
5.0
 
I Use This

NodeTree

Compare

  No analysis available

NodeTree is an XML stream parsing module for Python Most XML libraries fit into one of two categories; they either parse XML streams with callbacks for each event encountered but leave it to the user to store and organize these events (such as expat or SAX), or they parse the entire XML document ... [More] into memory in one batch and return a handle to the document's root element only after its finished (DOM and ElementTree). While the latter is much easier to work with, it also requires that the entire XML stream be available before any of it can be processed and must load the entire stream into memory, even when only a piece of it needs to be evaluated at a time. With NodeTree we seek a hybrid of these two techniques with a modern, Pythonic API. [Less]

0 lines of code

0 current contributors

0 since last commit

1 users on Open Hub

Activity Not Available
5.0
 
I Use This
Mostly written in language not available
Licenses: lgpl3

Biwako

Compare

  Analyzed 1 day ago

Biwako makes it easy to define, parse, edit, validate and store data in binary formats. Its primary use case is to help you work with file formats defined by other applications, but it's flexible enough to work with any form of binary data and it's simple enough that you can use it to roll your own file formats quickly and easily.

2.2K lines of code

0 current contributors

over 10 years since last commit

1 users on Open Hub

Inactive
0.0
 
I Use This

radon

Compare

  Analyzed about 24 hours ago

Cyclomatic code complexity and raw metrics for Python

3.78K lines of code

7 current contributors

7 months since last commit

1 users on Open Hub

Very Low Activity
5.0
 
I Use This