Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ jobs:
fail-fast: false
matrix:
python-version:
- "3.10"
- "3.11"
- "3.12"
- "3.13"
Expand Down
20 changes: 19 additions & 1 deletion pykeepass/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,23 @@
from .attachment import Attachment
from .icons import icons
from .version import __version__
from .kdbx_parsing import (
Argon2Config,
AesKdfConfig,
Cipher,
KdfAlgorithm,
)

__all__ = ["__version__", "PyKeePass", "Entry", "Group", "Attachment", "icons", "create_database"]
__all__ = [
"__version__",
"PyKeePass",
"Entry",
"Group",
"Attachment",
"icons",
"create_database",
"Argon2Config",
"AesKdfConfig",
"Cipher",
"KdfAlgorithm",
]
Binary file removed pykeepass/blank_database.kdbx
Binary file not shown.
21 changes: 20 additions & 1 deletion pykeepass/kdbx_parsing/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,23 @@
from .kdbx import KDBX
from .kdbx4 import kdf_uuids
from .builder import (
build_kdbx_structure,
build_kdbx3_structure,
build_kdbx4_structure,
Argon2Config,
AesKdfConfig,
Cipher,
KdfAlgorithm,
)

__all__ = ["KDBX", "kdf_uuids"]
__all__ = [
"KDBX",
"kdf_uuids",
"build_kdbx_structure",
"build_kdbx3_structure",
"build_kdbx4_structure",
"Argon2Config",
"AesKdfConfig",
"Cipher",
"KdfAlgorithm",
]
Loading