Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

"Export" key components of the library #68

Closed
dbluhm opened this issue Dec 3, 2022 · 0 comments · Fixed by #85
Closed

"Export" key components of the library #68

dbluhm opened this issue Dec 3, 2022 · 0 comments · Fixed by #85
Assignees

Comments

@dbluhm
Copy link
Collaborator

dbluhm commented Dec 3, 2022

The didcomm-python library should "export" the key components of the library from it's main package __init__.py.

This will make it easier to consume and direct people to the types and objects they're most likely interested in. For example, rather than:

from didcomm.pack_encrypted import pack_encrypted
from didcomm.unpack import unpack
from didcomm.message import Message, Attachment
# ... etc

We should make these importable as:

from didcomm import pack_encrypted, unpack, Message, Attachment # etc. etc.

This will create a more cleanly defined "public interface" for the package and help people discover key entry points to the library.

@dkulic dkulic self-assigned this Feb 20, 2023
@dkulic dkulic linked a pull request Feb 22, 2023 that will close this issue
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants