Replies: 1 comment 1 reply
-
But how can we deal with current situation? Currently Authlib has a jose module, if joserfc is namespaced as authlib.jose, it will be a conflict with Authlib. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Why not just treat
authlib
as a namespace forjose
by naming this packageauthlib-jose
?This would allow the module to install right into the module path as it is now. This would allow less refactoring to breakout the
jose
submodules. Also, it would allow for additional separation of other capabilities in the future.This is what namespaces were designed for anyway.
https://setuptools.pypa.io/en/latest/userguide/package_discovery.html
Beta Was this translation helpful? Give feedback.
All reactions