Giter VIP home page Giter VIP logo

pymtbl's Introduction

pymtbl: Python bindings for the mtbl sorted string table library

pymtbl provides a simple Pythonic wrapper for mtbl's reader, writer, sorter, and merger interfaces. The examples/ directory contains scripts demonstrating each of these interfaces. The following transcript shows the basic reader and writer interfaces:

>>> import mtbl
>>> w = mtbl.writer('example.mtbl', compression=mtbl.COMPRESSION_SNAPPY)
>>> w['key1'] = 'val1'
>>> w['key17'] = 'val17'
>>> w['key2'] = 'val2'
>>> w['key23'] = 'val23'
>>> w['key3'] = 'val3'
>>> w['key4'] = 'val4'
>>> w['key05'] = 'val05'
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "mtbl.pyx", line 361, in mtbl.writer.__setitem__ (mtbl.c:4108)
mtbl.KeyOrderError
>>> w.close()
>>> r = mtbl.reader('example.mtbl', verify_checksums=True)
>>> for k,v in r.get_range('key19', 'key23'): print k,v
... 
key2 val2
key23 val23
>>> for k,v in r.get_prefix('key2'): print k,v
... 
key2 val2
key23 val23
>>> for k,v in r.iteritems(): print k, v
... 
key1 val1
key17 val17
key2 val2
key23 val23
key3 val3
key4 val4
>>>

pymtbl's People

Contributors

edmonds avatar hstern avatar massar avatar rep avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.