Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.python.announce > #1243

ANN: BlitzDB 0.1 - Embedabble, document-oriented database written entirely in Python

Path csiph.com!newsfeed.hal-mli.net!feeder3.hal-mli.net!newsfeed.hal-mli.net!feeder1.hal-mli.net!newsfeed.xs4all.nl!newsfeed2.news.xs4all.nl!xs4all!newsgate.cistron.nl!newsgate.news.xs4all.nl!post.news.xs4all.nl!not-for-mail
Return-Path <andreas.d@posteo.de>
X-Original-To python-announce-list@python.org
Delivered-To python-announce-list@mail.python.org
X-Spam-Status OK 0.001
X-Spam-Evidence '*H*': 1.00; '*S*': 0.00; 'python.': 0.02; 'url:pypi': 0.03; 'open-source': 0.04; 'third-party': 0.04; 'subject:Python': 0.06; 'pypi': 0.07; 'subject:ANN': 0.07; '(currently': 0.09; '0.1': 0.09; 'indexes': 0.09; 'storage,': 0.09; 'url:github': 0.09; 'wrapper': 0.09; 'python': 0.11; 'andreas': 0.16; 'easy_install': 0.16; 'native,': 0.16; 'subject: \n ': 0.16; 'subject:0.1': 0.16; 'subject:oriented': 0.16; 'to:addr:python-announce-list': 0.16; '(you': 0.16; 'language': 0.16; 'all,': 0.19; 'backend': 0.19; 'addition,': 0.20; 'written': 0.21; 'command': 0.22; 'install': 0.23; 'header:User-Agent:1': 0.23; 'installed': 0.27; 'external': 0.29; "i'm": 0.30; 'code': 0.31; 'motivation': 0.31; 'servers.': 0.31; 'maintaining': 0.32; 'interface': 0.32; 'url:python': 0.33; '(e.g.': 0.33; 'actively': 0.33; 'entirely': 0.33; 'could': 0.34; 'version': 0.36; 'url:org': 0.36; 'project': 0.37; 'received:10': 0.37; 'feedback': 0.38; 'e.g.': 0.38; 'rich': 0.38; 'functional': 0.39; 'hosted': 0.39; 'to:addr:python.org': 0.39; 'release': 0.40; 'engines': 0.60; 'worry': 0.60; 'from:no real name:2**0': 0.61; 'free': 0.61; 'first': 0.61; 'hear': 0.63; 'such': 0.63; 'more': 0.64; 'love': 0.65; 'url:0': 0.67; 'touch': 0.74; 'comparable': 0.84; 'features:': 0.84; 'received:10.125': 0.84; 'received:89.146': 0.84; 'ships': 0.84; 'received:89': 0.85; 'transactions': 0.91
X-Virus-Scanned amavisd-new at posteo.de
MIME-Version 1.0
Content-Type text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding 7bit
Date Fri, 14 Mar 2014 01:01:00 +0100
From andreas.d@posteo.de
To <python-announce-list@python.org>
Subject ANN: BlitzDB 0.1 - Embedabble, document-oriented database written entirely in Python
X-Sender andreas.d@posteo.de
User-Agent Posteo Webmail
X-Mailman-Approved-At Fri, 14 Mar 2014 13:25:41 +0100
X-BeenThere python-announce-list@python.org
X-Mailman-Version 2.1.15
Precedence list
Reply-To python-list@python.org
List-Id Announcement-only list for the Python programming language <python-announce-list.python.org>
List-Unsubscribe <https://mail.python.org/mailman/options/python-announce-list>, <mailto:python-announce-list-request@python.org?subject=unsubscribe>
List-Archive <http://mail.python.org/pipermail/python-announce-list/>
List-Post <mailto:python-announce-list@python.org>
List-Help <mailto:python-announce-list-request@python.org?subject=help>
List-Subscribe <https://mail.python.org/mailman/listinfo/python-announce-list>, <mailto:python-announce-list-request@python.org?subject=subscribe>
Approved python-announce-list@python.org
Newsgroups comp.lang.python.announce
Message-ID <mailman.8148.1394799942.18130.python-announce-list@python.org> (permalink)
Lines 48
NNTP-Posting-Host 2001:888:2000:d::a6
X-Trace 1394799942 news.xs4all.nl 2857 [2001:888:2000:d::a6]:41279
X-Complaints-To abuse@xs4all.nl
Xref csiph.com comp.lang.python.announce:1243

Show key headers only | View raw


Hi all,

I just released the first version (0.1) of BlitzDB, an embeddable, 
document-based database written entirely in Python. The software is 
open-source and released under the MIT license, the code is available on 
Github:

https://github.com/adewes/blitzdb

The documentation is hosted on ReadTheDocs:

http://blitz-db.readthedocs.org

The database ships with a native, file-based backend that has no 
external dependencies. In addition, it can be used as a wrapper around 
third-party database engines such as MongoDB. Some more features:

* document-based, object-oriented interface
* powerful and rich querying language comparable to MongoDB
* deep document indexes on arbitrary fields
* compressed storage of documents
* support for multiple backends (e.g. file-based storage, MongoDB)
* support for database transactions (currently only for the file-based 
backend)

The current, fully functional release is on PyPi 
(https://pypi.python.org/pypi/blitzdb/0.1) and can be installed using 
e.g. pip or easy_install:

     pip install blitzdb
     #or
     easy_install blitzdb

The main motivation for writing this was to create an embeddable, 
document-oriented database that I could use in my Python projects (e.g. 
command line tools) without having to worry about setting up and 
maintaining additional software or servers. The project is NOT intended 
as a fully-fledged replacement for MongoDB or other document databases.

I would love to hear your feedback on this project and I'm actively 
looking for contributors, so feel free to get in touch with me (you can 
find my e-mail on Github).

Best regards
Andreas

<a href="http://blitz-db.readthedocs.org">BlitzDB 0.1</a> BlitzDB 0.1 - 
Embedabble, document-oriented database written entirely in Python

Back to comp.lang.python.announce | Previous | Next | Find similar | Unroll thread


Thread

ANN: BlitzDB 0.1 - Embedabble, document-oriented database written entirely in Python andreas.d@posteo.de - 2014-03-14 01:01 +0100

csiph-web