mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-06 06:30:19 +00:00
fb16dfecae
Commit b7f05445c0
has added WWW entries to port Makefiles based on
WWW: lines in pkg-descr files.
This commit removes the WWW: lines of moved-over URLs from these
pkg-descr files.
Approved by: portmgr (tcberner)
12 lines
572 B
Plaintext
12 lines
572 B
Plaintext
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.
|