File: control

package info (click to toggle)
python-buzhug 1.8-3
  • links: PTS, VCS
  • area: main
  • in suites: buster, stretch
  • size: 160 kB
  • ctags: 197
  • sloc: python: 1,653; makefile: 3
file content (28 lines) | stat: -rw-r--r-- 1,286 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
Source: python-buzhug
Section: python
Priority: optional
Maintainer: Debian Python Modules Team <python-modules-team@lists.alioth.debian.org>
Uploaders: Luciano Bello <luciano@debian.org>
Build-Depends: debhelper (>= 9), python-all, dh-python
Standards-Version: 3.9.6
Homepage: http://buzhug.sourceforge.net/
Vcs-Git: git://anonscm.debian.org/python-modules/packages/python-buzhug.git
Vcs-Browser: https://anonscm.debian.org/cgit/python-modules/packages/python-buzhug.git
X-Python-Version: >= 2.5

Package: python-buzhug
Architecture: all
Depends: ${python:Depends}, ${misc:Depends}
XB-Python-Version: ${python:Versions}
Description: pure-Python database engine, using a Pythonic, no-SQL syntax
 Buzhug is a fast, pure-Python database engine, using a syntax that Python 
 programmers should find very intuitive.
 .
 The data is stored and accessed on disk (it is not an in-memory database); 
 the implementation has been designed to make all operations, and especially 
 selection, as fast as possible with an interpreted language.
 .
 The database is implemented as a Python iterator, yielding objects whose 
 attributes are the fields defined when the base is created ; therefore, 
 requests can be expressed as list comprehensions or generator expressions, 
 instead of SQL queries.