TotpApp (version 0.0.1)
index
totpapp.py

This little app generates your TOTP from your secret (you can use
secret as password in a password manager), you don't need any phone or
other device

 
Classes
       
builtins.object
TotpApp

 
class TotpApp(builtins.object)
    TotpApp(master, duration=30, character_number=6, algorithm='sha1')
 

 
  Methods defined here:
__init__(self, master, duration=30, character_number=6, algorithm='sha1')
Initialize self.  See help(type(self)) for accurate signature.
copy_to_clipboard(self)
totp(self, *args)
update_progress(self)

Data descriptors defined here:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)

 
Functions
       
pack(...)
pack(format, v1, v2, ...) -> bytes
 
Return a bytes object containing the values v1, v2, ... packed according
to the format string.  See help(struct) for more on format strings.
sleep(...)
sleep(seconds)
 
Delay execution for a given number of seconds.  The argument may be
a floating point number for subsecond precision.
time(...)
time() -> floating point number
 
Return the current time in seconds since the Epoch.
Fractions of a second may be present if the system clock provides them.
unpack(format, buffer, /)
Return a tuple containing values unpacked according to the format string.
 
The buffer's size in bytes must be calcsize(format).
 
See help(struct) for more on format strings.

 
Data
        __author_email__ = 'mauricelambert434@gmail.com'
__copyright__ = '\nTotpApp Copyright (C) 2024 Maurice Lambert\nTh...ome to redistribute it\nunder certain conditions.\n'
__description__ = "\nThis little app generates your TOTP from your s...nager), you don't need any phone or\nother device\n"
__license__ = 'GPL-3.0 License'
__maintainer__ = 'Maurice Lambert'
__maintainer_email__ = 'mauricelambert434@gmail.com'
__url__ = 'https://github.com/mauricelambert/TotpApp'
copyright = '\nTotpApp Copyright (C) 2024 Maurice Lambert\nTh...ome to redistribute it\nunder certain conditions.\n'
license = 'GPL-3.0 License'

 
Author
        Maurice Lambert