Metadata-Version: 2.4
Name: DAMRI-2fa
Version: 0.1.0
Summary: Simple all-in-one 2FA helper for Python
Author-email: DAMRI Med Amine <mohammedaminedamri.ma@gmail.com>
License: MIT
Project-URL: Homepage, https://github.com/X-MohammedAmineDamri-X/Easy2FA
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: qrcode[pil]
Dynamic: license-file


# Easy2FA
Easy2FA: A lightweight Python library for adding Two-Factor Authentication (2FA) with TOTP. Quickly generate and verify codes compatible with Google Authenticator, Authy, and other apps. Simple, secure, and easy to integrate into any Python project.
=======
A simple, all-in-one 2FA helper for Python — TOTP, QR codes, backup codes, and rate limiting.

## Install
```bash
pip install easy2fa

## USAGE
from easy2fa import Easy2FAAccount

acct = Easy2FAAccount.create(issuer="MyApp", label="user@example.com")
print(acct.current_code())

MIT License

Copyright (c) 2025 Mohammed Amine DAMRI

Permission is hereby granted...
>>>>>>> 8791791 (Initial commit: easy2fa library)
