Skip to content

Commit 2e96a52

Browse files
modify TOTP secret and version in totp.py
1 parent a268052 commit 2e96a52

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ def read_file(fname):
1717

1818
setup(
1919
name=pkg_name,
20-
version="0.1.2.2",
20+
version="0.1.2.3",
2121
author="Akash R Chandran",
2222
author_email="chandranrakash@gmail.com",
2323
description="A command line tool to fetch lyrics from spotify and save it to lrc file. It can fetch both synced and unsynced lyrics from spotify. ",

syrics/totp.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
# thanks to https://github.com/glomatico/votify/blob/main/votify/totp.py
66
class TOTP:
77
def __init__(self) -> None:
8-
self.secret = b"55601029510267381196079975060119874370686866"
9-
self.version = 14
8+
self.secret = b"46765510475331268151846763111112875241781186186871271119692"
9+
self.version = 17
1010
self.period = 30
1111
self.digits = 6
1212

0 commit comments

Comments
 (0)