From df7a35c9e298e49c7fc003440a9ef1d6237345fe Mon Sep 17 00:00:00 2001 From: tripleee Date: Thu, 29 Oct 2020 22:34:39 +0200 Subject: [PATCH 1/4] projects/Speech_to_text/README.md: clean up formatting --- projects/Speech_to_text/README.md | 72 +++++++++++++++---------------- 1 file changed, 35 insertions(+), 37 deletions(-) diff --git a/projects/Speech_to_text/README.md b/projects/Speech_to_text/README.md index 0737b20e8..2150f67c1 100644 --- a/projects/Speech_to_text/README.md +++ b/projects/Speech_to_text/README.md @@ -1,37 +1,35 @@ - -# Speech-to-Text Converter - -This Python script converts the Speech input into Text using NLP(Natural Langauge Processing). - -### Requirements - -**Installation Required** : - - Python Speech Recognition module: - - `pip install speechrecognition` - - PyAudio: Use the following command for linux users - - `sudo apt-get install python3-pyaudio` - - Windows users can install pyaudio by executing the following command in a terminal - - `pip install pyaudio` - - Python pyttsx3 module: - - `pip install pyttsx3` - -### How to run the script - - -- Enter the audio input by speaking into the microphone. -- Run converter_terminal.py script -- Output Text will be displayed - - -## *Author Name* - -Devansh Agarwal - +# Speech-to-Text Converter + +This Python script converts the Speech input into Text using NLP (Natural Langauge Processing). + +### Requirements + +**Installation Required** : + +* Python Speech Recognition module: + + `pip install speechrecognition` + +* PyAudio: + * Use the following command for linux users + + `sudo apt-get install python3-pyaudio` + + * Windows users can install pyaudio by executing the following command in a terminal + + `pip install pyaudio` + +* Python pyttsx3 module: + + `pip install pyttsx3` + +### How to run the script + +- Enter the audio input by speaking into the microphone. +- Run converter_terminal.py script +- Output Text will be displayed + + +## *Author Name* + +[Paulo Henrique](https://github.com/chavarera/python-mini-projects From f6e07ba4a2fb68a7d8cba9037a1e145438fe1938 Mon Sep 17 00:00:00 2001 From: tripleee Date: Thu, 29 Oct 2020 22:37:40 +0200 Subject: [PATCH 2/4] projects/Tic_tac_toe/README.md: clean up formatting --- projects/Tic_tac_toe/README.md | 44 ++++++++++++++++++++-------------- 1 file changed, 26 insertions(+), 18 deletions(-) diff --git a/projects/Tic_tac_toe/README.md b/projects/Tic_tac_toe/README.md index 7746b8082..008fe19c1 100644 --- a/projects/Tic_tac_toe/README.md +++ b/projects/Tic_tac_toe/README.md @@ -1,18 +1,26 @@ -## Description: - -A python based 2 player Tic Tac Toe game. It takes input for the respective x and y coordinates of the two players.. The two players are named as X and O and will enter their desired coordinates alternatively to win the game. - - -## Prerequisites: - -Use any python online compiler of download python IDE from https://www.python.org/ - -## How to run: - -`Just run tic_tac_toe.py` - -## Screenshots/Demo: - -## Author: - -Akashdt +# Tic Tac Toe + +## Description + +A python based 2-player Tic Tac Toe game. +It takes input for the respective x and y coordinates of the two players. +The two players are named as X and O +and will enter their desired coordinates alternatively to win the game. + + +## Prerequisites + +Use any Python online compiler of download python IDE from https://www.python.org/ + +## How to run + +Just run + +```sh +python tic_tac_toe.py +``` + + + +## Author +[Erfan Saberi](https://github.com/erfansaberi) From f5898b39b5bdd8d827eb7ba5177f70a3d3d0f386 Mon Sep 17 00:00:00 2001 From: tripleee Date: Thu, 29 Oct 2020 22:48:12 +0200 Subject: [PATCH 3/4] projects/convert_Imgs/README.md: clean up formatting --- projects/convert_Imgs/README.md | 91 ++++++++++++++++++--------------- 1 file changed, 49 insertions(+), 42 deletions(-) diff --git a/projects/convert_Imgs/README.md b/projects/convert_Imgs/README.md index 556d65f34..aebbe1844 100644 --- a/projects/convert_Imgs/README.md +++ b/projects/convert_Imgs/README.md @@ -1,42 +1,49 @@ -# Convert Image Format - -These scripts can change format of images from PNG to JPG and JPG to PNG - -### Prerequisites - -Required Modules -- PIL==1.1.6 - -to install: -``` -$ pip install -r requirements.txt -``` - -### How to run the script - -- Dynamic Change - Copy the script convertDynamic.py into the directory where images are (PNG and/or JPG). And run: - ``` bash - $ python convertDynamic.py - ``` - This will convert all JPG images to PNG and PNG images to JPG in present directory tree recursively(.i.e. will change format in images inside sub-directories too.) -- JPG to PNG (single image) - 1. Copy the JPG image in directory where `JPGtoPNG.py` exists - 2. Replace file name `naruto_first.jpg` inside `JPGtoPNG.py`(line 3) to input file name(JPG). - 3. Replace file name `naruto.png` inside `JPGtoPNG.py`(line 4) to output file name(PNG). - 4. Run following command: - ``` - $ python JPGtoPNG.py - ``` -- PNG to JPG (single image) - 1. Copy the PNG image in directory where `PNGtoJPG.py` exists - 2. Replace file name `naruto_first.png` inside `PNGtoJPG.py`(line 3) to input file name(PNG). - 3. Replace file name `naruto.jpg` inside `PNGtoJPG.py`(line 4) to output file name(JPG). - 4. Run following command: - ``` - $ python PNGtoJPG.py - ``` - -## *Author Name* - -Xordux +# Convert Image Format + +These scripts can change format of images from PNG to JPG and JPG to PNG + +### Prerequisites + +Required Modules +- PIL==1.1.6 + +To install: +``` +$ pip install -r requirements.txt +``` + +### How to run the script + +- Dynamic Change + Copy the script `convertDynamic.py` into the directory where images + are (PNG and/or JPG). And run: + ``` bash + $ python convertDynamic.py + ``` + This will convert all JPG images to PNG and PNG images to JPG + in the present directory tree recursively + (i.e. will change format in images inside sub-directories too.) +- JPG to PNG (single image) + 1. Copy the JPG image to the directory where `JPGtoPNG.py` exists + 2. Replace file name `naruto_first.jpg` inside `JPGtoPNG.py` + (line 3) to input file name (JPG). + 3. Replace file name `naruto.png` inside `JPGtoPNG.py`(line 4) to + output file name (PNG). + 4. Run following command: + ``` + $ python JPGtoPNG.py + ``` +- PNG to JPG (single image) + 1. Copy the PNG image in directory where `PNGtoJPG.py` exists + 2. Replace file name `naruto_first.png` inside `PNGtoJPG.py` + (line 3) to input file name (PNG). + 3. Replace file name `naruto.jpg` inside `PNGtoJPG.py` + (line 4) to output file name (JPG). + 4. Run following command: + ``` + $ python PNGtoJPG.py + ``` + +## *Author Name* + +[Ramon Ferreira](https://github.com/ramonfsk) From bd57253c37f9ba2ed3d291760fd6f3454e94e91a Mon Sep 17 00:00:00 2001 From: tripleee Date: Thu, 29 Oct 2020 22:50:22 +0200 Subject: [PATCH 4/4] projects/*/README.md: Fix incorrect authors Regard project's main README.md as authoritative for this information. Where formatting was inconsistent, attempt to fix that, too. DOS line feeds stripped from text files where necessary. --- .../All_links_from_given_webpage/README.md | 2 +- projects/Ascii_art/README.md | 2 +- projects/Calculate_age/README.md | 2 +- projects/Convert_a_image_to_pdf/README.md | 2 +- projects/Convert_numbers_to_word/README.md | 2 +- .../README.md | 2 +- projects/Create_a_simple_stopwatch/README.md | 2 +- projects/Create_calculator_app/README.md | 2 +- projects/Currency_converter/README.md | 2 +- .../README.md | 2 +- projects/Dns_record/README.md | 2 +- projects/Dominant_color/README.md | 2 +- projects/Duplicate files remover/README.md | 2 +- projects/EasyVideoPlayer/README.md | 2 +- projects/Fetch HTTP status code/README.md | 2 +- projects/Fetch_and_store_tweets/README.md | 2 +- projects/Fetch_open_ports/README.md | 2 +- projects/Find_imdb_rating/README.md | 2 +- .../README.md | 2 +- .../Get_meta_information_of_images/README.md | 2 +- projects/Hello/README.md | 2 +- projects/Image_watermark/README.md | 45 +++++++++---------- projects/Language_translator/README.md | 2 +- projects/Merge_pdfs/README.md | 2 +- projects/Movie Information Scraper/README.md | 2 +- .../Recursive_password_generator/README.md | 2 +- projects/Reduce_image_file_size/README.md | 30 ++++++------- projects/Scrape_Hacker_News/README.md | 2 +- projects/Scrape_quotes/README.md | 2 +- .../Shutdown_or_restart_your_device/README.md | 2 +- projects/Split_File/README.md | 2 +- projects/Store_emails_in_csv/README.md | 2 +- .../README.md | 2 +- .../Terminal_Based_Hangman_Game/README.md | 2 +- .../Readme.md | 2 +- projects/Text_to_speech/README.md | 2 +- projects/Tic_tac_toe_with_ai/README.md | 6 +-- projects/Time_to_load_website/README.md | 2 +- projects/Unique_words_in_a_file/README.md | 2 +- .../README.md | 2 +- .../Web_scraping_a_youtube_comment/README.md | 2 +- projects/Website_blocker/README.md | 2 +- projects/Wikipedia_search_wordcloud/README.md | 2 +- .../README.md | 2 +- projects/convert pdf to text/README.md | 2 +- .../README.md | 34 +++++++------- 46 files changed, 99 insertions(+), 100 deletions(-) diff --git a/projects/All_links_from_given_webpage/README.md b/projects/All_links_from_given_webpage/README.md index 391d7993a..df41d8172 100644 --- a/projects/All_links_from_given_webpage/README.md +++ b/projects/All_links_from_given_webpage/README.md @@ -21,4 +21,4 @@ After that the extracted links will be saved as an array in `myLinks.txt`. ## *Author Name* -Kai Reichart +[Mitesh](https://github.com/Mitesh2499) & [Michael Mba](https://github.com/mikeysan) diff --git a/projects/Ascii_art/README.md b/projects/Ascii_art/README.md index 608411407..b7bb3326d 100644 --- a/projects/Ascii_art/README.md +++ b/projects/Ascii_art/README.md @@ -27,4 +27,4 @@ Modify the symbols list to substitute **different symbols** in the coded pattern Input Image : ![input_image](sample_image.png) Output : -![output_image](sample_output.png) \ No newline at end of file +![output_image](sample_output.png) diff --git a/projects/Calculate_age/README.md b/projects/Calculate_age/README.md index 674234222..706bbdb59 100644 --- a/projects/Calculate_age/README.md +++ b/projects/Calculate_age/README.md @@ -29,4 +29,4 @@ $ python calculate.py ## *Author Name* -random1001guy +[Gaodong](https://github.com/xlgd) diff --git a/projects/Convert_a_image_to_pdf/README.md b/projects/Convert_a_image_to_pdf/README.md index cc169f56b..07537b66c 100644 --- a/projects/Convert_a_image_to_pdf/README.md +++ b/projects/Convert_a_image_to_pdf/README.md @@ -27,4 +27,4 @@ The `img2pdf` is an external Python module which enables you to convert a JPG im ## *Author Name* -Devansh Agarwal +[Gaodong](https://github.com/xlgd) diff --git a/projects/Convert_numbers_to_word/README.md b/projects/Convert_numbers_to_word/README.md index f877efe3c..ab63b4d88 100644 --- a/projects/Convert_numbers_to_word/README.md +++ b/projects/Convert_numbers_to_word/README.md @@ -16,4 +16,4 @@ Execute `python3 converter.py` ## *Author Name* -Niraj Shrestha +[Niraj Shrestha](https://github.com/CrestNiraj12) diff --git a/projects/Create_a_script_to_encrypt_files_and_folder/README.md b/projects/Create_a_script_to_encrypt_files_and_folder/README.md index e745d28a7..f636b7dd8 100644 --- a/projects/Create_a_script_to_encrypt_files_and_folder/README.md +++ b/projects/Create_a_script_to_encrypt_files_and_folder/README.md @@ -9,4 +9,4 @@ examples: or python eccrypt.py ./testdir(folder) -encrypted files("original_file_name.bin") will be generated in original location after the program running \ No newline at end of file +encrypted files("original_file_name.bin") will be generated in original location after the program running diff --git a/projects/Create_a_simple_stopwatch/README.md b/projects/Create_a_simple_stopwatch/README.md index 074c958cd..b80a6505c 100644 --- a/projects/Create_a_simple_stopwatch/README.md +++ b/projects/Create_a_simple_stopwatch/README.md @@ -2,4 +2,4 @@ ### usage -python stopwatch.py \ No newline at end of file +python stopwatch.py diff --git a/projects/Create_calculator_app/README.md b/projects/Create_calculator_app/README.md index 99ef3fb16..a42d83bc4 100644 --- a/projects/Create_calculator_app/README.md +++ b/projects/Create_calculator_app/README.md @@ -17,4 +17,4 @@ Python 3 ## *Author Name* -[Fin McCallum](https://github.com/FinMc) +[Gaodong](https://github.com/xlgd) diff --git a/projects/Currency_converter/README.md b/projects/Currency_converter/README.md index bbfdaaf9f..ae5a941c7 100644 --- a/projects/Currency_converter/README.md +++ b/projects/Currency_converter/README.md @@ -17,4 +17,4 @@ A small python program that converts currency with live info ## *Author Name* -[Fin McCallum](https://github.com/FinMc) +[github-of-wone](https://github.com/github-of-wone/) diff --git a/projects/Decimal_to_binary_convertor_and_vice_versa/README.md b/projects/Decimal_to_binary_convertor_and_vice_versa/README.md index 264870928..1b88cd94a 100644 --- a/projects/Decimal_to_binary_convertor_and_vice_versa/README.md +++ b/projects/Decimal_to_binary_convertor_and_vice_versa/README.md @@ -16,4 +16,4 @@ A small python program that converts binary and decimal ## *Author Name* -[Fin McCallum](https://github.com/FinMc) +[Alan Anaya](https://github.com/alananayaa/) diff --git a/projects/Dns_record/README.md b/projects/Dns_record/README.md index 4b44a9645..c8af26b60 100644 --- a/projects/Dns_record/README.md +++ b/projects/Dns_record/README.md @@ -18,4 +18,4 @@ python dns_record.py 3.It will ask for a website: -You can give any website name for example: google.com \ No newline at end of file +You can give any website name for example: google.com diff --git a/projects/Dominant_color/README.md b/projects/Dominant_color/README.md index 6cfaaea8d..8be685bc5 100644 --- a/projects/Dominant_color/README.md +++ b/projects/Dominant_color/README.md @@ -18,4 +18,4 @@ ![Screenshot](shot.png) ## *Author Name* -Himanshu Hansaria +[Mitesh](https://github.com/Mitesh2499) diff --git a/projects/Duplicate files remover/README.md b/projects/Duplicate files remover/README.md index ccaa45cf6..acbbca5e0 100644 --- a/projects/Duplicate files remover/README.md +++ b/projects/Duplicate files remover/README.md @@ -17,4 +17,4 @@ Execute `python3 duplicatefileremover.py` The script first lists all the files in the directory. It takes MD5 hash of each file, when hash of 2 files become same it deletes the file. ## Author Name -Anandha Krishnan Aji \ No newline at end of file +[Anandha Krishnan Aji](https://github.com/anandhakrishnanaji) diff --git a/projects/EasyVideoPlayer/README.md b/projects/EasyVideoPlayer/README.md index 162495906..c361981fc 100644 --- a/projects/EasyVideoPlayer/README.md +++ b/projects/EasyVideoPlayer/README.md @@ -8,4 +8,4 @@ 'cd' to the directory that contains the script and type "python3 EasyVideoPlayer.py". When you are done with the video, use "keyboard interrupt" (Ctrl + C) to exit the player. ## *Author Name* - Bartu Yaman +[Bartu Yaman](https://github.com/brtymn) diff --git a/projects/Fetch HTTP status code/README.md b/projects/Fetch HTTP status code/README.md index c1174c53c..74e8c37cf 100644 --- a/projects/Fetch HTTP status code/README.md +++ b/projects/Fetch HTTP status code/README.md @@ -21,4 +21,4 @@ pip install -r requirements.txt -> Install the requirements. ->Type the following command: python fetch_http_status_code.py -->A message asking URL/API would be displayed : Enter any url of choice and check the output \ No newline at end of file +->A message asking URL/API would be displayed : Enter any url of choice and check the output diff --git a/projects/Fetch_and_store_tweets/README.md b/projects/Fetch_and_store_tweets/README.md index 2957c41a6..fc07daad8 100644 --- a/projects/Fetch_and_store_tweets/README.md +++ b/projects/Fetch_and_store_tweets/README.md @@ -87,4 +87,4 @@ After creating the App click on **Keys and tokens** option you will observe Cons ## Author Name -[AnilKumarTeegala](https://github.com/AnilKumarTeegala) \ No newline at end of file +[Kushal Agrawal](https://github.com/kushal98) diff --git a/projects/Fetch_open_ports/README.md b/projects/Fetch_open_ports/README.md index 84bd0c686..235b2140f 100644 --- a/projects/Fetch_open_ports/README.md +++ b/projects/Fetch_open_ports/README.md @@ -27,4 +27,4 @@ No need for additional installations. ## *Author Name* -Aleksej Komnenovic \ No newline at end of file +[Kushal Agrawal](https://github.com/kushal98) diff --git a/projects/Find_imdb_rating/README.md b/projects/Find_imdb_rating/README.md index 41cdeceeb..d991a0c8d 100644 --- a/projects/Find_imdb_rating/README.md +++ b/projects/Find_imdb_rating/README.md @@ -30,4 +30,4 @@ CSV File: ## *Author Name* - Utkarsh Bajaj +[Utkarsh Bajaj](https://github.com/utkarshbajaj) diff --git a/projects/Find_out_hostname_and_ip_address/README.md b/projects/Find_out_hostname_and_ip_address/README.md index 1bf1bedbf..dfacf5db3 100644 --- a/projects/Find_out_hostname_and_ip_address/README.md +++ b/projects/Find_out_hostname_and_ip_address/README.md @@ -16,4 +16,4 @@ Execute `python3 Hostname_IPaddress.py` ## *Author Name* -Nuh Mohammed +[Nuh Mohammed](https://github.com/NuhMohammed) diff --git a/projects/Get_meta_information_of_images/README.md b/projects/Get_meta_information_of_images/README.md index 2ee65c016..705e39b98 100644 --- a/projects/Get_meta_information_of_images/README.md +++ b/projects/Get_meta_information_of_images/README.md @@ -11,4 +11,4 @@ Make sure the picture contains location information, otherwise the location cann you need fill in your email address to use the function in gps_utils.py: ```python geolocator = Nominatim(user_agent = "your email") -``` \ No newline at end of file +``` diff --git a/projects/Hello/README.md b/projects/Hello/README.md index 1093bf12a..095aca2d4 100644 --- a/projects/Hello/README.md +++ b/projects/Hello/README.md @@ -20,4 +20,4 @@ Hello Python World ## *Author Name* -Ravi Chavare \ No newline at end of file +[Ravi Chavare](https://github.com/chavarera) diff --git a/projects/Image_watermark/README.md b/projects/Image_watermark/README.md index abcc6217b..350bae4e2 100644 --- a/projects/Image_watermark/README.md +++ b/projects/Image_watermark/README.md @@ -1,23 +1,22 @@ - -# Image-Watermark - -## Description - -This Project will take an image and add desired watermark to it. - -## About this Project - -This project uses PIL module and OS module to add the watermark. PIL, the Python Imaging Library, is an open source libary that enables the users to add, manipulate and save different file formats. - -## Usage - -Use the Script [watermark.py](https://github.com/Python-World/python-mini-projects/blob/master/projects/Image_watermark/watermark.py) . In the command line, Enter - -`python3 watermark.py [image_path]` - -Replace the `[image_path]` with the image you want to add watermark to. - -The output will be the image with desired watermark. - -## Author -Devansh Agarwal +# Image-Watermark + +## Description + +This Project will take an image and add desired watermark to it. + +## About this Project + +This project uses PIL module and OS module to add the watermark. PIL, the Python Imaging Library, is an open source libary that enables the users to add, manipulate and save different file formats. + +## Usage + +Use the Script [watermark.py](https://github.com/Python-World/python-mini-projects/blob/master/projects/Image_watermark/watermark.py) . In the command line, Enter + +`python3 watermark.py [image_path]` + +Replace the `[image_path]` with the image you want to add watermark to. + +The output will be the image with desired watermark. + +## Author +[Mitesh](https://github.com/Mitesh2499) diff --git a/projects/Language_translator/README.md b/projects/Language_translator/README.md index 0c6fcaec2..1ab14cae7 100644 --- a/projects/Language_translator/README.md +++ b/projects/Language_translator/README.md @@ -38,4 +38,4 @@ Execute `python3 python translator.py` ![Screenshot of the Language_translator.py file](https://github.com/Python-World/python-mini-projects/blob/master/projects/Language_translator/Shot.png) ## *Author Name* -Azhad Ghufran +[Ashiqur Rahman Tusher](https://github.com/ashikurt77) diff --git a/projects/Merge_pdfs/README.md b/projects/Merge_pdfs/README.md index 9d135090e..5fd73297f 100644 --- a/projects/Merge_pdfs/README.md +++ b/projects/Merge_pdfs/README.md @@ -12,4 +12,4 @@ It can be executed by running "python merge_pdfs.py" ## Author Name -ShivSt +[ShivSt](https://github.com/ShivSt) diff --git a/projects/Movie Information Scraper/README.md b/projects/Movie Information Scraper/README.md index ee8ead260..3db07cfd1 100644 --- a/projects/Movie Information Scraper/README.md +++ b/projects/Movie Information Scraper/README.md @@ -14,4 +14,4 @@ Execute `python3 movieInfoScraper.py` and type in the movie name when prompted. ![Screenshot of the Output](Screenshot.png) ## Author Name -Anandha Krishnan Aji \ No newline at end of file +[Anandha Krishnan Aji](https://github.com/anandhakrishnanaji) diff --git a/projects/Recursive_password_generator/README.md b/projects/Recursive_password_generator/README.md index 80696782b..6e196fd7f 100644 --- a/projects/Recursive_password_generator/README.md +++ b/projects/Recursive_password_generator/README.md @@ -16,4 +16,4 @@ Execute `python3 generator.py` ## *Author Name* -Erfan Saberi +[Erfan Saberi](https://github.com/erfansaberi) diff --git a/projects/Reduce_image_file_size/README.md b/projects/Reduce_image_file_size/README.md index c41c82977..48ff501fa 100644 --- a/projects/Reduce_image_file_size/README.md +++ b/projects/Reduce_image_file_size/README.md @@ -1,15 +1,15 @@ -# Script Title -#### Script to reduce the size of image file using the openCV library of python. - -### Prerequisites -openCV library - -`pip install opencv-python` - -### How to run the script -- Add the image in jpg format with name as 'input.jpg' in this folder. -- Run reduce_image_size.py script. -- resized output image will be generated in this folder. - -## *Author Name* -### *Vipul Verma* +# Script Title +#### Script to reduce the size of image file using the openCV library of python. + +### Prerequisites +openCV library + +`pip install opencv-python` + +### How to run the script +- Add the image in jpg format with name as 'input.jpg' in this folder. +- Run reduce_image_size.py script. +- resized output image will be generated in this folder. + +## *Author Name* +[Vipul Verma](https://github.com/VIPverma01) diff --git a/projects/Scrape_Hacker_News/README.md b/projects/Scrape_Hacker_News/README.md index 9cf7a6c13..3d0d6e2fd 100644 --- a/projects/Scrape_Hacker_News/README.md +++ b/projects/Scrape_Hacker_News/README.md @@ -8,4 +8,4 @@ In command go to the file directory, and "run python main.py" in commandline ## *Author Name* -Developed by Javokhir +[Javokhirbek](https://github.com/leader2one) diff --git a/projects/Scrape_quotes/README.md b/projects/Scrape_quotes/README.md index 104cc4fbb..4f331b740 100644 --- a/projects/Scrape_quotes/README.md +++ b/projects/Scrape_quotes/README.md @@ -14,4 +14,4 @@ Execute `python3 quote_scraper.py` ![Screenshot of the CSV file](Screenshot.png) ## Author Name -Anandha Krishnan Aji \ No newline at end of file +[Anandha Krishnan Aji](https://github.com/anandhakrishnanaji) diff --git a/projects/Shutdown_or_restart_your_device/README.md b/projects/Shutdown_or_restart_your_device/README.md index cdefc8c2b..7f48794ec 100644 --- a/projects/Shutdown_or_restart_your_device/README.md +++ b/projects/Shutdown_or_restart_your_device/README.md @@ -25,5 +25,5 @@ Use 'r' for restart and 's' for shutdown: r ## *Author Name* -Hannah Machado +[Phillibob55](https://github.com/Phillibob55) diff --git a/projects/Split_File/README.md b/projects/Split_File/README.md index d6b9e7442..694957a38 100644 --- a/projects/Split_File/README.md +++ b/projects/Split_File/README.md @@ -10,4 +10,4 @@ just type this in the terminal:- `python split_files.py ` ## *Author Name* -Kanishk Gupta +[phileinSophos](https://github.com/phileinSophos/) diff --git a/projects/Store_emails_in_csv/README.md b/projects/Store_emails_in_csv/README.md index 24b71355d..c0e0526b8 100644 --- a/projects/Store_emails_in_csv/README.md +++ b/projects/Store_emails_in_csv/README.md @@ -60,4 +60,4 @@ The exception handling is not a good example of how to do this properly. ## Author Name -Aditya Jetely (@AdityaJ7) +[Shiv Thakur](https://github.com/ShivSt) diff --git a/projects/String_search_from_multiple_files/README.md b/projects/String_search_from_multiple_files/README.md index 468ed4b15..8bf5ccd83 100644 --- a/projects/String_search_from_multiple_files/README.md +++ b/projects/String_search_from_multiple_files/README.md @@ -12,4 +12,4 @@ In order to run this script you must have Python3 installed, not Python2. The co ![GIF showing how to run](https://i.imgur.com/2y7HdGV.gif) ## *Author Name* -README: [Alex Munoz](https://github.com/AlexMunoz905) +[Mitesh](https://github.com/Mitesh2499) diff --git a/projects/Terminal_Based_Hangman_Game/README.md b/projects/Terminal_Based_Hangman_Game/README.md index fe4987322..5021589d8 100644 --- a/projects/Terminal_Based_Hangman_Game/README.md +++ b/projects/Terminal_Based_Hangman_Game/README.md @@ -9,4 +9,4 @@ None - Start to guess the word. ## Author Name -Neoh Boon Yee +[Neoh Boon Yee](https://github.com/neohboonyee99) diff --git a/projects/Terminal_progress_bar_with_images_resizing/Readme.md b/projects/Terminal_progress_bar_with_images_resizing/Readme.md index ef2b6572b..0425dfed9 100644 --- a/projects/Terminal_progress_bar_with_images_resizing/Readme.md +++ b/projects/Terminal_progress_bar_with_images_resizing/Readme.md @@ -9,4 +9,4 @@ when we convert lots of images at time we can use progress bar to show how many This Library is for showing progress bar ### For Resizing images -` pip install Pillow ` \ No newline at end of file +` pip install Pillow ` diff --git a/projects/Text_to_speech/README.md b/projects/Text_to_speech/README.md index 69a61d1f5..f12786664 100644 --- a/projects/Text_to_speech/README.md +++ b/projects/Text_to_speech/README.md @@ -14,4 +14,4 @@ done by typing 'python txtToSpeech.py' into your Terminal. ## *Author Name* -Simon Hanrath +[Sergej Dikun](https://github.com/Serhazor) diff --git a/projects/Tic_tac_toe_with_ai/README.md b/projects/Tic_tac_toe_with_ai/README.md index f60fdb3f9..e5ef2b38d 100644 --- a/projects/Tic_tac_toe_with_ai/README.md +++ b/projects/Tic_tac_toe_with_ai/README.md @@ -39,6 +39,6 @@ The positions of this 3 x 3 board is same as the **keypad on the right side of y # *Author*: - - Tushar Nankani (tusharnankani, tusharnankani3@gmail.com) - - [Github](https://www.github.com/tusharnankani) - - [LinkedIn](https://www.linkedin.com/in/tusharnankani) \ No newline at end of file +- [Tushar Nankani](https://github.com/tusharnankani) (tusharnankani, tusharnankani3@gmail.com) +- [Github](https://www.github.com/tusharnankani) +- [LinkedIn](https://www.linkedin.com/in/tusharnankani) diff --git a/projects/Time_to_load_website/README.md b/projects/Time_to_load_website/README.md index 3c648571d..e5eabe941 100644 --- a/projects/Time_to_load_website/README.md +++ b/projects/Time_to_load_website/README.md @@ -14,4 +14,4 @@ python time_to_load_website.py

sample -

\ No newline at end of file +

diff --git a/projects/Unique_words_in_a_file/README.md b/projects/Unique_words_in_a_file/README.md index cb75fb0ce..74366a12c 100644 --- a/projects/Unique_words_in_a_file/README.md +++ b/projects/Unique_words_in_a_file/README.md @@ -1,2 +1,2 @@ # Unique words in text file -Script to display unique words in a given text file. \ No newline at end of file +Script to display unique words in a given text file. diff --git a/projects/Unstructured Supplemenrary Service Data/README.md b/projects/Unstructured Supplemenrary Service Data/README.md index f70662126..ed6e916ef 100644 --- a/projects/Unstructured Supplemenrary Service Data/README.md +++ b/projects/Unstructured Supplemenrary Service Data/README.md @@ -15,4 +15,4 @@ EXECUTION PROCESS AUTHOR -Ajayi Raymond Tomisin (ART) +[Ajayi Raymond Tomisin (ART)](https://github.com/Tomyzon1728) diff --git a/projects/Web_scraping_a_youtube_comment/README.md b/projects/Web_scraping_a_youtube_comment/README.md index 77b5adc88..636294915 100644 --- a/projects/Web_scraping_a_youtube_comment/README.md +++ b/projects/Web_scraping_a_youtube_comment/README.md @@ -15,4 +15,4 @@ ![](demo.gif) ## *Author Name* -- Azhad Ghufran +[Saicharan67](https://github.com/Saicharan67) diff --git a/projects/Website_blocker/README.md b/projects/Website_blocker/README.md index 241b54756..82d4e47e8 100644 --- a/projects/Website_blocker/README.md +++ b/projects/Website_blocker/README.md @@ -14,4 +14,4 @@ To unblock the websites, run the `website_unblocker.py` script. ## *Author Name* -[Kai Reichart](https://github.com/KaiReichart) +[Phillibob55](https://github.com/Phillibob55) diff --git a/projects/Wikipedia_search_wordcloud/README.md b/projects/Wikipedia_search_wordcloud/README.md index 7e508fef8..dc22134b0 100644 --- a/projects/Wikipedia_search_wordcloud/README.md +++ b/projects/Wikipedia_search_wordcloud/README.md @@ -9,4 +9,4 @@ Run like any other python file. Upon executing, the wordcloud image will be save ![script execution](script_execution.jpg) ## *Author Name* -[Naman Shah](https://github.com/namanshah01) \ No newline at end of file +[Naman Shah](https://github.com/namanshah01) diff --git a/projects/Write_script_to_compress_folder_and_files/README.md b/projects/Write_script_to_compress_folder_and_files/README.md index 4a267b216..e9a434209 100644 --- a/projects/Write_script_to_compress_folder_and_files/README.md +++ b/projects/Write_script_to_compress_folder_and_files/README.md @@ -8,4 +8,4 @@ example: python zipfiles.py test.txt python zipfiles.py ./test (folder) -A Compressed file("filename.zip") will be generated after the program is run \ No newline at end of file +A Compressed file("filename.zip") will be generated after the program is run diff --git a/projects/convert pdf to text/README.md b/projects/convert pdf to text/README.md index 4fd382b57..1aea562f8 100644 --- a/projects/convert pdf to text/README.md +++ b/projects/convert pdf to text/README.md @@ -11,4 +11,4 @@ In this program you have to provide the path for the pdf file that you want to c By default the output files created will be stored in temp folder in the same directory. ## *Author Name* -pi1814 +[pi1814](https://github.com/pi1814) diff --git a/projects/convert_dictionary_to_python_object/README.md b/projects/convert_dictionary_to_python_object/README.md index b906cdd47..27805c02d 100644 --- a/projects/convert_dictionary_to_python_object/README.md +++ b/projects/convert_dictionary_to_python_object/README.md @@ -1,17 +1,17 @@ -# Dictionary to Python Object - -A Class in python to convert dictionary to a object - -### Prerequisites - -None, only a running Python installation is required. - -### How to run the script - -- Add the `class obj` in your code. -- Modify the code according to your need or use it directly: - `ob = obj({'a':1, 'b': 2, 'c':3})` - -## *Author Name* - -Xordux +# Dictionary to Python Object + +A Class in python to convert dictionary to a object + +### Prerequisites + +None, only a running Python installation is required. + +### How to run the script + +- Add the `class obj` in your code. +- Modify the code according to your need or use it directly: + `ob = obj({'a':1, 'b': 2, 'c':3})` + +## *Author Name* + +[Varun-22](https://github.com/Varun-22)