Registry / database / reporters-db

reporters-db

JSON →
library3.2.64pypypi✓ verified 86d ago

A database of court reporters for legal research, providing abbreviations and full names for federal and state reporters. Current version 3.2.64, released regularly.

pip install reporters-db
INSTALL
IMPORT
SIG · REPORTERS-DB
R
reporters-db
databasepythonv3.2.64
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

REPORTERS
from reporters_db import REPORTERS

Import the REPORTERS constant, which is a list of dictionaries.

from reporters_db import REPORTERS # Print all reporters print(REPORTERS[:5])
Debug
Known issues
gotchaThe REPORTERS variable is a list, not a dict. Access elements by index or iterate.
fix
Use REPORTERS[0] or for reporter in REPORTERS:
affects: all
breakingIn version 3.x, REPORTERS is a list of dicts; in older versions it may have been a dict.
fix
Update your code to iterate over a list instead of accessing keys.
affects: >=3.0
deprecatedSome functions like get_reporter_by_abbreviation() are deprecated in favor of direct dict lookups.
fix
Use a dict comprehension: {r['abbreviation']: r for r in REPORTERS}
affects: >=3.0
Errors
Common errors & fixes
AttributeError: module 'reporters_db' has no attribute 'REPORTERS'
Importing the wrong module or incorrect package name.
fix
Install with 'pip install reporters-db' and import using 'from reporters_db import REPORTERS'
TypeError: list indices must be integers or slices, not str
Trying to access REPORTERS as a dict (e.g., REPORTERS['F.2d']).
fix
REPORTERS is a list; use a dict comprehension: reporter_dict = {r['abbreviation']: r for r in REPORTERS}
Upgrade
Version history
3.2.64latest on PyPI · released Mar 25, 2026
Audit
Dependencies

No dependency data recorded yet.

Agent activity
15 hits · last 30 days
node
12
Meta
1
Bingbot
1
Resources
reporters-db — pip install reporters-db · libregistry