├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── documentation_improvement.md │ ├── feature_request.md │ ├── question.md │ └── support_request.md └── pull_request_template.md ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── assets ├── Chat-app-client-interface.png ├── Chat-app-server-interface.png ├── HF-Horizontal-Color-Light.svg ├── HF-Stacked-Color-Light.svg └── HF2025Header.png ├── guess_the_number.py ├── heartproj.py ├── sebastian_guessing_game.py └── src ├── .DS_Store ├── .gitkeep ├── Adithya00012-make-a-tip-calculator-web-app-flask ├── README.md ├── app.py ├── requirements.txt ├── static │ └── style.css └── templates │ └── index.html ├── Ambika005-buildBlockPuzzleGame ├── README.md └── block_puzzle_game.py ├── Anibhu-Advanced-number-guessing-game ├── README.md ├── high_scores.json └── main.py ├── Anshul-Bartwal-emotion-detection ├── EmotionDetection.py ├── README.md ├── _mini_XCEPTION.102-0.66.hdf5 └── haarcascade_frontalface_default.xml ├── Aryan-Build-an-easy-and-simple-fruits-game-#150 ├── Fruit_game.py └── README.md ├── Ashmit-Tyagi-Weather-Api ├── README.md ├── api.py ├── config.py ├── main.py └── utils.py ├── Ashutosh-agarwal2004-build-a-to-do-list-cli-app-in-python ├── .gitignore ├── README.md ├── images │ └── Capture.PNG └── todo.py ├── Avik43218-ascii-art-generator-from-image ├── README.md ├── image.jpg ├── main.py └── requirements.txt ├── Avik43218-resume-generator ├── README.md ├── requirements.txt └── resume_generator.py ├── Avik43218-word-guessing-game-cli ├── README.md ├── main.py └── valid_words.dat ├── BhavithaMarikeeri-develop-a-countdown-timer-desktop-app ├── README.md ├── countdown_timer.py └── requirements.txt ├── Brijeshthummar02-create-a-text-based-quiz-app-with-scoring ├── README.md └── quiz.py ├── Brijeshthummar02-develop-a-password-generator-cli-tool ├── README.md └── main.py ├── Brijeshthummar02-pomodoro-timer ├── README.md └── main.py ├── Brijeshthummar02-unit-converter-length-mass-temperature ├── README.md ├── converter.py └── main.py ├── D3PA-make-a-tip-calculator-web-app-flask ├── README.md ├── app.py ├── assets │ └── screenshot.png ├── requirements.txt ├── static │ ├── script.js │ └── style.css └── templates │ └── index.html ├── DinethShakya23-create-a-weather-app-using-openweathermap-api ├── README.md ├── requirements.txt └── weather_app.py ├── DmitryChyornyj-youtube-downloader └── yt.py ├── Dronanaik-CPU-Scheduling-Algorithms-Simulator ├── Demo_video.mp4 ├── README.md ├── cpu_scheduling_simulator.py ├── requirements.txt └── run_demo.py ├── Dronanaik-build-a-chat-app-socket-programming ├── README.md ├── image-1.png ├── image.png ├── main.py └── requirements.txt ├── Janvi75_AI-ML_Based_Tic_Tac_Toe ├── README.md ├── __pycache__ │ └── functions.cpython-313.pyc ├── functions.py └── test_functions.py ├── Joystonm-space-shooter ├── README.md ├── assets │ ├── fonts │ │ └── simkai.ttf │ ├── images │ │ ├── asteroid.png │ │ ├── asteroid_1.png │ │ ├── background_menu.jpg │ │ ├── battle_ship.png │ │ ├── bg_big.png │ │ ├── bullet.png │ │ ├── seamless_space.png │ │ ├── ship.png │ │ ├── ship_exploded.png │ │ └── space3.jpg │ └── sounds │ │ ├── Cool Space Music.mp3 │ │ ├── boom.wav │ │ └── shot.ogg ├── bullet.py ├── config.py ├── display_prefs.json ├── enemy.py ├── high_score.txt ├── main.py ├── player.py ├── powerup.py ├── ui.py └── utils.py ├── Kaboombastic-tic.tac.toe ├── README.md └── tic_tac_toe.py ├── Krasper707-python-code-explainer ├── README.md ├── main.py └── requirements.txt ├── Kulsum-ahmad- Quote-Generator-Website ├── README.md ├── app.py ├── quotes.json ├── requirements.txt ├── static │ └── style.css └── templates │ └── index.html ├── Kulsum-ahmad-create-a-binary-to-decimal-converter ├── README.md └── converter.py ├── Kulsum-ahmad-make-a-alarm-clock-desktop-app ├── README.md └── alarm_clock.py ├── Kulsum-ahmad-real-estate-price-prediction ├── .gitignore ├── LICENSE ├── README.md ├── real_estate_india.csv └── realestate.py ├── Lucky-Malik-build-a-File-Organizer-script ├── README.md ├── organizer.py └── requirements.txt ├── MahyudeenShahid-Word-Scramble-Game ├── high_scores.json ├── main.py ├── readme.md └── stats.json ├── Manvi234-rock-classification-project ├── ReadME.md ├── Rock_Classification.ipynb ├── aggregateRockData.xlsx ├── feature_presence540.txt ├── rock_classification.py └── trialData.csv ├── Meghana-2124-develop-a-flashcard-app-to-learn-vocabulary ├── README.md └── flashcard_app.py ├── NirajDN-motivational-quote-notifier ├── Readme.md └── quotes.py ├── Nishika10-mastermind-game ├── README.md └── main.py ├── Once-1296-Create-a-StopWatch-Application ├── README.md └── stopwatch.py ├── Once-1296-Flask-Number-Guessing-Game-Website ├── README.md ├── app.py ├── requirements.txt ├── static │ └── style.css └── templates │ └── index.html ├── Parth-Patil-AIML-Math-Score-Prediction ├── Math_Score_Predictions_Random_Forest.ipynb ├── README.md ├── test.csv └── train.csv ├── Pratham00007-face-Recognition ├── images │ ├── PR1.jpg │ ├── PR2.jpg │ └── PR3.jpg ├── main.py └── readme.md ├── PratyushRao-MinesweeperCLI ├── MineSweeperCLI.py ├── README.md └── assets │ ├── EndImage.png │ └── StartImage.png ├── PratyushRao-WordleCLI ├── README.md ├── WordleCLI.py ├── assets │ ├── Win.png │ └── words.txt └── requirements.txt ├── Rajudas94-Code-Roast-or-Compliment ├── README.md ├── data.json └── main.py ├── SDash05-build-a-rock-paper-scissors-game └── main.py ├── SDash05-create-a-binary-to-decimal-converter └── binary-to-decimal.py ├── Saman Tarique-create-a-binary-to-decimal-converter ├── Screenshot 2025-10-09 152541.png ├── Screenshot 2025-10-09 152624.png ├── Screenshot 2025-10-09 152655.png ├── Screenshot 2025-10-09 152731.png ├── converter.py └── readme.md ├── Sdash05-create-a-pomodoro-timer └── main.py ├── ShashwatPathak-01-build-slot-machine ├── README.md ├── __init__.py ├── main.py └── requirements,txt ├── ShreyDudie-create-a-pomodoro-timer ├── README.md └── timer.py ├── Spartan1-1-7-create-a-expense-tracker-cli ├── README.md ├── SAMPLE_OUTPUT.md ├── expense_tracker.py ├── expenses.json ├── requirements.txt └── test_expense_tracker.py ├── Spartan1-1-7-make-a-random-joke-generator-using-api ├── README.md ├── SAMPLE_OUTPUT.md ├── config.py ├── joke_generator.py ├── requirements.txt └── test_joke_generator.py ├── Spartan1-1-7-make-a-simple-web-scraper-for-news-headlines ├── README.md ├── demo.py ├── demo_headlines_20251003_181213.csv ├── demo_headlines_20251003_181213.json ├── example.py ├── news_scraper.py ├── requirements.txt └── test_scraper.py ├── TahaValiji-Habit-Tracker ├── HabitTracker.xlsx ├── README.md └── habit_tracker.py ├── TahaValiji-Matrix_rain_animation ├── Font │ └── MS Mincho.ttf ├── README.md └── matrix_code_rain.py ├── TahaValiji-create-a-expense-tracker-cli ├── README.md ├── SEM.py ├── SEM.xlsx └── SEMLended.csv ├── Tarini-Ag-build-a-dice-rolling-simulator ├── README.md ├── dice_rolling_simulator.py └── requirements.txt ├── TheInfernitex-dijkstra-algorithm-visualizer ├── README.md └── main.py ├── TheInfernitex-sorting-visualizer ├── README.md └── main.py ├── Varadrajagrawal-build-Student Attendance Tracker ├── README.md ├── Student_Attendanc_Tracker.py └── requirements.txt ├── VedWay-daily-tracker ├── README.md ├── daily_tracker.py └── requirements.txt ├── VedanshRawat-Calculator-with-a-GUI ├── main.py └── readme.md ├── Vinit3116-pdf-toolkit ├── README.md ├── main.py └── requirements.txt ├── Vis-3-happiness-data-regression ├── Happiness_data_analysis.ipynb ├── Happiness_data_analysis.py ├── README.md └── happiness_data.csv ├── adithyapathakoti-build-a-rock-paper-scissors-game ├── README.md └── rock_paper_scissors.py ├── akashinferno-password-strength-checker ├── README.md ├── main.py └── requirements.txt ├── akshat280706_rock-paper-scissors ├── README.md └── rock-paper-scissors.py ├── anand0295-instagram-profile-analyzer ├── README.md ├── instagram_profile_info.py └── requirements.txt ├── annuuxoxo-book-cricket-cli ├── README.md └── book_cricket.py ├── aryan-2206-create-a-currency-converter-using-live-exchange-rates ├── README.md ├── currency_converter.py └── requirements.txt ├── aryan-2255-build-a-rock-paper-scissors-game ├── README.md ├── main.py └── requirements.txt ├── atulenv-build-a-file-organizer-script ├── README.md ├── organizer.py └── requirement.txt ├── ayaantuts-Advanced-Tic-Tac-Toe ├── ReadMe.md ├── player.py └── tictactoe.py ├── bhavesh-210-develop-a-flashcard-app-to-learn-vocabulary ├── README.md ├── flashcard_app.py ├── flashcards.json └── requirements.txt ├── code_with_pratik_07_escpae_the_maze_game ├── Readme.md └── escpae_the_maze_game.py ├── devesh1024-QR_Code_Generator ├── README.md ├── qr-code-generator.py ├── qrcode.png └── requirements.txt ├── dip14-j-Automate-hill-climbing-racing-opencv-game ├── README.md ├── directkeys.py ├── idea │ ├── Game Automation.iml │ ├── inspectionProfiles │ │ └── profiles_settings.xml │ ├── misc.xml │ ├── modules.xml │ └── workspace.xml ├── main.py └── tempCodeRunnerFile.py ├── dip14-j-Invisible-cloak-OpenCV ├── Opaque book page.jpeg ├── README.md ├── camera start step 1.jpeg ├── deepesh.py └── invisible clock that place and made book transparent.jpeg ├── hakimlutfi46-build-a-markdown-to-html-converter ├── README.md ├── md_converter.py ├── output.html ├── requirements.txt └── sample.md ├── harsimran-kaur190-To-do_list ├── README.md └── to_do_list.py ├── kavaljeetsinghdev-pomodoro-timer ├── README.md └── pomodoro.py ├── lightningxyz-rockpaperscissorgui ├── README.md └── main.py ├── moechadSayshi-expense-tracker ├── READMD.md └── exp.py ├── mohitlikestocode-wpm-calculator ├── README.md ├── __init__.py └── wpm_calculator.py ├── mrstrange2003-create-a-bmi-calculator-with-gui ├── README.md └── bmi_calculator.py ├── mrstrange2003-develop-a-simple-calculator-with-gui-tkinter ├── README.md └── gui_calculator.py ├── muskaankarwa-word-guessing-game ├── readme.md └── word-guess.py ├── muskaankarwa-word-scramble ├── readme.md └── word-scramble.py ├── newcodergit-Alarm-desktop-app ├── README.md ├── alarm.py └── requirements.txt ├── newcodergit-create-a-pomodoro-timer ├── README.md └── pomodoro_timer.py ├── nothariharan-Typing-Speed-Test ├── README.md └── type.py ├── pulkittrillion-billsaathi ├── README.md └── main.py ├── pulkittrillion-punelocal ├── main.py └── readme.md ├── purrvax-hangman ├── README.md └── hangman.py ├── regenpalkar-custom-rotational-cipher-tool ├── Caesar.py └── README.md ├── regenpalkar28-combat-simulator ├── Combat.py ├── Images │ ├── Dice │ │ ├── DICE_1.png │ │ ├── DICE_2.png │ │ ├── DICE_3.png │ │ ├── DICE_4.png │ │ ├── DICE_5.png │ │ └── DICE_6.png │ ├── Knight.png │ ├── Knight_Attack.png │ ├── Ninja.png │ └── Ninja_Attack.png ├── README.md └── requirements.txt ├── rishanmenezes-build-a-dice-rolling-simulator ├── README.md ├── __init__.py ├── cli.py ├── dice.py ├── requirements.txt └── test_dice.py ├── rishanmenezes-create-a-binary-to-decimal-converter ├── README.md ├── __init__.py ├── cli.py ├── converter.py ├── requirements.txt └── test_converter.py ├── rishanmenezes-create-a-stop-watch-application ├── README.md ├── __init__.py ├── cli.py ├── requirements.txt ├── stopwatch.py └── test_stopwatch.py ├── rishanmenezes-develop-a-simple-calculator-with-gui-tkinter ├── README.md ├── calculator.py └── requirements.txt ├── safwanahmadsaffi-building-a-snake-game ├── README.md ├── main.py └── requirements.txt ├── safwanahmadsaffi-guess_the_number ├── README.md ├── requirements.txt └── todo.py ├── safwanahmadsaffi-simple-calculator ├── README.md ├── calculator.py ├── main.py └── requirements.txt ├── sameera731-recipe-recommender ├── README.md ├── main.py ├── recipes.db ├── requirements.txt ├── seed_data.json └── templates │ ├── add_recipe.html │ ├── index.html │ └── search.html ├── saniya-exp-DiceRollingSimulator ├── README.md └── main.py ├── saniya-exp-LanguageTranslator ├── README.md ├── main.py └── requirements.txt ├── saniya-exp-binary-to-decimal ├── README.md └── main.py ├── saniya-exp-rock-paper-scissors ├── README.md └── main.py ├── sapekshpareek-create-a-binary-to-decimal-converter ├── README.md ├── main.py ├── requirements.txt └── tests │ └── test_converter.py ├── shan-droid-png-dungeon-explorer ├── Readme.md └── main.py ├── shepherdking67-build-a-rock-paper-scissors-game ├── README.md ├── game.py └── requirements.txt ├── shepherdking67-reaction-time-tester ├── README.md └── reaction_time.py ├── shudhodhan1089_FlappyBird_game ├── assets │ ├── .DS_Store │ ├── bird │ │ ├── 0.png │ │ ├── 1.png │ │ └── 2.png │ └── terrain │ │ ├── bg.png │ │ ├── ground.png │ │ └── pipe.png ├── bird.py ├── game.py ├── main.py ├── pipe.py ├── settings.py └── world.py ├── sidcodes2727-clock_alarm_stopwatch ├── README.md ├── clock_alarm_stopwatch.py └── requirements.txt ├── souravgoyal-text-analyzer-cli ├── README.md ├── main.py ├── requirements.txt └── samples │ └── sample.txt ├── src └── priyanshjain10-make-a-simple-web-scraper-for-news-headlines │ ├── Add robust news headlines web scraper (Python, CSV export, error handling, best practices) │ ├── README.md │ └── requirements.txt ├── stephikebudu-countdown-timer ├── README.md ├── requirements.txt ├── timer-beep.mp3 └── timer.py ├── stephikebudu-password-generator ├── README.md ├── generator.py └── requirements.txt ├── stephikebudu-translator-app ├── README.md ├── requirements.txt └── translator.py ├── tanyagyanmote-anagram-scrambler ├── README.md ├── main.py └── words.txt ├── tpmsh-build-a-url-shortener-using-flask ├── README.md ├── requirements.txt └── url_shortener.py ├── tpmsh-create-a-bmi-calculator-with-gui ├── README.md └── bmi_calculator.py ├── tpmsh-create-a-currency-converter-using-live-exchange-rates ├── README.md ├── converter.py └── requirements.txt ├── unnati-jaiswal24-make-a-alarm-clock-desktop-app ├── README.md ├── alarm.py └── requirements.txt ├── venkateeshh-markdown-to-html-convertor ├── README.html ├── README.md └── app.py ├── vidhirohira-fruits-game ├── fruits_game.py └── readme.md ├── zenitsu0509-hangman ├── README.md ├── main.py └── test_hangman.py └── ziegluuu-todo-list └── main.py /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/documentation_improvement.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/.github/ISSUE_TEMPLATE/documentation_improvement.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/question.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/.github/ISSUE_TEMPLATE/question.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/support_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/.github/ISSUE_TEMPLATE/support_request.md -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/README.md -------------------------------------------------------------------------------- /assets/Chat-app-client-interface.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/assets/Chat-app-client-interface.png -------------------------------------------------------------------------------- /assets/Chat-app-server-interface.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/assets/Chat-app-server-interface.png -------------------------------------------------------------------------------- /assets/HF-Horizontal-Color-Light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/assets/HF-Horizontal-Color-Light.svg -------------------------------------------------------------------------------- /assets/HF-Stacked-Color-Light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/assets/HF-Stacked-Color-Light.svg -------------------------------------------------------------------------------- /assets/HF2025Header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/assets/HF2025Header.png -------------------------------------------------------------------------------- /guess_the_number.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/guess_the_number.py -------------------------------------------------------------------------------- /heartproj.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/heartproj.py -------------------------------------------------------------------------------- /sebastian_guessing_game.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/sebastian_guessing_game.py -------------------------------------------------------------------------------- /src/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/.DS_Store -------------------------------------------------------------------------------- /src/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Adithya00012-make-a-tip-calculator-web-app-flask/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/Adithya00012-make-a-tip-calculator-web-app-flask/README.md -------------------------------------------------------------------------------- /src/Adithya00012-make-a-tip-calculator-web-app-flask/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/Adithya00012-make-a-tip-calculator-web-app-flask/app.py -------------------------------------------------------------------------------- /src/Adithya00012-make-a-tip-calculator-web-app-flask/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/Adithya00012-make-a-tip-calculator-web-app-flask/requirements.txt -------------------------------------------------------------------------------- /src/Adithya00012-make-a-tip-calculator-web-app-flask/static/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/Adithya00012-make-a-tip-calculator-web-app-flask/static/style.css -------------------------------------------------------------------------------- /src/Adithya00012-make-a-tip-calculator-web-app-flask/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/Adithya00012-make-a-tip-calculator-web-app-flask/templates/index.html -------------------------------------------------------------------------------- /src/Ambika005-buildBlockPuzzleGame/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/Ambika005-buildBlockPuzzleGame/README.md -------------------------------------------------------------------------------- /src/Ambika005-buildBlockPuzzleGame/block_puzzle_game.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/Ambika005-buildBlockPuzzleGame/block_puzzle_game.py -------------------------------------------------------------------------------- /src/Anibhu-Advanced-number-guessing-game/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/Anibhu-Advanced-number-guessing-game/README.md -------------------------------------------------------------------------------- /src/Anibhu-Advanced-number-guessing-game/high_scores.json: -------------------------------------------------------------------------------- 1 | { 2 | "Ani": 170.0 3 | } -------------------------------------------------------------------------------- /src/Anibhu-Advanced-number-guessing-game/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/Anibhu-Advanced-number-guessing-game/main.py -------------------------------------------------------------------------------- /src/Anshul-Bartwal-emotion-detection/EmotionDetection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/Anshul-Bartwal-emotion-detection/EmotionDetection.py -------------------------------------------------------------------------------- /src/Anshul-Bartwal-emotion-detection/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/Anshul-Bartwal-emotion-detection/README.md -------------------------------------------------------------------------------- /src/Anshul-Bartwal-emotion-detection/_mini_XCEPTION.102-0.66.hdf5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/Anshul-Bartwal-emotion-detection/_mini_XCEPTION.102-0.66.hdf5 -------------------------------------------------------------------------------- /src/Anshul-Bartwal-emotion-detection/haarcascade_frontalface_default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/Anshul-Bartwal-emotion-detection/haarcascade_frontalface_default.xml -------------------------------------------------------------------------------- /src/Aryan-Build-an-easy-and-simple-fruits-game-#150/Fruit_game.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/Aryan-Build-an-easy-and-simple-fruits-game-#150/Fruit_game.py -------------------------------------------------------------------------------- /src/Aryan-Build-an-easy-and-simple-fruits-game-#150/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/Aryan-Build-an-easy-and-simple-fruits-game-#150/README.md -------------------------------------------------------------------------------- /src/Ashmit-Tyagi-Weather-Api/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/Ashmit-Tyagi-Weather-Api/README.md -------------------------------------------------------------------------------- /src/Ashmit-Tyagi-Weather-Api/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/Ashmit-Tyagi-Weather-Api/api.py -------------------------------------------------------------------------------- /src/Ashmit-Tyagi-Weather-Api/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/Ashmit-Tyagi-Weather-Api/config.py -------------------------------------------------------------------------------- /src/Ashmit-Tyagi-Weather-Api/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/Ashmit-Tyagi-Weather-Api/main.py -------------------------------------------------------------------------------- /src/Ashmit-Tyagi-Weather-Api/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/Ashmit-Tyagi-Weather-Api/utils.py -------------------------------------------------------------------------------- /src/Ashutosh-agarwal2004-build-a-to-do-list-cli-app-in-python/.gitignore: -------------------------------------------------------------------------------- 1 | tasks.json -------------------------------------------------------------------------------- /src/Ashutosh-agarwal2004-build-a-to-do-list-cli-app-in-python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/Ashutosh-agarwal2004-build-a-to-do-list-cli-app-in-python/README.md -------------------------------------------------------------------------------- /src/Ashutosh-agarwal2004-build-a-to-do-list-cli-app-in-python/images/Capture.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/Ashutosh-agarwal2004-build-a-to-do-list-cli-app-in-python/images/Capture.PNG -------------------------------------------------------------------------------- /src/Ashutosh-agarwal2004-build-a-to-do-list-cli-app-in-python/todo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/Ashutosh-agarwal2004-build-a-to-do-list-cli-app-in-python/todo.py -------------------------------------------------------------------------------- /src/Avik43218-ascii-art-generator-from-image/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/Avik43218-ascii-art-generator-from-image/README.md -------------------------------------------------------------------------------- /src/Avik43218-ascii-art-generator-from-image/image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/Avik43218-ascii-art-generator-from-image/image.jpg -------------------------------------------------------------------------------- /src/Avik43218-ascii-art-generator-from-image/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/Avik43218-ascii-art-generator-from-image/main.py -------------------------------------------------------------------------------- /src/Avik43218-ascii-art-generator-from-image/requirements.txt: -------------------------------------------------------------------------------- 1 | pillow==10.2.0 -------------------------------------------------------------------------------- /src/Avik43218-resume-generator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/Avik43218-resume-generator/README.md -------------------------------------------------------------------------------- /src/Avik43218-resume-generator/requirements.txt: -------------------------------------------------------------------------------- 1 | faker==37.11.0 2 | tqdm==4.67.1 -------------------------------------------------------------------------------- /src/Avik43218-resume-generator/resume_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/Avik43218-resume-generator/resume_generator.py -------------------------------------------------------------------------------- /src/Avik43218-word-guessing-game-cli/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/Avik43218-word-guessing-game-cli/README.md -------------------------------------------------------------------------------- /src/Avik43218-word-guessing-game-cli/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/Avik43218-word-guessing-game-cli/main.py -------------------------------------------------------------------------------- /src/Avik43218-word-guessing-game-cli/valid_words.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/Avik43218-word-guessing-game-cli/valid_words.dat -------------------------------------------------------------------------------- /src/BhavithaMarikeeri-develop-a-countdown-timer-desktop-app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/BhavithaMarikeeri-develop-a-countdown-timer-desktop-app/README.md -------------------------------------------------------------------------------- /src/BhavithaMarikeeri-develop-a-countdown-timer-desktop-app/countdown_timer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/BhavithaMarikeeri-develop-a-countdown-timer-desktop-app/countdown_timer.py -------------------------------------------------------------------------------- /src/BhavithaMarikeeri-develop-a-countdown-timer-desktop-app/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/BhavithaMarikeeri-develop-a-countdown-timer-desktop-app/requirements.txt -------------------------------------------------------------------------------- /src/Brijeshthummar02-create-a-text-based-quiz-app-with-scoring/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/Brijeshthummar02-create-a-text-based-quiz-app-with-scoring/README.md -------------------------------------------------------------------------------- /src/Brijeshthummar02-create-a-text-based-quiz-app-with-scoring/quiz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/Brijeshthummar02-create-a-text-based-quiz-app-with-scoring/quiz.py -------------------------------------------------------------------------------- /src/Brijeshthummar02-develop-a-password-generator-cli-tool/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/Brijeshthummar02-develop-a-password-generator-cli-tool/README.md -------------------------------------------------------------------------------- /src/Brijeshthummar02-develop-a-password-generator-cli-tool/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/Brijeshthummar02-develop-a-password-generator-cli-tool/main.py -------------------------------------------------------------------------------- /src/Brijeshthummar02-pomodoro-timer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/Brijeshthummar02-pomodoro-timer/README.md -------------------------------------------------------------------------------- /src/Brijeshthummar02-pomodoro-timer/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/Brijeshthummar02-pomodoro-timer/main.py -------------------------------------------------------------------------------- /src/Brijeshthummar02-unit-converter-length-mass-temperature/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/Brijeshthummar02-unit-converter-length-mass-temperature/README.md -------------------------------------------------------------------------------- /src/Brijeshthummar02-unit-converter-length-mass-temperature/converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/Brijeshthummar02-unit-converter-length-mass-temperature/converter.py -------------------------------------------------------------------------------- /src/Brijeshthummar02-unit-converter-length-mass-temperature/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/Brijeshthummar02-unit-converter-length-mass-temperature/main.py -------------------------------------------------------------------------------- /src/D3PA-make-a-tip-calculator-web-app-flask/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/D3PA-make-a-tip-calculator-web-app-flask/README.md -------------------------------------------------------------------------------- /src/D3PA-make-a-tip-calculator-web-app-flask/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/D3PA-make-a-tip-calculator-web-app-flask/app.py -------------------------------------------------------------------------------- /src/D3PA-make-a-tip-calculator-web-app-flask/assets/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/D3PA-make-a-tip-calculator-web-app-flask/assets/screenshot.png -------------------------------------------------------------------------------- /src/D3PA-make-a-tip-calculator-web-app-flask/requirements.txt: -------------------------------------------------------------------------------- 1 | Flask==2.3.3 -------------------------------------------------------------------------------- /src/D3PA-make-a-tip-calculator-web-app-flask/static/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/D3PA-make-a-tip-calculator-web-app-flask/static/script.js -------------------------------------------------------------------------------- /src/D3PA-make-a-tip-calculator-web-app-flask/static/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/D3PA-make-a-tip-calculator-web-app-flask/static/style.css -------------------------------------------------------------------------------- /src/D3PA-make-a-tip-calculator-web-app-flask/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/D3PA-make-a-tip-calculator-web-app-flask/templates/index.html -------------------------------------------------------------------------------- /src/DinethShakya23-create-a-weather-app-using-openweathermap-api/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/DinethShakya23-create-a-weather-app-using-openweathermap-api/README.md -------------------------------------------------------------------------------- /src/DinethShakya23-create-a-weather-app-using-openweathermap-api/requirements.txt: -------------------------------------------------------------------------------- 1 | requests -------------------------------------------------------------------------------- /src/DinethShakya23-create-a-weather-app-using-openweathermap-api/weather_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/DinethShakya23-create-a-weather-app-using-openweathermap-api/weather_app.py -------------------------------------------------------------------------------- /src/DmitryChyornyj-youtube-downloader/yt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/DmitryChyornyj-youtube-downloader/yt.py -------------------------------------------------------------------------------- /src/Dronanaik-CPU-Scheduling-Algorithms-Simulator/Demo_video.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/Dronanaik-CPU-Scheduling-Algorithms-Simulator/Demo_video.mp4 -------------------------------------------------------------------------------- /src/Dronanaik-CPU-Scheduling-Algorithms-Simulator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/Dronanaik-CPU-Scheduling-Algorithms-Simulator/README.md -------------------------------------------------------------------------------- /src/Dronanaik-CPU-Scheduling-Algorithms-Simulator/cpu_scheduling_simulator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/Dronanaik-CPU-Scheduling-Algorithms-Simulator/cpu_scheduling_simulator.py -------------------------------------------------------------------------------- /src/Dronanaik-CPU-Scheduling-Algorithms-Simulator/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/Dronanaik-CPU-Scheduling-Algorithms-Simulator/requirements.txt -------------------------------------------------------------------------------- /src/Dronanaik-CPU-Scheduling-Algorithms-Simulator/run_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/Dronanaik-CPU-Scheduling-Algorithms-Simulator/run_demo.py -------------------------------------------------------------------------------- /src/Dronanaik-build-a-chat-app-socket-programming/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/Dronanaik-build-a-chat-app-socket-programming/README.md -------------------------------------------------------------------------------- /src/Dronanaik-build-a-chat-app-socket-programming/image-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/Dronanaik-build-a-chat-app-socket-programming/image-1.png -------------------------------------------------------------------------------- /src/Dronanaik-build-a-chat-app-socket-programming/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/Dronanaik-build-a-chat-app-socket-programming/image.png -------------------------------------------------------------------------------- /src/Dronanaik-build-a-chat-app-socket-programming/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/Dronanaik-build-a-chat-app-socket-programming/main.py -------------------------------------------------------------------------------- /src/Dronanaik-build-a-chat-app-socket-programming/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/Dronanaik-build-a-chat-app-socket-programming/requirements.txt -------------------------------------------------------------------------------- /src/Janvi75_AI-ML_Based_Tic_Tac_Toe/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/Janvi75_AI-ML_Based_Tic_Tac_Toe/README.md -------------------------------------------------------------------------------- /src/Janvi75_AI-ML_Based_Tic_Tac_Toe/__pycache__/functions.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/Janvi75_AI-ML_Based_Tic_Tac_Toe/__pycache__/functions.cpython-313.pyc -------------------------------------------------------------------------------- /src/Janvi75_AI-ML_Based_Tic_Tac_Toe/functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/Janvi75_AI-ML_Based_Tic_Tac_Toe/functions.py -------------------------------------------------------------------------------- /src/Janvi75_AI-ML_Based_Tic_Tac_Toe/test_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/Janvi75_AI-ML_Based_Tic_Tac_Toe/test_functions.py -------------------------------------------------------------------------------- /src/Joystonm-space-shooter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/Joystonm-space-shooter/README.md -------------------------------------------------------------------------------- /src/Joystonm-space-shooter/assets/fonts/simkai.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/Joystonm-space-shooter/assets/fonts/simkai.ttf -------------------------------------------------------------------------------- /src/Joystonm-space-shooter/assets/images/asteroid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/Joystonm-space-shooter/assets/images/asteroid.png -------------------------------------------------------------------------------- /src/Joystonm-space-shooter/assets/images/asteroid_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/Joystonm-space-shooter/assets/images/asteroid_1.png -------------------------------------------------------------------------------- /src/Joystonm-space-shooter/assets/images/background_menu.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/Joystonm-space-shooter/assets/images/background_menu.jpg -------------------------------------------------------------------------------- /src/Joystonm-space-shooter/assets/images/battle_ship.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/Joystonm-space-shooter/assets/images/battle_ship.png -------------------------------------------------------------------------------- /src/Joystonm-space-shooter/assets/images/bg_big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/Joystonm-space-shooter/assets/images/bg_big.png -------------------------------------------------------------------------------- /src/Joystonm-space-shooter/assets/images/bullet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/Joystonm-space-shooter/assets/images/bullet.png -------------------------------------------------------------------------------- /src/Joystonm-space-shooter/assets/images/seamless_space.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/Joystonm-space-shooter/assets/images/seamless_space.png -------------------------------------------------------------------------------- /src/Joystonm-space-shooter/assets/images/ship.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/Joystonm-space-shooter/assets/images/ship.png -------------------------------------------------------------------------------- /src/Joystonm-space-shooter/assets/images/ship_exploded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/Joystonm-space-shooter/assets/images/ship_exploded.png -------------------------------------------------------------------------------- /src/Joystonm-space-shooter/assets/images/space3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/Joystonm-space-shooter/assets/images/space3.jpg -------------------------------------------------------------------------------- /src/Joystonm-space-shooter/assets/sounds/Cool Space Music.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/Joystonm-space-shooter/assets/sounds/Cool Space Music.mp3 -------------------------------------------------------------------------------- /src/Joystonm-space-shooter/assets/sounds/boom.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/Joystonm-space-shooter/assets/sounds/boom.wav -------------------------------------------------------------------------------- /src/Joystonm-space-shooter/assets/sounds/shot.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/Joystonm-space-shooter/assets/sounds/shot.ogg -------------------------------------------------------------------------------- /src/Joystonm-space-shooter/bullet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/Joystonm-space-shooter/bullet.py -------------------------------------------------------------------------------- /src/Joystonm-space-shooter/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/Joystonm-space-shooter/config.py -------------------------------------------------------------------------------- /src/Joystonm-space-shooter/display_prefs.json: -------------------------------------------------------------------------------- 1 | {"fullscreen": false, "window_size": [800, 600]} -------------------------------------------------------------------------------- /src/Joystonm-space-shooter/enemy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/Joystonm-space-shooter/enemy.py -------------------------------------------------------------------------------- /src/Joystonm-space-shooter/high_score.txt: -------------------------------------------------------------------------------- 1 | 1280 -------------------------------------------------------------------------------- /src/Joystonm-space-shooter/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/Joystonm-space-shooter/main.py -------------------------------------------------------------------------------- /src/Joystonm-space-shooter/player.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/Joystonm-space-shooter/player.py -------------------------------------------------------------------------------- /src/Joystonm-space-shooter/powerup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/Joystonm-space-shooter/powerup.py -------------------------------------------------------------------------------- /src/Joystonm-space-shooter/ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/Joystonm-space-shooter/ui.py -------------------------------------------------------------------------------- /src/Joystonm-space-shooter/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/Joystonm-space-shooter/utils.py -------------------------------------------------------------------------------- /src/Kaboombastic-tic.tac.toe/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/Kaboombastic-tic.tac.toe/README.md -------------------------------------------------------------------------------- /src/Kaboombastic-tic.tac.toe/tic_tac_toe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/Kaboombastic-tic.tac.toe/tic_tac_toe.py -------------------------------------------------------------------------------- /src/Krasper707-python-code-explainer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/Krasper707-python-code-explainer/README.md -------------------------------------------------------------------------------- /src/Krasper707-python-code-explainer/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/Krasper707-python-code-explainer/main.py -------------------------------------------------------------------------------- /src/Krasper707-python-code-explainer/requirements.txt: -------------------------------------------------------------------------------- 1 | google.generativeai -------------------------------------------------------------------------------- /src/Kulsum-ahmad- Quote-Generator-Website/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/Kulsum-ahmad- Quote-Generator-Website/README.md -------------------------------------------------------------------------------- /src/Kulsum-ahmad- Quote-Generator-Website/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/Kulsum-ahmad- Quote-Generator-Website/app.py -------------------------------------------------------------------------------- /src/Kulsum-ahmad- Quote-Generator-Website/quotes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/Kulsum-ahmad- Quote-Generator-Website/quotes.json -------------------------------------------------------------------------------- /src/Kulsum-ahmad- Quote-Generator-Website/requirements.txt: -------------------------------------------------------------------------------- 1 | flask -------------------------------------------------------------------------------- /src/Kulsum-ahmad- Quote-Generator-Website/static/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/Kulsum-ahmad- Quote-Generator-Website/static/style.css -------------------------------------------------------------------------------- /src/Kulsum-ahmad- Quote-Generator-Website/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/Kulsum-ahmad- Quote-Generator-Website/templates/index.html -------------------------------------------------------------------------------- /src/Kulsum-ahmad-create-a-binary-to-decimal-converter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/Kulsum-ahmad-create-a-binary-to-decimal-converter/README.md -------------------------------------------------------------------------------- /src/Kulsum-ahmad-create-a-binary-to-decimal-converter/converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/Kulsum-ahmad-create-a-binary-to-decimal-converter/converter.py -------------------------------------------------------------------------------- /src/Kulsum-ahmad-make-a-alarm-clock-desktop-app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/Kulsum-ahmad-make-a-alarm-clock-desktop-app/README.md -------------------------------------------------------------------------------- /src/Kulsum-ahmad-make-a-alarm-clock-desktop-app/alarm_clock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/Kulsum-ahmad-make-a-alarm-clock-desktop-app/alarm_clock.py -------------------------------------------------------------------------------- /src/Kulsum-ahmad-real-estate-price-prediction/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/Kulsum-ahmad-real-estate-price-prediction/.gitignore -------------------------------------------------------------------------------- /src/Kulsum-ahmad-real-estate-price-prediction/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/Kulsum-ahmad-real-estate-price-prediction/LICENSE -------------------------------------------------------------------------------- /src/Kulsum-ahmad-real-estate-price-prediction/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/Kulsum-ahmad-real-estate-price-prediction/README.md -------------------------------------------------------------------------------- /src/Kulsum-ahmad-real-estate-price-prediction/real_estate_india.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/Kulsum-ahmad-real-estate-price-prediction/real_estate_india.csv -------------------------------------------------------------------------------- /src/Kulsum-ahmad-real-estate-price-prediction/realestate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/Kulsum-ahmad-real-estate-price-prediction/realestate.py -------------------------------------------------------------------------------- /src/Lucky-Malik-build-a-File-Organizer-script/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/Lucky-Malik-build-a-File-Organizer-script/README.md -------------------------------------------------------------------------------- /src/Lucky-Malik-build-a-File-Organizer-script/organizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/Lucky-Malik-build-a-File-Organizer-script/organizer.py -------------------------------------------------------------------------------- /src/Lucky-Malik-build-a-File-Organizer-script/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/Lucky-Malik-build-a-File-Organizer-script/requirements.txt -------------------------------------------------------------------------------- /src/MahyudeenShahid-Word-Scramble-Game/high_scores.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/MahyudeenShahid-Word-Scramble-Game/high_scores.json -------------------------------------------------------------------------------- /src/MahyudeenShahid-Word-Scramble-Game/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/MahyudeenShahid-Word-Scramble-Game/main.py -------------------------------------------------------------------------------- /src/MahyudeenShahid-Word-Scramble-Game/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/MahyudeenShahid-Word-Scramble-Game/readme.md -------------------------------------------------------------------------------- /src/MahyudeenShahid-Word-Scramble-Game/stats.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/MahyudeenShahid-Word-Scramble-Game/stats.json -------------------------------------------------------------------------------- /src/Manvi234-rock-classification-project/ReadME.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/Manvi234-rock-classification-project/ReadME.md -------------------------------------------------------------------------------- /src/Manvi234-rock-classification-project/Rock_Classification.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/Manvi234-rock-classification-project/Rock_Classification.ipynb -------------------------------------------------------------------------------- /src/Manvi234-rock-classification-project/aggregateRockData.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/Manvi234-rock-classification-project/aggregateRockData.xlsx -------------------------------------------------------------------------------- /src/Manvi234-rock-classification-project/feature_presence540.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/Manvi234-rock-classification-project/feature_presence540.txt -------------------------------------------------------------------------------- /src/Manvi234-rock-classification-project/rock_classification.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/Manvi234-rock-classification-project/rock_classification.py -------------------------------------------------------------------------------- /src/Manvi234-rock-classification-project/trialData.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/Manvi234-rock-classification-project/trialData.csv -------------------------------------------------------------------------------- /src/Meghana-2124-develop-a-flashcard-app-to-learn-vocabulary/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/Meghana-2124-develop-a-flashcard-app-to-learn-vocabulary/README.md -------------------------------------------------------------------------------- /src/Meghana-2124-develop-a-flashcard-app-to-learn-vocabulary/flashcard_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/Meghana-2124-develop-a-flashcard-app-to-learn-vocabulary/flashcard_app.py -------------------------------------------------------------------------------- /src/NirajDN-motivational-quote-notifier/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/NirajDN-motivational-quote-notifier/Readme.md -------------------------------------------------------------------------------- /src/NirajDN-motivational-quote-notifier/quotes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/NirajDN-motivational-quote-notifier/quotes.py -------------------------------------------------------------------------------- /src/Nishika10-mastermind-game/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/Nishika10-mastermind-game/README.md -------------------------------------------------------------------------------- /src/Nishika10-mastermind-game/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/Nishika10-mastermind-game/main.py -------------------------------------------------------------------------------- /src/Once-1296-Create-a-StopWatch-Application/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/Once-1296-Create-a-StopWatch-Application/README.md -------------------------------------------------------------------------------- /src/Once-1296-Create-a-StopWatch-Application/stopwatch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/Once-1296-Create-a-StopWatch-Application/stopwatch.py -------------------------------------------------------------------------------- /src/Once-1296-Flask-Number-Guessing-Game-Website/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/Once-1296-Flask-Number-Guessing-Game-Website/README.md -------------------------------------------------------------------------------- /src/Once-1296-Flask-Number-Guessing-Game-Website/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/Once-1296-Flask-Number-Guessing-Game-Website/app.py -------------------------------------------------------------------------------- /src/Once-1296-Flask-Number-Guessing-Game-Website/requirements.txt: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | ### 📄 **requirements.txt** 4 | ```txt 5 | Flask>=2.3.0 6 | numpy>=1.24.0 7 | -------------------------------------------------------------------------------- /src/Once-1296-Flask-Number-Guessing-Game-Website/static/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/Once-1296-Flask-Number-Guessing-Game-Website/static/style.css -------------------------------------------------------------------------------- /src/Once-1296-Flask-Number-Guessing-Game-Website/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/Once-1296-Flask-Number-Guessing-Game-Website/templates/index.html -------------------------------------------------------------------------------- /src/Parth-Patil-AIML-Math-Score-Prediction/Math_Score_Predictions_Random_Forest.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/Parth-Patil-AIML-Math-Score-Prediction/Math_Score_Predictions_Random_Forest.ipynb -------------------------------------------------------------------------------- /src/Parth-Patil-AIML-Math-Score-Prediction/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/Parth-Patil-AIML-Math-Score-Prediction/README.md -------------------------------------------------------------------------------- /src/Parth-Patil-AIML-Math-Score-Prediction/test.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/Parth-Patil-AIML-Math-Score-Prediction/test.csv -------------------------------------------------------------------------------- /src/Parth-Patil-AIML-Math-Score-Prediction/train.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/Parth-Patil-AIML-Math-Score-Prediction/train.csv -------------------------------------------------------------------------------- /src/Pratham00007-face-Recognition/images/PR1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/Pratham00007-face-Recognition/images/PR1.jpg -------------------------------------------------------------------------------- /src/Pratham00007-face-Recognition/images/PR2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/Pratham00007-face-Recognition/images/PR2.jpg -------------------------------------------------------------------------------- /src/Pratham00007-face-Recognition/images/PR3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/Pratham00007-face-Recognition/images/PR3.jpg -------------------------------------------------------------------------------- /src/Pratham00007-face-Recognition/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/Pratham00007-face-Recognition/main.py -------------------------------------------------------------------------------- /src/Pratham00007-face-Recognition/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/Pratham00007-face-Recognition/readme.md -------------------------------------------------------------------------------- /src/PratyushRao-MinesweeperCLI/MineSweeperCLI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/PratyushRao-MinesweeperCLI/MineSweeperCLI.py -------------------------------------------------------------------------------- /src/PratyushRao-MinesweeperCLI/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/PratyushRao-MinesweeperCLI/README.md -------------------------------------------------------------------------------- /src/PratyushRao-MinesweeperCLI/assets/EndImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/PratyushRao-MinesweeperCLI/assets/EndImage.png -------------------------------------------------------------------------------- /src/PratyushRao-MinesweeperCLI/assets/StartImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/PratyushRao-MinesweeperCLI/assets/StartImage.png -------------------------------------------------------------------------------- /src/PratyushRao-WordleCLI/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/PratyushRao-WordleCLI/README.md -------------------------------------------------------------------------------- /src/PratyushRao-WordleCLI/WordleCLI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/PratyushRao-WordleCLI/WordleCLI.py -------------------------------------------------------------------------------- /src/PratyushRao-WordleCLI/assets/Win.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/PratyushRao-WordleCLI/assets/Win.png -------------------------------------------------------------------------------- /src/PratyushRao-WordleCLI/assets/words.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/PratyushRao-WordleCLI/assets/words.txt -------------------------------------------------------------------------------- /src/PratyushRao-WordleCLI/requirements.txt: -------------------------------------------------------------------------------- 1 | colorama>=0.4.6 -------------------------------------------------------------------------------- /src/Rajudas94-Code-Roast-or-Compliment/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/Rajudas94-Code-Roast-or-Compliment/README.md -------------------------------------------------------------------------------- /src/Rajudas94-Code-Roast-or-Compliment/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/Rajudas94-Code-Roast-or-Compliment/data.json -------------------------------------------------------------------------------- /src/Rajudas94-Code-Roast-or-Compliment/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/Rajudas94-Code-Roast-or-Compliment/main.py -------------------------------------------------------------------------------- /src/SDash05-build-a-rock-paper-scissors-game/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/SDash05-build-a-rock-paper-scissors-game/main.py -------------------------------------------------------------------------------- /src/SDash05-create-a-binary-to-decimal-converter/binary-to-decimal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/SDash05-create-a-binary-to-decimal-converter/binary-to-decimal.py -------------------------------------------------------------------------------- /src/Saman Tarique-create-a-binary-to-decimal-converter/Screenshot 2025-10-09 152541.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/Saman Tarique-create-a-binary-to-decimal-converter/Screenshot 2025-10-09 152541.png -------------------------------------------------------------------------------- /src/Saman Tarique-create-a-binary-to-decimal-converter/Screenshot 2025-10-09 152624.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/Saman Tarique-create-a-binary-to-decimal-converter/Screenshot 2025-10-09 152624.png -------------------------------------------------------------------------------- /src/Saman Tarique-create-a-binary-to-decimal-converter/Screenshot 2025-10-09 152655.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/Saman Tarique-create-a-binary-to-decimal-converter/Screenshot 2025-10-09 152655.png -------------------------------------------------------------------------------- /src/Saman Tarique-create-a-binary-to-decimal-converter/Screenshot 2025-10-09 152731.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/Saman Tarique-create-a-binary-to-decimal-converter/Screenshot 2025-10-09 152731.png -------------------------------------------------------------------------------- /src/Saman Tarique-create-a-binary-to-decimal-converter/converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/Saman Tarique-create-a-binary-to-decimal-converter/converter.py -------------------------------------------------------------------------------- /src/Saman Tarique-create-a-binary-to-decimal-converter/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/Saman Tarique-create-a-binary-to-decimal-converter/readme.md -------------------------------------------------------------------------------- /src/Sdash05-create-a-pomodoro-timer/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/Sdash05-create-a-pomodoro-timer/main.py -------------------------------------------------------------------------------- /src/ShashwatPathak-01-build-slot-machine/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/ShashwatPathak-01-build-slot-machine/README.md -------------------------------------------------------------------------------- /src/ShashwatPathak-01-build-slot-machine/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/ShashwatPathak-01-build-slot-machine/__init__.py -------------------------------------------------------------------------------- /src/ShashwatPathak-01-build-slot-machine/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/ShashwatPathak-01-build-slot-machine/main.py -------------------------------------------------------------------------------- /src/ShashwatPathak-01-build-slot-machine/requirements,txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/ShashwatPathak-01-build-slot-machine/requirements,txt -------------------------------------------------------------------------------- /src/ShreyDudie-create-a-pomodoro-timer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/ShreyDudie-create-a-pomodoro-timer/README.md -------------------------------------------------------------------------------- /src/ShreyDudie-create-a-pomodoro-timer/timer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/ShreyDudie-create-a-pomodoro-timer/timer.py -------------------------------------------------------------------------------- /src/Spartan1-1-7-create-a-expense-tracker-cli/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/Spartan1-1-7-create-a-expense-tracker-cli/README.md -------------------------------------------------------------------------------- /src/Spartan1-1-7-create-a-expense-tracker-cli/SAMPLE_OUTPUT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/Spartan1-1-7-create-a-expense-tracker-cli/SAMPLE_OUTPUT.md -------------------------------------------------------------------------------- /src/Spartan1-1-7-create-a-expense-tracker-cli/expense_tracker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/Spartan1-1-7-create-a-expense-tracker-cli/expense_tracker.py -------------------------------------------------------------------------------- /src/Spartan1-1-7-create-a-expense-tracker-cli/expenses.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/Spartan1-1-7-create-a-expense-tracker-cli/expenses.json -------------------------------------------------------------------------------- /src/Spartan1-1-7-create-a-expense-tracker-cli/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/Spartan1-1-7-create-a-expense-tracker-cli/requirements.txt -------------------------------------------------------------------------------- /src/Spartan1-1-7-create-a-expense-tracker-cli/test_expense_tracker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/Spartan1-1-7-create-a-expense-tracker-cli/test_expense_tracker.py -------------------------------------------------------------------------------- /src/Spartan1-1-7-make-a-random-joke-generator-using-api/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/Spartan1-1-7-make-a-random-joke-generator-using-api/README.md -------------------------------------------------------------------------------- /src/Spartan1-1-7-make-a-random-joke-generator-using-api/SAMPLE_OUTPUT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/Spartan1-1-7-make-a-random-joke-generator-using-api/SAMPLE_OUTPUT.md -------------------------------------------------------------------------------- /src/Spartan1-1-7-make-a-random-joke-generator-using-api/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/Spartan1-1-7-make-a-random-joke-generator-using-api/config.py -------------------------------------------------------------------------------- /src/Spartan1-1-7-make-a-random-joke-generator-using-api/joke_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/Spartan1-1-7-make-a-random-joke-generator-using-api/joke_generator.py -------------------------------------------------------------------------------- /src/Spartan1-1-7-make-a-random-joke-generator-using-api/requirements.txt: -------------------------------------------------------------------------------- 1 | requests>=2.28.0 -------------------------------------------------------------------------------- /src/Spartan1-1-7-make-a-random-joke-generator-using-api/test_joke_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/Spartan1-1-7-make-a-random-joke-generator-using-api/test_joke_generator.py -------------------------------------------------------------------------------- /src/Spartan1-1-7-make-a-simple-web-scraper-for-news-headlines/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/Spartan1-1-7-make-a-simple-web-scraper-for-news-headlines/README.md -------------------------------------------------------------------------------- /src/Spartan1-1-7-make-a-simple-web-scraper-for-news-headlines/demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/Spartan1-1-7-make-a-simple-web-scraper-for-news-headlines/demo.py -------------------------------------------------------------------------------- /src/Spartan1-1-7-make-a-simple-web-scraper-for-news-headlines/demo_headlines_20251003_181213.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/Spartan1-1-7-make-a-simple-web-scraper-for-news-headlines/demo_headlines_20251003_181213.csv -------------------------------------------------------------------------------- /src/Spartan1-1-7-make-a-simple-web-scraper-for-news-headlines/demo_headlines_20251003_181213.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/Spartan1-1-7-make-a-simple-web-scraper-for-news-headlines/demo_headlines_20251003_181213.json -------------------------------------------------------------------------------- /src/Spartan1-1-7-make-a-simple-web-scraper-for-news-headlines/example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/Spartan1-1-7-make-a-simple-web-scraper-for-news-headlines/example.py -------------------------------------------------------------------------------- /src/Spartan1-1-7-make-a-simple-web-scraper-for-news-headlines/news_scraper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/Spartan1-1-7-make-a-simple-web-scraper-for-news-headlines/news_scraper.py -------------------------------------------------------------------------------- /src/Spartan1-1-7-make-a-simple-web-scraper-for-news-headlines/requirements.txt: -------------------------------------------------------------------------------- 1 | beautifulsoup4==4.12.2 2 | requests==2.31.0 3 | lxml==4.9.3 -------------------------------------------------------------------------------- /src/Spartan1-1-7-make-a-simple-web-scraper-for-news-headlines/test_scraper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/Spartan1-1-7-make-a-simple-web-scraper-for-news-headlines/test_scraper.py -------------------------------------------------------------------------------- /src/TahaValiji-Habit-Tracker/HabitTracker.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/TahaValiji-Habit-Tracker/HabitTracker.xlsx -------------------------------------------------------------------------------- /src/TahaValiji-Habit-Tracker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/TahaValiji-Habit-Tracker/README.md -------------------------------------------------------------------------------- /src/TahaValiji-Habit-Tracker/habit_tracker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/TahaValiji-Habit-Tracker/habit_tracker.py -------------------------------------------------------------------------------- /src/TahaValiji-Matrix_rain_animation/Font/MS Mincho.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/TahaValiji-Matrix_rain_animation/Font/MS Mincho.ttf -------------------------------------------------------------------------------- /src/TahaValiji-Matrix_rain_animation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/TahaValiji-Matrix_rain_animation/README.md -------------------------------------------------------------------------------- /src/TahaValiji-Matrix_rain_animation/matrix_code_rain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/TahaValiji-Matrix_rain_animation/matrix_code_rain.py -------------------------------------------------------------------------------- /src/TahaValiji-create-a-expense-tracker-cli/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/TahaValiji-create-a-expense-tracker-cli/README.md -------------------------------------------------------------------------------- /src/TahaValiji-create-a-expense-tracker-cli/SEM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/TahaValiji-create-a-expense-tracker-cli/SEM.py -------------------------------------------------------------------------------- /src/TahaValiji-create-a-expense-tracker-cli/SEM.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/TahaValiji-create-a-expense-tracker-cli/SEM.xlsx -------------------------------------------------------------------------------- /src/TahaValiji-create-a-expense-tracker-cli/SEMLended.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/TahaValiji-create-a-expense-tracker-cli/SEMLended.csv -------------------------------------------------------------------------------- /src/Tarini-Ag-build-a-dice-rolling-simulator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/Tarini-Ag-build-a-dice-rolling-simulator/README.md -------------------------------------------------------------------------------- /src/Tarini-Ag-build-a-dice-rolling-simulator/dice_rolling_simulator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/Tarini-Ag-build-a-dice-rolling-simulator/dice_rolling_simulator.py -------------------------------------------------------------------------------- /src/Tarini-Ag-build-a-dice-rolling-simulator/requirements.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/TheInfernitex-dijkstra-algorithm-visualizer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/TheInfernitex-dijkstra-algorithm-visualizer/README.md -------------------------------------------------------------------------------- /src/TheInfernitex-dijkstra-algorithm-visualizer/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/TheInfernitex-dijkstra-algorithm-visualizer/main.py -------------------------------------------------------------------------------- /src/TheInfernitex-sorting-visualizer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/TheInfernitex-sorting-visualizer/README.md -------------------------------------------------------------------------------- /src/TheInfernitex-sorting-visualizer/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/TheInfernitex-sorting-visualizer/main.py -------------------------------------------------------------------------------- /src/Varadrajagrawal-build-Student Attendance Tracker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/Varadrajagrawal-build-Student Attendance Tracker/README.md -------------------------------------------------------------------------------- /src/Varadrajagrawal-build-Student Attendance Tracker/Student_Attendanc_Tracker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/Varadrajagrawal-build-Student Attendance Tracker/Student_Attendanc_Tracker.py -------------------------------------------------------------------------------- /src/Varadrajagrawal-build-Student Attendance Tracker/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/Varadrajagrawal-build-Student Attendance Tracker/requirements.txt -------------------------------------------------------------------------------- /src/VedWay-daily-tracker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/VedWay-daily-tracker/README.md -------------------------------------------------------------------------------- /src/VedWay-daily-tracker/daily_tracker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/VedWay-daily-tracker/daily_tracker.py -------------------------------------------------------------------------------- /src/VedWay-daily-tracker/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/VedWay-daily-tracker/requirements.txt -------------------------------------------------------------------------------- /src/VedanshRawat-Calculator-with-a-GUI/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/VedanshRawat-Calculator-with-a-GUI/main.py -------------------------------------------------------------------------------- /src/VedanshRawat-Calculator-with-a-GUI/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/VedanshRawat-Calculator-with-a-GUI/readme.md -------------------------------------------------------------------------------- /src/Vinit3116-pdf-toolkit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/Vinit3116-pdf-toolkit/README.md -------------------------------------------------------------------------------- /src/Vinit3116-pdf-toolkit/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/Vinit3116-pdf-toolkit/main.py -------------------------------------------------------------------------------- /src/Vinit3116-pdf-toolkit/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/Vinit3116-pdf-toolkit/requirements.txt -------------------------------------------------------------------------------- /src/Vis-3-happiness-data-regression/Happiness_data_analysis.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/Vis-3-happiness-data-regression/Happiness_data_analysis.ipynb -------------------------------------------------------------------------------- /src/Vis-3-happiness-data-regression/Happiness_data_analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/Vis-3-happiness-data-regression/Happiness_data_analysis.py -------------------------------------------------------------------------------- /src/Vis-3-happiness-data-regression/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/Vis-3-happiness-data-regression/README.md -------------------------------------------------------------------------------- /src/Vis-3-happiness-data-regression/happiness_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/Vis-3-happiness-data-regression/happiness_data.csv -------------------------------------------------------------------------------- /src/adithyapathakoti-build-a-rock-paper-scissors-game/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/adithyapathakoti-build-a-rock-paper-scissors-game/README.md -------------------------------------------------------------------------------- /src/adithyapathakoti-build-a-rock-paper-scissors-game/rock_paper_scissors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/adithyapathakoti-build-a-rock-paper-scissors-game/rock_paper_scissors.py -------------------------------------------------------------------------------- /src/akashinferno-password-strength-checker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/akashinferno-password-strength-checker/README.md -------------------------------------------------------------------------------- /src/akashinferno-password-strength-checker/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/akashinferno-password-strength-checker/main.py -------------------------------------------------------------------------------- /src/akashinferno-password-strength-checker/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/akashinferno-password-strength-checker/requirements.txt -------------------------------------------------------------------------------- /src/akshat280706_rock-paper-scissors/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/akshat280706_rock-paper-scissors/README.md -------------------------------------------------------------------------------- /src/akshat280706_rock-paper-scissors/rock-paper-scissors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/akshat280706_rock-paper-scissors/rock-paper-scissors.py -------------------------------------------------------------------------------- /src/anand0295-instagram-profile-analyzer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/anand0295-instagram-profile-analyzer/README.md -------------------------------------------------------------------------------- /src/anand0295-instagram-profile-analyzer/instagram_profile_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/anand0295-instagram-profile-analyzer/instagram_profile_info.py -------------------------------------------------------------------------------- /src/anand0295-instagram-profile-analyzer/requirements.txt: -------------------------------------------------------------------------------- 1 | instaloader>=4.9.0 -------------------------------------------------------------------------------- /src/annuuxoxo-book-cricket-cli/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/annuuxoxo-book-cricket-cli/README.md -------------------------------------------------------------------------------- /src/annuuxoxo-book-cricket-cli/book_cricket.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/annuuxoxo-book-cricket-cli/book_cricket.py -------------------------------------------------------------------------------- /src/aryan-2206-create-a-currency-converter-using-live-exchange-rates/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/aryan-2206-create-a-currency-converter-using-live-exchange-rates/README.md -------------------------------------------------------------------------------- /src/aryan-2206-create-a-currency-converter-using-live-exchange-rates/currency_converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/aryan-2206-create-a-currency-converter-using-live-exchange-rates/currency_converter.py -------------------------------------------------------------------------------- /src/aryan-2206-create-a-currency-converter-using-live-exchange-rates/requirements.txt: -------------------------------------------------------------------------------- 1 | requests -------------------------------------------------------------------------------- /src/aryan-2255-build-a-rock-paper-scissors-game/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/aryan-2255-build-a-rock-paper-scissors-game/README.md -------------------------------------------------------------------------------- /src/aryan-2255-build-a-rock-paper-scissors-game/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/aryan-2255-build-a-rock-paper-scissors-game/main.py -------------------------------------------------------------------------------- /src/aryan-2255-build-a-rock-paper-scissors-game/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/aryan-2255-build-a-rock-paper-scissors-game/requirements.txt -------------------------------------------------------------------------------- /src/atulenv-build-a-file-organizer-script/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/atulenv-build-a-file-organizer-script/README.md -------------------------------------------------------------------------------- /src/atulenv-build-a-file-organizer-script/organizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/atulenv-build-a-file-organizer-script/organizer.py -------------------------------------------------------------------------------- /src/atulenv-build-a-file-organizer-script/requirement.txt: -------------------------------------------------------------------------------- 1 | # No external dependencies required for this script 2 | -------------------------------------------------------------------------------- /src/ayaantuts-Advanced-Tic-Tac-Toe/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/ayaantuts-Advanced-Tic-Tac-Toe/ReadMe.md -------------------------------------------------------------------------------- /src/ayaantuts-Advanced-Tic-Tac-Toe/player.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/ayaantuts-Advanced-Tic-Tac-Toe/player.py -------------------------------------------------------------------------------- /src/ayaantuts-Advanced-Tic-Tac-Toe/tictactoe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/ayaantuts-Advanced-Tic-Tac-Toe/tictactoe.py -------------------------------------------------------------------------------- /src/bhavesh-210-develop-a-flashcard-app-to-learn-vocabulary/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/bhavesh-210-develop-a-flashcard-app-to-learn-vocabulary/README.md -------------------------------------------------------------------------------- /src/bhavesh-210-develop-a-flashcard-app-to-learn-vocabulary/flashcard_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/bhavesh-210-develop-a-flashcard-app-to-learn-vocabulary/flashcard_app.py -------------------------------------------------------------------------------- /src/bhavesh-210-develop-a-flashcard-app-to-learn-vocabulary/flashcards.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/bhavesh-210-develop-a-flashcard-app-to-learn-vocabulary/flashcards.json -------------------------------------------------------------------------------- /src/bhavesh-210-develop-a-flashcard-app-to-learn-vocabulary/requirements.txt: -------------------------------------------------------------------------------- 1 | # No external libraries required 2 | # Works with Python 3.8+ 3 | -------------------------------------------------------------------------------- /src/code_with_pratik_07_escpae_the_maze_game/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/code_with_pratik_07_escpae_the_maze_game/Readme.md -------------------------------------------------------------------------------- /src/code_with_pratik_07_escpae_the_maze_game/escpae_the_maze_game.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/code_with_pratik_07_escpae_the_maze_game/escpae_the_maze_game.py -------------------------------------------------------------------------------- /src/devesh1024-QR_Code_Generator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/devesh1024-QR_Code_Generator/README.md -------------------------------------------------------------------------------- /src/devesh1024-QR_Code_Generator/qr-code-generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/devesh1024-QR_Code_Generator/qr-code-generator.py -------------------------------------------------------------------------------- /src/devesh1024-QR_Code_Generator/qrcode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/devesh1024-QR_Code_Generator/qrcode.png -------------------------------------------------------------------------------- /src/devesh1024-QR_Code_Generator/requirements.txt: -------------------------------------------------------------------------------- 1 | qrcode 2 | -------------------------------------------------------------------------------- /src/dip14-j-Automate-hill-climbing-racing-opencv-game/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/dip14-j-Automate-hill-climbing-racing-opencv-game/README.md -------------------------------------------------------------------------------- /src/dip14-j-Automate-hill-climbing-racing-opencv-game/directkeys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/dip14-j-Automate-hill-climbing-racing-opencv-game/directkeys.py -------------------------------------------------------------------------------- /src/dip14-j-Automate-hill-climbing-racing-opencv-game/idea/Game Automation.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/dip14-j-Automate-hill-climbing-racing-opencv-game/idea/Game Automation.iml -------------------------------------------------------------------------------- /src/dip14-j-Automate-hill-climbing-racing-opencv-game/idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/dip14-j-Automate-hill-climbing-racing-opencv-game/idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /src/dip14-j-Automate-hill-climbing-racing-opencv-game/idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/dip14-j-Automate-hill-climbing-racing-opencv-game/idea/misc.xml -------------------------------------------------------------------------------- /src/dip14-j-Automate-hill-climbing-racing-opencv-game/idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/dip14-j-Automate-hill-climbing-racing-opencv-game/idea/modules.xml -------------------------------------------------------------------------------- /src/dip14-j-Automate-hill-climbing-racing-opencv-game/idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/dip14-j-Automate-hill-climbing-racing-opencv-game/idea/workspace.xml -------------------------------------------------------------------------------- /src/dip14-j-Automate-hill-climbing-racing-opencv-game/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/dip14-j-Automate-hill-climbing-racing-opencv-game/main.py -------------------------------------------------------------------------------- /src/dip14-j-Automate-hill-climbing-racing-opencv-game/tempCodeRunnerFile.py: -------------------------------------------------------------------------------- 1 | cv2 -------------------------------------------------------------------------------- /src/dip14-j-Invisible-cloak-OpenCV/Opaque book page.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/dip14-j-Invisible-cloak-OpenCV/Opaque book page.jpeg -------------------------------------------------------------------------------- /src/dip14-j-Invisible-cloak-OpenCV/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/dip14-j-Invisible-cloak-OpenCV/README.md -------------------------------------------------------------------------------- /src/dip14-j-Invisible-cloak-OpenCV/camera start step 1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/dip14-j-Invisible-cloak-OpenCV/camera start step 1.jpeg -------------------------------------------------------------------------------- /src/dip14-j-Invisible-cloak-OpenCV/deepesh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/dip14-j-Invisible-cloak-OpenCV/deepesh.py -------------------------------------------------------------------------------- /src/dip14-j-Invisible-cloak-OpenCV/invisible clock that place and made book transparent.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/dip14-j-Invisible-cloak-OpenCV/invisible clock that place and made book transparent.jpeg -------------------------------------------------------------------------------- /src/hakimlutfi46-build-a-markdown-to-html-converter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/hakimlutfi46-build-a-markdown-to-html-converter/README.md -------------------------------------------------------------------------------- /src/hakimlutfi46-build-a-markdown-to-html-converter/md_converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/hakimlutfi46-build-a-markdown-to-html-converter/md_converter.py -------------------------------------------------------------------------------- /src/hakimlutfi46-build-a-markdown-to-html-converter/output.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/hakimlutfi46-build-a-markdown-to-html-converter/output.html -------------------------------------------------------------------------------- /src/hakimlutfi46-build-a-markdown-to-html-converter/requirements.txt: -------------------------------------------------------------------------------- 1 | # No external dependencies -------------------------------------------------------------------------------- /src/hakimlutfi46-build-a-markdown-to-html-converter/sample.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/hakimlutfi46-build-a-markdown-to-html-converter/sample.md -------------------------------------------------------------------------------- /src/harsimran-kaur190-To-do_list/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/harsimran-kaur190-To-do_list/README.md -------------------------------------------------------------------------------- /src/harsimran-kaur190-To-do_list/to_do_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/harsimran-kaur190-To-do_list/to_do_list.py -------------------------------------------------------------------------------- /src/kavaljeetsinghdev-pomodoro-timer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/kavaljeetsinghdev-pomodoro-timer/README.md -------------------------------------------------------------------------------- /src/kavaljeetsinghdev-pomodoro-timer/pomodoro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/kavaljeetsinghdev-pomodoro-timer/pomodoro.py -------------------------------------------------------------------------------- /src/lightningxyz-rockpaperscissorgui/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/lightningxyz-rockpaperscissorgui/README.md -------------------------------------------------------------------------------- /src/lightningxyz-rockpaperscissorgui/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/lightningxyz-rockpaperscissorgui/main.py -------------------------------------------------------------------------------- /src/moechadSayshi-expense-tracker/READMD.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/moechadSayshi-expense-tracker/READMD.md -------------------------------------------------------------------------------- /src/moechadSayshi-expense-tracker/exp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/moechadSayshi-expense-tracker/exp.py -------------------------------------------------------------------------------- /src/mohitlikestocode-wpm-calculator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/mohitlikestocode-wpm-calculator/README.md -------------------------------------------------------------------------------- /src/mohitlikestocode-wpm-calculator/__init__.py: -------------------------------------------------------------------------------- 1 | """Minimal WPM calculator package entry.""" 2 | 3 | __version__ = "0.1.0" 4 | -------------------------------------------------------------------------------- /src/mohitlikestocode-wpm-calculator/wpm_calculator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/mohitlikestocode-wpm-calculator/wpm_calculator.py -------------------------------------------------------------------------------- /src/mrstrange2003-create-a-bmi-calculator-with-gui/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/mrstrange2003-create-a-bmi-calculator-with-gui/README.md -------------------------------------------------------------------------------- /src/mrstrange2003-create-a-bmi-calculator-with-gui/bmi_calculator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/mrstrange2003-create-a-bmi-calculator-with-gui/bmi_calculator.py -------------------------------------------------------------------------------- /src/mrstrange2003-develop-a-simple-calculator-with-gui-tkinter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/mrstrange2003-develop-a-simple-calculator-with-gui-tkinter/README.md -------------------------------------------------------------------------------- /src/mrstrange2003-develop-a-simple-calculator-with-gui-tkinter/gui_calculator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/mrstrange2003-develop-a-simple-calculator-with-gui-tkinter/gui_calculator.py -------------------------------------------------------------------------------- /src/muskaankarwa-word-guessing-game/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/muskaankarwa-word-guessing-game/readme.md -------------------------------------------------------------------------------- /src/muskaankarwa-word-guessing-game/word-guess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/muskaankarwa-word-guessing-game/word-guess.py -------------------------------------------------------------------------------- /src/muskaankarwa-word-scramble/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/muskaankarwa-word-scramble/readme.md -------------------------------------------------------------------------------- /src/muskaankarwa-word-scramble/word-scramble.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/muskaankarwa-word-scramble/word-scramble.py -------------------------------------------------------------------------------- /src/newcodergit-Alarm-desktop-app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/newcodergit-Alarm-desktop-app/README.md -------------------------------------------------------------------------------- /src/newcodergit-Alarm-desktop-app/alarm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/newcodergit-Alarm-desktop-app/alarm.py -------------------------------------------------------------------------------- /src/newcodergit-Alarm-desktop-app/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/newcodergit-Alarm-desktop-app/requirements.txt -------------------------------------------------------------------------------- /src/newcodergit-create-a-pomodoro-timer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/newcodergit-create-a-pomodoro-timer/README.md -------------------------------------------------------------------------------- /src/newcodergit-create-a-pomodoro-timer/pomodoro_timer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/newcodergit-create-a-pomodoro-timer/pomodoro_timer.py -------------------------------------------------------------------------------- /src/nothariharan-Typing-Speed-Test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/nothariharan-Typing-Speed-Test/README.md -------------------------------------------------------------------------------- /src/nothariharan-Typing-Speed-Test/type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/nothariharan-Typing-Speed-Test/type.py -------------------------------------------------------------------------------- /src/pulkittrillion-billsaathi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/pulkittrillion-billsaathi/README.md -------------------------------------------------------------------------------- /src/pulkittrillion-billsaathi/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/pulkittrillion-billsaathi/main.py -------------------------------------------------------------------------------- /src/pulkittrillion-punelocal/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/pulkittrillion-punelocal/main.py -------------------------------------------------------------------------------- /src/pulkittrillion-punelocal/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/pulkittrillion-punelocal/readme.md -------------------------------------------------------------------------------- /src/purrvax-hangman/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/purrvax-hangman/README.md -------------------------------------------------------------------------------- /src/purrvax-hangman/hangman.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/purrvax-hangman/hangman.py -------------------------------------------------------------------------------- /src/regenpalkar-custom-rotational-cipher-tool/Caesar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/regenpalkar-custom-rotational-cipher-tool/Caesar.py -------------------------------------------------------------------------------- /src/regenpalkar-custom-rotational-cipher-tool/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/regenpalkar-custom-rotational-cipher-tool/README.md -------------------------------------------------------------------------------- /src/regenpalkar28-combat-simulator/Combat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/regenpalkar28-combat-simulator/Combat.py -------------------------------------------------------------------------------- /src/regenpalkar28-combat-simulator/Images/Dice/DICE_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/regenpalkar28-combat-simulator/Images/Dice/DICE_1.png -------------------------------------------------------------------------------- /src/regenpalkar28-combat-simulator/Images/Dice/DICE_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/regenpalkar28-combat-simulator/Images/Dice/DICE_2.png -------------------------------------------------------------------------------- /src/regenpalkar28-combat-simulator/Images/Dice/DICE_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/regenpalkar28-combat-simulator/Images/Dice/DICE_3.png -------------------------------------------------------------------------------- /src/regenpalkar28-combat-simulator/Images/Dice/DICE_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/regenpalkar28-combat-simulator/Images/Dice/DICE_4.png -------------------------------------------------------------------------------- /src/regenpalkar28-combat-simulator/Images/Dice/DICE_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/regenpalkar28-combat-simulator/Images/Dice/DICE_5.png -------------------------------------------------------------------------------- /src/regenpalkar28-combat-simulator/Images/Dice/DICE_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/regenpalkar28-combat-simulator/Images/Dice/DICE_6.png -------------------------------------------------------------------------------- /src/regenpalkar28-combat-simulator/Images/Knight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/regenpalkar28-combat-simulator/Images/Knight.png -------------------------------------------------------------------------------- /src/regenpalkar28-combat-simulator/Images/Knight_Attack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/regenpalkar28-combat-simulator/Images/Knight_Attack.png -------------------------------------------------------------------------------- /src/regenpalkar28-combat-simulator/Images/Ninja.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/regenpalkar28-combat-simulator/Images/Ninja.png -------------------------------------------------------------------------------- /src/regenpalkar28-combat-simulator/Images/Ninja_Attack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/regenpalkar28-combat-simulator/Images/Ninja_Attack.png -------------------------------------------------------------------------------- /src/regenpalkar28-combat-simulator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/regenpalkar28-combat-simulator/README.md -------------------------------------------------------------------------------- /src/regenpalkar28-combat-simulator/requirements.txt: -------------------------------------------------------------------------------- 1 | pygame==2.6.1 -------------------------------------------------------------------------------- /src/rishanmenezes-build-a-dice-rolling-simulator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/rishanmenezes-build-a-dice-rolling-simulator/README.md -------------------------------------------------------------------------------- /src/rishanmenezes-build-a-dice-rolling-simulator/__init__.py: -------------------------------------------------------------------------------- 1 | """Package marker for the Dice Rolling Simulator project.""" -------------------------------------------------------------------------------- /src/rishanmenezes-build-a-dice-rolling-simulator/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/rishanmenezes-build-a-dice-rolling-simulator/cli.py -------------------------------------------------------------------------------- /src/rishanmenezes-build-a-dice-rolling-simulator/dice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/rishanmenezes-build-a-dice-rolling-simulator/dice.py -------------------------------------------------------------------------------- /src/rishanmenezes-build-a-dice-rolling-simulator/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/rishanmenezes-build-a-dice-rolling-simulator/requirements.txt -------------------------------------------------------------------------------- /src/rishanmenezes-build-a-dice-rolling-simulator/test_dice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/rishanmenezes-build-a-dice-rolling-simulator/test_dice.py -------------------------------------------------------------------------------- /src/rishanmenezes-create-a-binary-to-decimal-converter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/rishanmenezes-create-a-binary-to-decimal-converter/README.md -------------------------------------------------------------------------------- /src/rishanmenezes-create-a-binary-to-decimal-converter/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/rishanmenezes-create-a-binary-to-decimal-converter/__init__.py -------------------------------------------------------------------------------- /src/rishanmenezes-create-a-binary-to-decimal-converter/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/rishanmenezes-create-a-binary-to-decimal-converter/cli.py -------------------------------------------------------------------------------- /src/rishanmenezes-create-a-binary-to-decimal-converter/converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/rishanmenezes-create-a-binary-to-decimal-converter/converter.py -------------------------------------------------------------------------------- /src/rishanmenezes-create-a-binary-to-decimal-converter/requirements.txt: -------------------------------------------------------------------------------- 1 | # No external dependencies 2 | -------------------------------------------------------------------------------- /src/rishanmenezes-create-a-binary-to-decimal-converter/test_converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/rishanmenezes-create-a-binary-to-decimal-converter/test_converter.py -------------------------------------------------------------------------------- /src/rishanmenezes-create-a-stop-watch-application/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/rishanmenezes-create-a-stop-watch-application/README.md -------------------------------------------------------------------------------- /src/rishanmenezes-create-a-stop-watch-application/__init__.py: -------------------------------------------------------------------------------- 1 | """Package marker for the Stopwatch Application.""" -------------------------------------------------------------------------------- /src/rishanmenezes-create-a-stop-watch-application/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/rishanmenezes-create-a-stop-watch-application/cli.py -------------------------------------------------------------------------------- /src/rishanmenezes-create-a-stop-watch-application/requirements.txt: -------------------------------------------------------------------------------- 1 | pytest>=7.4.3 -------------------------------------------------------------------------------- /src/rishanmenezes-create-a-stop-watch-application/stopwatch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/rishanmenezes-create-a-stop-watch-application/stopwatch.py -------------------------------------------------------------------------------- /src/rishanmenezes-create-a-stop-watch-application/test_stopwatch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/rishanmenezes-create-a-stop-watch-application/test_stopwatch.py -------------------------------------------------------------------------------- /src/rishanmenezes-develop-a-simple-calculator-with-gui-tkinter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/rishanmenezes-develop-a-simple-calculator-with-gui-tkinter/README.md -------------------------------------------------------------------------------- /src/rishanmenezes-develop-a-simple-calculator-with-gui-tkinter/calculator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/rishanmenezes-develop-a-simple-calculator-with-gui-tkinter/calculator.py -------------------------------------------------------------------------------- /src/rishanmenezes-develop-a-simple-calculator-with-gui-tkinter/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/rishanmenezes-develop-a-simple-calculator-with-gui-tkinter/requirements.txt -------------------------------------------------------------------------------- /src/safwanahmadsaffi-building-a-snake-game/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/safwanahmadsaffi-building-a-snake-game/README.md -------------------------------------------------------------------------------- /src/safwanahmadsaffi-building-a-snake-game/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/safwanahmadsaffi-building-a-snake-game/main.py -------------------------------------------------------------------------------- /src/safwanahmadsaffi-building-a-snake-game/requirements.txt: -------------------------------------------------------------------------------- 1 | pygame -------------------------------------------------------------------------------- /src/safwanahmadsaffi-guess_the_number/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/safwanahmadsaffi-guess_the_number/README.md -------------------------------------------------------------------------------- /src/safwanahmadsaffi-guess_the_number/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/safwanahmadsaffi-guess_the_number/requirements.txt -------------------------------------------------------------------------------- /src/safwanahmadsaffi-guess_the_number/todo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/safwanahmadsaffi-guess_the_number/todo.py -------------------------------------------------------------------------------- /src/safwanahmadsaffi-simple-calculator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/safwanahmadsaffi-simple-calculator/README.md -------------------------------------------------------------------------------- /src/safwanahmadsaffi-simple-calculator/calculator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/safwanahmadsaffi-simple-calculator/calculator.py -------------------------------------------------------------------------------- /src/safwanahmadsaffi-simple-calculator/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/safwanahmadsaffi-simple-calculator/main.py -------------------------------------------------------------------------------- /src/safwanahmadsaffi-simple-calculator/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/safwanahmadsaffi-simple-calculator/requirements.txt -------------------------------------------------------------------------------- /src/sameera731-recipe-recommender/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/sameera731-recipe-recommender/README.md -------------------------------------------------------------------------------- /src/sameera731-recipe-recommender/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/sameera731-recipe-recommender/main.py -------------------------------------------------------------------------------- /src/sameera731-recipe-recommender/recipes.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/sameera731-recipe-recommender/recipes.db -------------------------------------------------------------------------------- /src/sameera731-recipe-recommender/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/sameera731-recipe-recommender/requirements.txt -------------------------------------------------------------------------------- /src/sameera731-recipe-recommender/seed_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/sameera731-recipe-recommender/seed_data.json -------------------------------------------------------------------------------- /src/sameera731-recipe-recommender/templates/add_recipe.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/sameera731-recipe-recommender/templates/add_recipe.html -------------------------------------------------------------------------------- /src/sameera731-recipe-recommender/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/sameera731-recipe-recommender/templates/index.html -------------------------------------------------------------------------------- /src/sameera731-recipe-recommender/templates/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/sameera731-recipe-recommender/templates/search.html -------------------------------------------------------------------------------- /src/saniya-exp-DiceRollingSimulator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/saniya-exp-DiceRollingSimulator/README.md -------------------------------------------------------------------------------- /src/saniya-exp-DiceRollingSimulator/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/saniya-exp-DiceRollingSimulator/main.py -------------------------------------------------------------------------------- /src/saniya-exp-LanguageTranslator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/saniya-exp-LanguageTranslator/README.md -------------------------------------------------------------------------------- /src/saniya-exp-LanguageTranslator/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/saniya-exp-LanguageTranslator/main.py -------------------------------------------------------------------------------- /src/saniya-exp-LanguageTranslator/requirements.txt: -------------------------------------------------------------------------------- 1 | googletrans==4.0.0-rc1 2 | -------------------------------------------------------------------------------- /src/saniya-exp-binary-to-decimal/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/saniya-exp-binary-to-decimal/README.md -------------------------------------------------------------------------------- /src/saniya-exp-binary-to-decimal/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/saniya-exp-binary-to-decimal/main.py -------------------------------------------------------------------------------- /src/saniya-exp-rock-paper-scissors/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/saniya-exp-rock-paper-scissors/README.md -------------------------------------------------------------------------------- /src/saniya-exp-rock-paper-scissors/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/saniya-exp-rock-paper-scissors/main.py -------------------------------------------------------------------------------- /src/sapekshpareek-create-a-binary-to-decimal-converter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/sapekshpareek-create-a-binary-to-decimal-converter/README.md -------------------------------------------------------------------------------- /src/sapekshpareek-create-a-binary-to-decimal-converter/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/sapekshpareek-create-a-binary-to-decimal-converter/main.py -------------------------------------------------------------------------------- /src/sapekshpareek-create-a-binary-to-decimal-converter/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/sapekshpareek-create-a-binary-to-decimal-converter/requirements.txt -------------------------------------------------------------------------------- /src/sapekshpareek-create-a-binary-to-decimal-converter/tests/test_converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/sapekshpareek-create-a-binary-to-decimal-converter/tests/test_converter.py -------------------------------------------------------------------------------- /src/shan-droid-png-dungeon-explorer/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/shan-droid-png-dungeon-explorer/Readme.md -------------------------------------------------------------------------------- /src/shan-droid-png-dungeon-explorer/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/shan-droid-png-dungeon-explorer/main.py -------------------------------------------------------------------------------- /src/shepherdking67-build-a-rock-paper-scissors-game/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/shepherdking67-build-a-rock-paper-scissors-game/README.md -------------------------------------------------------------------------------- /src/shepherdking67-build-a-rock-paper-scissors-game/game.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/shepherdking67-build-a-rock-paper-scissors-game/game.py -------------------------------------------------------------------------------- /src/shepherdking67-build-a-rock-paper-scissors-game/requirements.txt: -------------------------------------------------------------------------------- 1 | # No external dependencies 2 | -------------------------------------------------------------------------------- /src/shepherdking67-reaction-time-tester/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/shepherdking67-reaction-time-tester/README.md -------------------------------------------------------------------------------- /src/shepherdking67-reaction-time-tester/reaction_time.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/shepherdking67-reaction-time-tester/reaction_time.py -------------------------------------------------------------------------------- /src/shudhodhan1089_FlappyBird_game/assets/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/shudhodhan1089_FlappyBird_game/assets/.DS_Store -------------------------------------------------------------------------------- /src/shudhodhan1089_FlappyBird_game/assets/bird/0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/shudhodhan1089_FlappyBird_game/assets/bird/0.png -------------------------------------------------------------------------------- /src/shudhodhan1089_FlappyBird_game/assets/bird/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/shudhodhan1089_FlappyBird_game/assets/bird/1.png -------------------------------------------------------------------------------- /src/shudhodhan1089_FlappyBird_game/assets/bird/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/shudhodhan1089_FlappyBird_game/assets/bird/2.png -------------------------------------------------------------------------------- /src/shudhodhan1089_FlappyBird_game/assets/terrain/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/shudhodhan1089_FlappyBird_game/assets/terrain/bg.png -------------------------------------------------------------------------------- /src/shudhodhan1089_FlappyBird_game/assets/terrain/ground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/shudhodhan1089_FlappyBird_game/assets/terrain/ground.png -------------------------------------------------------------------------------- /src/shudhodhan1089_FlappyBird_game/assets/terrain/pipe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/shudhodhan1089_FlappyBird_game/assets/terrain/pipe.png -------------------------------------------------------------------------------- /src/shudhodhan1089_FlappyBird_game/bird.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/shudhodhan1089_FlappyBird_game/bird.py -------------------------------------------------------------------------------- /src/shudhodhan1089_FlappyBird_game/game.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/shudhodhan1089_FlappyBird_game/game.py -------------------------------------------------------------------------------- /src/shudhodhan1089_FlappyBird_game/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/shudhodhan1089_FlappyBird_game/main.py -------------------------------------------------------------------------------- /src/shudhodhan1089_FlappyBird_game/pipe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/shudhodhan1089_FlappyBird_game/pipe.py -------------------------------------------------------------------------------- /src/shudhodhan1089_FlappyBird_game/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/shudhodhan1089_FlappyBird_game/settings.py -------------------------------------------------------------------------------- /src/shudhodhan1089_FlappyBird_game/world.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/shudhodhan1089_FlappyBird_game/world.py -------------------------------------------------------------------------------- /src/sidcodes2727-clock_alarm_stopwatch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/sidcodes2727-clock_alarm_stopwatch/README.md -------------------------------------------------------------------------------- /src/sidcodes2727-clock_alarm_stopwatch/clock_alarm_stopwatch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/sidcodes2727-clock_alarm_stopwatch/clock_alarm_stopwatch.py -------------------------------------------------------------------------------- /src/sidcodes2727-clock_alarm_stopwatch/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/sidcodes2727-clock_alarm_stopwatch/requirements.txt -------------------------------------------------------------------------------- /src/souravgoyal-text-analyzer-cli/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/souravgoyal-text-analyzer-cli/README.md -------------------------------------------------------------------------------- /src/souravgoyal-text-analyzer-cli/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/souravgoyal-text-analyzer-cli/main.py -------------------------------------------------------------------------------- /src/souravgoyal-text-analyzer-cli/requirements.txt: -------------------------------------------------------------------------------- 1 | # No external dependencies required 2 | -------------------------------------------------------------------------------- /src/souravgoyal-text-analyzer-cli/samples/sample.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/souravgoyal-text-analyzer-cli/samples/sample.txt -------------------------------------------------------------------------------- /src/src/priyanshjain10-make-a-simple-web-scraper-for-news-headlines/Add robust news headlines web scraper (Python, CSV export, error handling, best practices): -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/src/priyanshjain10-make-a-simple-web-scraper-for-news-headlines/Add robust news headlines web scraper (Python, CSV export, error handling, best practices) -------------------------------------------------------------------------------- /src/src/priyanshjain10-make-a-simple-web-scraper-for-news-headlines/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/src/priyanshjain10-make-a-simple-web-scraper-for-news-headlines/README.md -------------------------------------------------------------------------------- /src/src/priyanshjain10-make-a-simple-web-scraper-for-news-headlines/requirements.txt: -------------------------------------------------------------------------------- 1 | requests 2 | beautifulsoup4 3 | -------------------------------------------------------------------------------- /src/stephikebudu-countdown-timer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/stephikebudu-countdown-timer/README.md -------------------------------------------------------------------------------- /src/stephikebudu-countdown-timer/requirements.txt: -------------------------------------------------------------------------------- 1 | playsound==1.3.0 -------------------------------------------------------------------------------- /src/stephikebudu-countdown-timer/timer-beep.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/stephikebudu-countdown-timer/timer-beep.mp3 -------------------------------------------------------------------------------- /src/stephikebudu-countdown-timer/timer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/stephikebudu-countdown-timer/timer.py -------------------------------------------------------------------------------- /src/stephikebudu-password-generator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/stephikebudu-password-generator/README.md -------------------------------------------------------------------------------- /src/stephikebudu-password-generator/generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/stephikebudu-password-generator/generator.py -------------------------------------------------------------------------------- /src/stephikebudu-password-generator/requirements.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/stephikebudu-translator-app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/stephikebudu-translator-app/README.md -------------------------------------------------------------------------------- /src/stephikebudu-translator-app/requirements.txt: -------------------------------------------------------------------------------- 1 | googletrans==4.0.0rc1 -------------------------------------------------------------------------------- /src/stephikebudu-translator-app/translator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/stephikebudu-translator-app/translator.py -------------------------------------------------------------------------------- /src/tanyagyanmote-anagram-scrambler/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/tanyagyanmote-anagram-scrambler/README.md -------------------------------------------------------------------------------- /src/tanyagyanmote-anagram-scrambler/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/tanyagyanmote-anagram-scrambler/main.py -------------------------------------------------------------------------------- /src/tanyagyanmote-anagram-scrambler/words.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/tanyagyanmote-anagram-scrambler/words.txt -------------------------------------------------------------------------------- /src/tpmsh-build-a-url-shortener-using-flask/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/tpmsh-build-a-url-shortener-using-flask/README.md -------------------------------------------------------------------------------- /src/tpmsh-build-a-url-shortener-using-flask/requirements.txt: -------------------------------------------------------------------------------- 1 | Flask -------------------------------------------------------------------------------- /src/tpmsh-build-a-url-shortener-using-flask/url_shortener.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/tpmsh-build-a-url-shortener-using-flask/url_shortener.py -------------------------------------------------------------------------------- /src/tpmsh-create-a-bmi-calculator-with-gui/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/tpmsh-create-a-bmi-calculator-with-gui/README.md -------------------------------------------------------------------------------- /src/tpmsh-create-a-bmi-calculator-with-gui/bmi_calculator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/tpmsh-create-a-bmi-calculator-with-gui/bmi_calculator.py -------------------------------------------------------------------------------- /src/tpmsh-create-a-currency-converter-using-live-exchange-rates/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/tpmsh-create-a-currency-converter-using-live-exchange-rates/README.md -------------------------------------------------------------------------------- /src/tpmsh-create-a-currency-converter-using-live-exchange-rates/converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/tpmsh-create-a-currency-converter-using-live-exchange-rates/converter.py -------------------------------------------------------------------------------- /src/tpmsh-create-a-currency-converter-using-live-exchange-rates/requirements.txt: -------------------------------------------------------------------------------- 1 | requests -------------------------------------------------------------------------------- /src/unnati-jaiswal24-make-a-alarm-clock-desktop-app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/unnati-jaiswal24-make-a-alarm-clock-desktop-app/README.md -------------------------------------------------------------------------------- /src/unnati-jaiswal24-make-a-alarm-clock-desktop-app/alarm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/unnati-jaiswal24-make-a-alarm-clock-desktop-app/alarm.py -------------------------------------------------------------------------------- /src/unnati-jaiswal24-make-a-alarm-clock-desktop-app/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/unnati-jaiswal24-make-a-alarm-clock-desktop-app/requirements.txt -------------------------------------------------------------------------------- /src/venkateeshh-markdown-to-html-convertor/README.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/venkateeshh-markdown-to-html-convertor/README.html -------------------------------------------------------------------------------- /src/venkateeshh-markdown-to-html-convertor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/venkateeshh-markdown-to-html-convertor/README.md -------------------------------------------------------------------------------- /src/venkateeshh-markdown-to-html-convertor/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/venkateeshh-markdown-to-html-convertor/app.py -------------------------------------------------------------------------------- /src/vidhirohira-fruits-game/fruits_game.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/vidhirohira-fruits-game/fruits_game.py -------------------------------------------------------------------------------- /src/vidhirohira-fruits-game/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/vidhirohira-fruits-game/readme.md -------------------------------------------------------------------------------- /src/zenitsu0509-hangman/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/zenitsu0509-hangman/README.md -------------------------------------------------------------------------------- /src/zenitsu0509-hangman/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/zenitsu0509-hangman/main.py -------------------------------------------------------------------------------- /src/zenitsu0509-hangman/test_hangman.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/zenitsu0509-hangman/test_hangman.py -------------------------------------------------------------------------------- /src/ziegluuu-todo-list/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arya2004/beginner-python-mini-projects-hacktoberfest-2025/HEAD/src/ziegluuu-todo-list/main.py --------------------------------------------------------------------------------