Skip to main content

Interface to BBDB, the Insidious Big Brother Database

Project description

PyBBDB -- an interface to the Insidious Big Brother Database

builds.sr.ht status

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:

>>> fred.company = "Slate Rock & Gravel"
>>> fred.affix = "Mr"
>>> fred.aka = "Freddie"

Some BBDB attributes consist of lists of things:

>>> fred.add_net("fred@bedrock.org")
>>> fred.add_net("fred.flintstone@gravel.com")
>>> fred.net
['fred@bedrock.org', 'fred.flintstone@gravel.com']

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.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

Report any problems, bugs, etc, to me (Glenn Hutchings) at zondo42@gmail.com. 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

pybbdb-0.5.tar.gz (11.6 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

pybbdb-0.5-py2.py3-none-any.whl (15.8 kB view details)

Uploaded Python 2Python 3

File details

Details for the file pybbdb-0.5.tar.gz.

File metadata

  • Download URL: pybbdb-0.5.tar.gz
  • Upload date:
  • Size: 11.6 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

Hashes for pybbdb-0.5.tar.gz
Algorithm Hash digest
SHA256 b61ab646a5b4cb712b05a15b54b49db853dc8a9936c4f1f18178868b8bb860b5
MD5 811e10e856f76ae1e5a62763f4eaec9e
BLAKE2b-256 1d03d4b73e3b37386e0782dd2a8747e5c720b65707de5ea343a9f148992b76c4

See more details on using hashes here.

File details

Details for the file pybbdb-0.5-py2.py3-none-any.whl.

File metadata

  • Download URL: pybbdb-0.5-py2.py3-none-any.whl
  • Upload date:
  • Size: 15.8 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

Hashes for pybbdb-0.5-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 333ad11424c80115db94fd2be3ebae366acb1c32e5f51a3bbe32f9d656b999d1
MD5 6e017247244e58cedce840ddea34a7f0
BLAKE2b-256 4c6f4d591b8ab6232775a2a5d92e24ff999507496c31b6225bf96fa15ed0a4a7

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page