Interface to BBDB, the Insidious Big Brother Database
Project description
PyBBDB -- an interface to the Insidious Big Brother Database
Introduction
PyBBDB may sound like a rude noise, but it is actually a Python interface to the Insidious Big Brother Database (BBDB), an address book used with GNU Emacs. You can find out more about BBDB on the Emacs Wiki. The PyBBDB source repo is hosted at Sourcehut. Releases can be found on PyPI.
Note: This module currently only handles BBDB file format 9 (the latest format, as of January 2021). Formats earlier than this should first be converted by GNU Emacs.
Installation
The usual incantation will install things:
pip install pybbdb
Usage
Creating a BBDB database
To create a new database is as simple as you might expect:
>>> from bbdb.database import BBDB
>>> db = BBDB()
The database starts with no records. To add a new one, use the
add_record()
method, specifying the first and last names, and any
other attributes you want to set:
>>> fred = db.add_record("Fred", "Flintstone")
>>> fred # doctest: +ELLIPSIS +REPORT_UDIFF
Record(firstname='Fred', lastname='Flintstone', affix=[], aka=[], ...
>>> barney = db.add_record("Barney", "Rubble")
>>> db
<BBDB: 2 records>
The first and last names are attributes:
>>> fred.firstname, fred.lastname
('Fred', 'Flintstone')
There's also a composite name
property:
>>> fred.name
'Fred Flintstone'
You can set other attributes on the returned record object:
Most BBDB attributes consist of lists of things:
>>> fred.add_company("Slate Rock & Gravel")
>>> fred.add_affix("Mr")
>>> fred.add_aka("Freddie")
>>> fred.add_net("fred@bedrock.org")
>>> fred.add_net("fred.flintstone@gravel.com")
>>> fred.net
['fred@bedrock.org', 'fred.flintstone@gravel.com']
>>> fred.affix
['Mr']
Telephone records consist of a location tag and a phone number. The phone number can be either a list of integers (USA-style) or a string (international style):
>>> fred.add_phone("Home", "555-1234")
>>> fred.add_phone("Work", [555, 6789])
>>> list(sorted(fred.phone.items()))
[('Home', '555-1234'), ('Work', [555, 6789])]
Records can have multiple addresses, each indexed by a location tag. Each address in turn has several attributes:
>>> home = fred.add_address("Home")
>>> home.set_location("Cave 2a", "345 Cavestone Road")
>>> home.city = "Bedrock"
>>> home.state = "Hanna Barbera"
>>> home.zipcode = "12345"
>>> home.country = "USA"
>>> home # doctest: +ELLIPSIS +REPORT_UDIFF
Address(location=['Cave 2a', '345 Cavestone Road'], city='Bedrock', ...
>>> home.location
['Cave 2a', '345 Cavestone Road']
>>> home.zipcode
'12345'
Finally, each entry can have an arbitrary dictionary of user-defined notes:
>>> fred.add_note("spouse", "Wilma")
>>> fred.add_note("kids", "Pebbles, Bam-Bam")
>>> fred.add_note("catchphrase", '"Yabba dabba doo!"')
>>> list(sorted(fred.notes.items()))
[('catchphrase', '"Yabba dabba doo!"'), ('kids', 'Pebbles, Bam-Bam'), ('spouse', 'Wilma')]
Note values can also have newlines:
>>> barney.add_note("pets", "brontosaurus\npterodactyl")
Reading and writing BBDB files
The write()
method will write the database to a stream (default
stdout
) in a format suitable for use by GNU Emacs. THe write_file()
method writes to a file instead. They both use the lisp()
method
internally, to return the raw lisp text:
>>> print(db.lisp()) # doctest: +ELLIPSIS +REPORT_UDIFF
;; -*-coding: utf-8-emacs;-*-
;;; file-version: 9
;;; user-fields: (catchphrase kids pets spouse)
["Barney" "Rubble" nil nil nil nil nil nil ((pets . "brontosaurus\npterodactyl")) ...
["Fred" "Flintstone" ("Mr") ("Freddie") ("Slate Rock & Gravel") (["Home" "555-1234"] ...
The convenience write_file()
method will put that in a file:
>>> db.write_file("examples/bbdb.el")
You can read a database from file using the fromfile()
static method:
>>> newdb = BBDB.fromfile("examples/bbdb.el")
>>> newdb
<BBDB: 2 records>
The read()
and read_file()
methods of a BBDB database can be used
import records from other databases.
Exporting to other formats
You can convert a BBDB database to a JSON string for serialization, using
the json
method:
>>> print(db.json(indent=4)) # doctest: +ELLIPSIS +REPORT_UDIFF
{
"coding": "utf-8-emacs",
"fileversion": 9,
"records": [
{
"firstname": "Barney",
"lastname": "Rubble",
"affix": [],
"aka": [],
"company": [],
"phone": {},
"address": {},
"net": [],
"notes": {
"pets": "brontosaurus\\npterodactyl"
},
"uuid": ...
"creation": ...
"timestamp": ...
},
{
"firstname": "Fred",
"lastname": "Flintstone",
"affix": [
"Mr"
],
"aka": [
"Freddie"
],
"company": [
"Slate Rock & Gravel"
],
"phone": {
"Home": "555-1234",
"Work": [
555,
6789
]
},
"address": {
"Home": {
"location": [
"Cave 2a",
"345 Cavestone Road"
],
"city": "Bedrock",
"state": "Hanna Barbera",
"zipcode": "12345",
"country": "USA"
}
},
"net": [
"fred@bedrock.org",
"fred.flintstone@gravel.com"
],
"notes": {
"spouse": "Wilma",
"kids": "Pebbles, Bam-Bam",
"catchphrase": "\"Yabba dabba doo!\""
},
"uuid": ...
"creation": ...
"timestamp": ...
}
]
}
The dict()
method dumps the database as a Python dict. You can also
create a BBDB database from an appropriately-structured dict using the
fromdict()
method:
>>> data = db.dict()
>>> newdb = BBDB.fromdict(data)
>>> newdb == db
True
Release history
Version 0.7 (1 March 2021)
- Bugfix: allow string lists for aka, affix and company entries.
Version 0.6 (28 February 2021)
- Bugfix: install
bbdb.lark
, so that things actually work outside a development environment.
Version 0.5 (27 January 2021)
- Major rewrite to support latest BBDB file format (version 9).
- Use lark and dateutil for parsing.
- Use pydantic for validation.
- Drop support for Python 2.
Version 0.4 (10 February 2017)
- Use pytest for unit tests.
- Bugfix: add support for newlines in fields.
- Bugfix: allow last name to be nil.
Version 0.3 (22 July 2015)
- Bugfix: get things working properly with Python 3.
Version 0.2 (2 July 2015)
- Add validation of data using voluptuous.
- Add a bunch of demo converter programs.
- Add tox test support.
- Add Python 3 support.
- Bugfix: convert records from file to correct type.
Version 0.1 (11 June 2015)
- Initial release.
Feedback
You can add bug reports, feature requests, etc., to the issue tracker. Patches will also be welcome!
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file pybbdb-0.7.tar.gz
.
File metadata
- Download URL: pybbdb-0.7.tar.gz
- Upload date:
- Size: 12.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.23.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.9.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0d17e14e98b574fcb90d0455658a8ec09e00e3ba8a265b299c778eab0ea7841f |
|
MD5 | 57dbd2c69d5fd4460134d51e7f70dfd3 |
|
BLAKE2b-256 | c8ee77cc2b8c12ab18b5f197713c5558d94e8b8f3a8b4583d97e00476be7bd23 |
File details
Details for the file pybbdb-0.7-py2.py3-none-any.whl
.
File metadata
- Download URL: pybbdb-0.7-py2.py3-none-any.whl
- Upload date:
- Size: 16.6 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.23.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.9.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 739e9f77bfd290bb43a20ccae890f7c5b315864fe239f93b107d8980e1cd0d51 |
|
MD5 | 9764de64ea4166965ba3e8737bbee62b |
|
BLAKE2b-256 | d4bf66cc17288c0b0a090a01e68b68d9057d2b5e46db659fef6ef3953303c515 |