We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 771382e commit c1410cfCopy full SHA for c1410cf
src/otpauth/__init__.py
@@ -1,10 +1,10 @@
1
from .core import SupportedAlgorithms
2
-from .rfc4226 import HOTP, generate_hotp
3
-from .rfc6238 import TOTP, generate_totp
+from ._rfc4226 import HOTP, generate_hotp
+from ._rfc6238 import TOTP, generate_totp
4
5
6
__author__ = "Hsiaoming Yang <[email protected]>"
7
-__homepage__ = "https://github.com/lepture/otpauth"
+__homepage__ = "https://otp.authlib.org/"
8
__version__ = "2.1.1"
9
10
__all__ = [
src/otpauth/rfc4226.py src/otpauth/_rfc4226.pysrc/otpauth/rfc4226.py renamed to src/otpauth/_rfc4226.py
src/otpauth/rfc6238.py src/otpauth/_rfc6238.pysrc/otpauth/rfc6238.py renamed to src/otpauth/_rfc6238.py
@@ -2,7 +2,7 @@
import time
import hmac
from .core import OTP, SupportedAlgorithms
-from .rfc4226 import generate_hotp
+from ._rfc4226 import generate_hotp
class TOTP(OTP):
0 commit comments