A simple password generator Telegram bot
Explore the docs »
View Demo
·
Report Bug
·
Request Feature
Table of Contents
This is a simple password generator in Telegram.
Bot can generate random passwords (upper/lowercase chars, numbers, special chars), PINs, memorable passwords.
The project was created for the telegram channel - B4DCAT404 and to complement the portfolio. The project uses public libraries and generally accepted practices
To get a local copy up and running follow these simple example steps.
You need 2 packages
- PyTelegramBotApi
pip install pyTelegramBotAPI
- Random password Generator
pip install random-password-generator
For random password generation used library Random password Generator. The password is generated using uppercase, lowercase letters, numbers and special characters.
For PINs generation used random module from Python.
For Memorable passwords used dictionary
To generate random password tap Random password
To generate PINs tap PIN, chose number of digits and tap on it.
To generate memorable password tap Memorable password
All passwords can be copied, just click on any password or PIN and they will be copied
- Add Changelog
- Add back to top links
- Create bot by BotFather
- Found library for password generation
- Add types of passwords
- [] Random password
- PINs
- Memorable password
- Commit and push on GitHub
- Publish in B4DCAT404 chanel
See the open issues for a full list of proposed features (and known issues).
Contributions are what make the open source community such an amazing place to learn, inspire, and create. Any contributions you make are greatly appreciated.
If you have a suggestion that would make this better, please fork the repo and create a pull request. You can also simply open an issue with the tag "enhancement". Don't forget to give the project a star! Thanks again!
- Fork the Project
- Create your Feature Branch (
git checkout -b feature/AmazingFeature
) - Commit your Changes (
git commit -m 'Add some AmazingFeature'
) - Push to the Branch (
git push origin feature/AmazingFeature
) - Open a Pull Request
Distributed under the MIT License. See LICENSE.txt
for more information.
Vi - @vi_dev0
Project Link: https://github.com/vi-dev0/404-tg-passgen
I used these resources while creating the bot