{"id":24927038,"url":"https://github.com/anshrathod/basic-python-scripts","last_synced_at":"2025-04-09T20:42:11.089Z","repository":{"id":41094225,"uuid":"300252537","full_name":"anshrathod/Basic-Python-Scripts","owner":"anshrathod","description":"Created For HacktoberFest.","archived":false,"fork":false,"pushed_at":"2023-05-04T02:15:50.000Z","size":60628,"stargazers_count":26,"open_issues_count":23,"forks_count":97,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-03-23T22:37:32.912Z","etag":null,"topics":["digitalocean","good-first-issue","hacktoberfest","hacktoberfest-accepted","hacktoberfest-starter","hacktoberfest2022","open-source","python","python36"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/anshrathod.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2020-10-01T11:20:39.000Z","updated_at":"2025-01-09T19:58:39.000Z","dependencies_parsed_at":"2023-01-31T11:01:49.369Z","dependency_job_id":null,"html_url":"https://github.com/anshrathod/Basic-Python-Scripts","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/anshrathod%2FBasic-Python-Scripts","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/anshrathod%2FBasic-Python-Scripts/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/anshrathod%2FBasic-Python-Scripts/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/anshrathod%2FBasic-Python-Scripts/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/anshrathod","download_url":"https://codeload.github.com/anshrathod/Basic-Python-Scripts/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248109976,"owners_count":21049408,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["digitalocean","good-first-issue","hacktoberfest","hacktoberfest-accepted","hacktoberfest-starter","hacktoberfest2022","open-source","python","python36"],"created_at":"2025-02-02T12:54:34.800Z","updated_at":"2025-04-09T20:42:11.058Z","avatar_url":"https://github.com/anshrathod.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Basic-Python-Scripts\n\nCreated For HacktoberFest.\nAwesome Resources\n\n😎 List of helpful basic python scripts added by the community for the community!\n\n## Purpose\n\nThis repository aims to help contributors participate in Hacktoberfest easily while also helping others as well.\nTo contribute please Submit Valid Pull Requests which satisfies the issues raised.\n\n## Contribution\n\nTo contribute, please check out our contribution guide [here](CONTRIBUTING.md).\n\n## Content\n\n**Sorting Algorithms**\n  - [Linear Search](https://github.com/anshrathod/Basic-Python-Scripts/blob/master/DSA/Searching/LinearSearch.py)\n  - [Binary Search](https://github.com/anshrathod/Basic-Python-Scripts/blob/master/DSA/Searching/binarySearch.py)\n  - [Merge Sort](https://github.com/anshrathod/Basic-Python-Scripts/blob/master/DSA/Sorting/MergeSort.py)\n  - [Quick Sort](https://github.com/anshrathod/Basic-Python-Scripts/blob/master/DSA/Sorting/quicksort.py)\n  - [Radix Sort](https://github.com/anshrathod/Basic-Python-Scripts/blob/master/DSA/Sorting/RadixSort.py)\n  - [Sorting](https://github.com/anshrathod/Basic-Python-Scripts/blob/master/DSA/Sorting/sorting.py)\n  - [Insertion Sort](https://github.com/anshrathod/Basic-Python-Scripts/blob/master/DSA/Sorting/InsertionSort.py)\n\n**Basic Python Scripts**\n  - [Compund](https://github.com/anshrathod/Basic-Python-Scripts/blob/master/DSA/Mathematical/compund.py)\n  - [Operators](https://github.com/anshrathod/Basic-Python-Scripts/blob/master/DSA/Mathematical/operators.py)\n  - [Perfect Number](https://github.com/anshrathod/Basic-Python-Scripts/blob/master/DSA/Mathematical/perfectno.py)\n  - [Power of a Number](https://github.com/anshrathod/Basic-Python-Scripts/blob/master/DSA/Mathematical/ppower.py)\n  - [FizzBuzz](https://github.com/anshrathod/Basic-Python-Scripts/blob/master/DSA/Mathematical/fizzbuzz.py)\n  - [Python switch case implementation](https://github.com/anshrathod/Basic-Python-Scripts/blob/master/random/switch_case.py)\n  - [Find Missing Number](https://github.com/anshrathod/Basic-Python-Scripts/blob/master/DSA/Mathematical/find_missing_number.py)\n  - [Send Alerts](https://github.com/anshrathod/Basic-Python-Scripts/tree/master/Web/Send%20Alerts)\n  - [Basic Calculator](https://github.com/anshrathod/Basic-Python-Scripts/blob/master/Utils/simple_calculator.py)\n  - [Right Triangle](https://github.com/anshrathod/Basic-Python-Scripts/blob/master/DSA/Mathematical/RightTriangle.py)\n  - [Armstrong Number](https://github.com/anshrathod/Basic-Python-Scripts/blob/master/DSA/Mathematical/Maitreyi88_armstrongno.py)\n  - [Fibonacci](https://github.com/anshrathod/Basic-Python-Scripts/blob/master/DSA/Mathematical/Maitreyi88_fibonacci.py)\n  - [Palindrome](https://github.com/anshrathod/Basic-Python-Scripts/blob/master/DSA/Mathematical/Maitreyi88_palindrome.py)\n  - [Prime Number](https://github.com/anshrathod/Basic-Python-Scripts/blob/master/DSA/Mathematical/Maitreyi88_primeno.py)\n  - [Finding area of a Triangle](https://github.com/anshrathod/Basic-Python-Scripts/blob/master/DSA/Mathematical/Find_area%20_of_triangle.py)\n  - [Execution Time Utility](https://github.com/anshrathod/Basic-Python-Scripts/tree/master/Utils/Execution-time-utility)\n  - [Instagram Bot](https://github.com/anshrathod/Basic-Python-Scripts/tree/master/Bots/InstaGramBot)\n  - [Python Telegram Bot](https://github.com/anshrathod/Basic-Python-Scripts/tree/master/Bots/Python-Telegram-bot)\n  - [Quadratic Equation](https://github.com/anshrathod/Basic-Python-Scripts/tree/master/DSA/Mathematical/Quadratic%20equation)\n  - [Telegram Echo Bot](https://github.com/anshrathod/Basic-Python-Scripts/tree/master/Bots/TelegramEchoBot)\n  - [Web Scraping](https://github.com/anshrathod/Basic-Python-Scripts/tree/master/Web-Scraping)\n  - [WhatsApp-message-Automation](https://github.com/anshrathod/Basic-Python-Scripts/tree/master/Bots/WhatsApp-message-automation)\n  - [Working With Files](https://github.com/anshrathod/Basic-Python-Scripts/tree/master/Utils/WorkingWithFiles)\n  - [Pinging Websites](https://github.com/anshrathod/Basic-Python-Scripts/tree/master/Bots/pinging-websites)\n  - [Pychat](https://github.com/anshrathod/Basic-Python-Scripts/tree/master/Web/pychat)\n  - [AI Cancer Module](https://github.com/anshrathod/Basic-Python-Scripts/blob/master/AI-ML/A.I_cancer_module.py)\n  - [Arithmetic Calculator](https://github.com/anshrathod/Basic-Python-Scripts/blob/master/DSA/Mathematical/Arithmetic_calculator.py)\n  - [Natural Languagr Processing (NLP)](https://github.com/Sk70249/Basic-Python-Scripts/blob/master/AI-ML/natural_language_processing.py)\n \n**Games**\n  - [Snake Game](https://github.com/anshrathod/Basic-Python-Scripts/tree/master/Games/SnakeGame)\n  - [Rock Paper Scissors](https://github.com/anshrathod/Basic-Python-Scripts/tree/master/Games/RockPaperScissors)\n  - [Rock Paper Scissors Using Text To Speech](https://github.com/anshrathod/Basic-Python-Scripts/tree/master/Games/RockPaperScissorUsingTextToSpeech)\n  - [Android Soduku Solver](https://github.com/anshrathod/Basic-Python-Scripts/tree/master/Bots/Android%20sudoku%20solver)\n  - [Guess The Number](https://github.com/anshrathod/Basic-Python-Scripts/blob/master/Games/Guess_the_number.py)\n  - [Pacman Game](https://github.com/anshrathod/Basic-Python-Scripts/tree/master/Games/Pacman%20Game%20%28GUI%29)\n  - [Tic Tac Toe Game](https://github.com/anshrathod/Basic-Python-Scripts/tree/master/Games/TicTacToeGame)\n  - [Roll A Dice](https://github.com/anshrathod/Basic-Python-Scripts/blob/master/Games/Roll%20a%20Dice.py)\n  - [Hangman](https://github.com/anshrathod/Basic-Python-Scripts/blob/master/Games/hangman.py)\n  \n## How to Contribute\n\n- Fork the Repository\n\n- Clone the Forked repository\n\n##### ` git clone https://github.com/\u003cUSER_NAME\u003e/\u003cREPO_NAME\u003e`\n\n- Add Scripts and necessary changes\n\n##### ` git add .`\n\n- Commit the changes\n\n##### `git commit -m \"MESSAGE\"`\n\n- Push to your branch\n\n##### `git push`\n\n- Raise a Pull Request to the parent Repository\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fanshrathod%2Fbasic-python-scripts","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fanshrathod%2Fbasic-python-scripts","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fanshrathod%2Fbasic-python-scripts/lists"}