Skip to content

btrevizan/pybtree

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

pybtree

docs

pybtree is a package the implements a BTree on-disk.

Installation

$ pip3 install pybtree

Example

from pybtree import BTree

# Open/create a BTree file
btree = BTree('records.btree')

# Insert the key 34 and value 68 associated
btree.insert(34, 68)

# Return 68
btree.search(34)

Docs and stuff

You can find docs, api and examples in here.

About

An on-disk BTree implementation in Python 3.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages