Path: csiph.com!usenet.pasdenom.info!weretis.net!feeder1.news.weretis.net!feeder.erje.net!eu.feeder.erje.net!bcyclone01.am1.xlned.com!bcyclone01.am1.xlned.com!newsfeed.xs4all.nl!newsfeed2.news.xs4all.nl!xs4all!newsgate.cistron.nl!newsgate.news.xs4all.nl!post.news.xs4all.nl!not-for-mail Return-Path: X-Original-To: python-list@python.org Delivered-To: python-list@mail.python.org X-Spam-Status: OK 0.021 X-Spam-Evidence: '*H*': 0.96; '*S*': 0.00; 'url:sourceforge': 0.03; 'sql.': 0.07; "subject:' ": 0.07; 'creator': 0.09; 'python': 0.11; 'useful,': 0.14; 'sqlite': 0.16; 'subject:dates': 0.16; 'subject:sqlite3': 0.16; 'wrote:': 0.18; 'header:User-Agent:1': 0.23; '---': 0.24; 'header:In-Reply-To:1': 0.27; 'am,': 0.29; 'scale': 0.29; 'development.': 0.33; 'could': 0.34; 'problem': 0.35; 'subject: (': 0.35; 'but': 0.35; 'there': 0.35; 'received:10.43': 0.36; 'received:10': 0.37; 'to:addr:python- list': 0.38; 'support,': 0.39; 'to:addr:python.org': 0.39; 'received:org': 0.40; 'most': 0.60; 'world.': 0.61; 'url:index': 0.63; 'school': 0.64; 'love': 0.65; 'charset:windows-1252': 0.65; 'yes': 0.68 DKIM-Filter: OpenDKIM Filter v2.8.4 z.eggo.org 1EC5D3C2C43 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=harvee.org; s=5A244BA4-9B4C-11E4-B3C5-4D2F21081A62; t=1424546829; bh=m2/Ubkw5vWK2Uo0LnuXjuvCxpBUnLwrmmYHGHXgAxOk=; h=Message-ID:Date:From:MIME-Version:To:Subject:Content-Type: Content-Transfer-Encoding; b=d/JxXLzk5RUlqcgijNL9IAOWhfWJwogjkRkaUuSkUI6VdIpF7fQmdEm3e/5X3KkP2 6pQ0zo1T99jY64wd0Af6IltjqtJWn1ILU7f9S5GJxjRUZl2vymlfPD5sqHKlCd/G9X qrUYKAEYIAWUySp6X2kdsl/WUcyAbO925IprLxiE= X-Virus-Scanned: amavisd-new at harvee.org Date: Sat, 21 Feb 2015 14:27:04 -0500 From: "Eric S. Johansson" User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:31.0) Gecko/20100101 Thunderbird/31.4.0 MIME-Version: 1.0 To: python-list@python.org Subject: Re: 'Lite' Databases (Re: sqlite3 and dates) References: <4154cc37-0bb0-4bf2-a52c-b728c737357c@googlegroups.com> <54E517B4.4000409@stoneleaf.us> <87a908e0zh.fsf@jester.gateway.pace.com> <54E7B0DA.7060303@stoneleaf.us> In-Reply-To: Content-Type: text/plain; charset=windows-1252; format=flowed Content-Transfer-Encoding: 7bit X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: General discussion list for the Python programming language List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Newsgroups: comp.lang.python Message-ID: Lines: 15 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1424546837 news.xs4all.nl 2903 [2001:888:2000:d::a6]:52139 X-Complaints-To: abuse@xs4all.nl X-Received-Bytes: 4056 X-Received-Body-CRC: 2894692540 Xref: csiph.com comp.lang.python:86062 On 02/21/2015 01:22 AM, Ned Deily wrote: > SQLite is one of the most widely-used, best-documented, best-tested, > and well-respected software packages in the world. yes but is still sql. there are a couple of small scale not-sql databases that look interesting. problem with them is that the creator seem to subscribe to the build-and-toss-into-the-wild school of development. http://buzhug.sourceforge.net/ http://www.pydblite.net/en/index.html both are useful, both could use multi-writer support, and both need some love from the python world. --- eric