LondonClass
LondonClass
> I think it is great to support numeric anchors as well as things like 'top', 'center' and 'bottom' - but I'd like to keep the former working (i.e. by...
I hope UIelement has a component based design pattern. This way, multiple functions can be implemented simultaneously on a UIElement. For example, the click effect component, with this component, the...
Have you used the latest version of the main branch? This may be related to #514
> I think more layout options is a fine idea. > > I've honestly not delved too deeply into making very complicated GUI layouts in any of my projects using...
need this
```python import time import base64 from cryptography.hazmat.primitives.hashes import SHA1 from cryptography.hazmat.primitives.twofactor.totp import TOTP key = "" decoded_key = base64.b32decode(key) totp = TOTP(decoded_key, 6, SHA1(), 30) print(totp.generate(time.time())) ```