Coverage for src / kdbxtool / models / __init__.py: 100%

5 statements  

« prev     ^ index     » next       coverage.py v7.12.0, created at 2025-12-19 21:22 +0000

1"""Data models for KDBX database elements. 

2 

3This module provides typed Python classes for representing KDBX database 

4contents: entries, groups, and the database itself. 

5""" 

6 

7from .attachment import Attachment 

8from .entry import Entry, HistoryEntry 

9from .group import Group 

10from .times import Times 

11 

12__all__ = [ 

13 "Attachment", 

14 "Entry", 

15 "Group", 

16 "HistoryEntry", 

17 "Times", 

18]