├── .gitattributes ├── GitHub Profile Readme Generator Using Python.py └── README.md /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | -------------------------------------------------------------------------------- /GitHub Profile Readme Generator Using Python.py: -------------------------------------------------------------------------------- 1 | # printing banner 2 | print(''' 3 | ██████╗ ██╗████████╗██╗ ██╗██╗ ██╗██████╗ ██████╗ ███████╗ █████╗ ██████╗ ███╗ ███╗███████╗ 4 | ██╔════╝ ██║╚══██╔══╝██║ ██║██║ ██║██╔══██╗ ██╔══██╗██╔════╝██╔══██╗██╔══██╗████╗ ████║██╔════╝ 5 | ██║ ███╗██║ ██║ ███████║██║ ██║██████╔╝ ██████╔╝█████╗ ███████║██║ ██║██╔████╔██║█████╗ 6 | ██║ ██║██║ ██║ ██╔══██║██║ ██║██╔══██╗ ██╔══██╗██╔══╝ ██╔══██║██║ ██║██║╚██╔╝██║██╔══╝ 7 | ╚██████╔╝██║ ██║ ██║ ██║╚██████╔╝██████╔╝ ██║ ██║███████╗██║ ██║██████╔╝██║ ╚═╝ ██║███████╗ 8 | ╚═════╝ ╚═╝ ╚═╝ ╚═╝ ╚═╝ ╚═════╝ ╚═════╝ ╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝╚═════╝ ╚═╝ ╚═╝╚══════╝ 9 | ██████╗ ███████╗███╗ ██╗███████╗██████╗ █████╗ ████████╗ ██████╗ ██████╗ 10 | ██╔════╝ ██╔════╝████╗ ██║██╔════╝██╔══██╗██╔══██╗╚══██╔══╝██╔═══██╗██╔══██╗ 11 | ██║ ███╗█████╗ ██╔██╗ ██║█████╗ ██████╔╝███████║ ██║ ██║ ██║██████╔╝ 12 | ██║ ██║██╔══╝ ██║╚██╗██║██╔══╝ ██╔══██╗██╔══██║ ██║ ██║ ██║██╔══██╗ 13 | ╚██████╔╝███████╗██║ ╚████║███████╗██║ ██║██║ ██║ ██║ ╚██████╔╝██║ ██║ 14 | ╚═════╝ ╚══════╝╚═╝ ╚═══╝╚══════╝╚═╝ ╚═╝╚═╝ ╚═╝ ╚═╝ ╚═════╝ ╚═╝ ╚═╝ 15 | ''') 16 | # printing name of Author 17 | print('Author : coderatul') 18 | print("❀ If you don't want to fill something then just leave it blank & press enter ❀") 19 | 20 | # inputting name 21 | print('Title') 22 | Name = input("Hi 👋+ I'm 🠮 ") 23 | name = ('
5 | 🌼 Change your Boring Github profile to Next-Level 6 |
7 | 8 | [](https://www.python.org/) 9 | 10 | 11 | 12 | ## Before 😐 13 | 14 |  15 | 16 | ## After 🥳 17 | 18 |  19 | 20 | 21 | ## 😎 Features 22 | - Visitors Counter Badge 23 | - GitHub Profile Stats Card 24 | - GitHub Top Skills 25 | - GitHub Streak Stats 26 | 27 | ## How to Use ? 28 | - First of all create a new repository and enter your github profile user name as name of the repository 29 |  30 | - Make sure that this repository is ```public``` and you have enabled ```Add a README file``` 31 | 32 | - Then Run python file ( If you Don't Want a specific function then just leave it blank and press enter ! ) and Paste the Output in README.md file 33 | - You are ready to go !!! 34 | 35 | ## Common errors 36 | - while entering any URL in python file make sure you add protocol 37 | - for eg: dev.to/coderatul will lead to error ( error 404 page not found !) 38 | - so you can fix this by adding protocol : https://dev.to/coderatul 39 | 40 | ## 🙇 Special Thanks 41 | - [Anurag Hazra](https://github.com/anuraghazra) for amazing [github-readme-stats](https://github.com/anuraghazra/github-readme-stats) 42 | - [Anton Komarev](https://github.com/antonkomarev) for super cool [github-profile-views-counter](https://github.com/antonkomarev/github-profile-views-counter) 43 | - [Jonah Lawrence](https://github.com/DenverCoder1) for the incredible [github-readme-streak-stats](https://github.com/DenverCoder1/github-readme-streak-stats) 44 | - [Devansh](https://github.com/devansh-dek) for testing this project 💖 45 | - [Bhavesh](https://github.com/Bhavesh71) for testing this project 💖 46 | 47 |  48 | - If you liked this Banner you can make your own using [canva](https://www.canva.com/design/DAEdelIC5PQ/2oWD_3i9aUepagywUdEqeQ/view?utm_content=DAEdelIC5PQ&utm_campaign=designshare&utm_medium=link&utm_source=sharebutton&mode=preview) 49 | - After making Your Banner just drag and drop it in readme.md 50 | --------------------------------------------------------------------------------