├── .gitignore ├── Basic-Scripts ├── Compress_the_string.py ├── Dat_to_CSV │ ├── README.md │ ├── dat_to_csv.py │ └── requirements.txt ├── Factorial.py ├── Geocoding and Reverse Geocoding │ ├── README.md │ ├── Sample.PNG │ ├── geocoding_and_reverse_geocoding.py │ └── requirements.txt ├── GraphColoringBacktrack.py ├── Infix_to_Postfix_Conversion │ ├── Infix_to_Postfix_Conversion.py │ └── README.md ├── List.py ├── List_4.py ├── List_Compressions.py ├── Menu_Driven.py ├── Password │ ├── README.md │ └── password.py ├── Prime.py ├── Python_Fib_Generators.py ├── README.md ├── Rock_paper_scissor.py ├── Simple_calculator.py ├── SnakeGame.py ├── String_Manipulate.py ├── TodaysDate.py ├── Zip_file_extractor │ ├── README.md │ ├── sample.PNG │ └── zip_file_extractor.py ├── advanceCalculator.py ├── anagram.py ├── area_circle.py ├── armstrong ├── ascii.py ├── automate_file_classification.py ├── average grade.py ├── balanced_paranthesis.py ├── blackjack_game.py ├── christmas_pattern.py ├── count_positive_and_negative.py ├── dictionary.py ├── ditionary.py ├── do-while.py ├── excel.py ├── fib_naci.py ├── file1.txt ├── file_example.txt ├── file_handling.py ├── file_manipulation.py ├── flames.py ├── flat_list.py ├── forWithList.py ├── for_loop.py ├── for_loop2.py ├── for_loop3.py ├── function_1.py ├── function_2.py ├── function_parameter.py ├── function_parameter_2.py ├── get_ip_address.py ├── github_opener.py ├── guessgameadv.py ├── guessinggame.py ├── gui-tk.py ├── hangman.py ├── happy_numbers.py ├── hello.py ├── if_elif.py ├── if_else.py ├── if_else_2.py ├── img_to_ascii.py ├── insert_sort.py ├── int_to_en.py ├── leap_year.py ├── letter_counter.py ├── list_1.py ├── list_2.py ├── list_tuple_dict.py ├── location_ip ├── magic8Ball.py ├── magic_square.py ├── math_expression.py ├── math_func.py ├── maxBetween2NumbersWithoutIF.py ├── merge_sort.py ├── myPets.py ├── odd_even.py ├── palindrome.py ├── password_checker.py ├── picnicTable.py ├── prime_numbers.py ├── pyperClip.py ├── quad_equation.py ├── rand_range.py ├── random.py ├── random_password.py ├── recursion.py ├── reverse.py ├── scrap_quotes.py ├── secure your password.py ├── selection_sort.py ├── send_mail.py ├── simple-address-book.py ├── simple_file_write.py ├── simple_interest.py ├── snake_to_camel.py ├── staicase_pattern.py ├── starpattern.py ├── string_practice.py ├── sum_lst_index.py ├── sum_of_items_list.py ├── table.py ├── tic-tac-toe-1.py ├── tic-tac-toe.py ├── time.py ├── towerofhanoi.py ├── translate.py ├── tuple_1.py ├── tuple_2.py ├── validateInput.py ├── watermark_pdf.py ├── while1.py ├── while_loop2.py ├── word_encrypt.py ├── yourname.py └── zeroDivide.py ├── CODE_OF_CONDUCT.md ├── Calculator_GUI ├── Readme.md ├── calculator.py └── calculator_.png ├── Chat example with socket lib ├── client.py └── server.py ├── Contribution.md ├── Image-Processing ├── Basic_OpenCV │ ├── README.md │ └── rose.jpg ├── Canny Edge Detection │ ├── CannyEdgeDetection.py │ ├── Canny_EdgeDetection_using_math.py │ ├── Images │ │ ├── glimpse all result.JPG │ │ ├── input image.JPG │ │ ├── pic1.JPG │ │ ├── pic2.JPG │ │ ├── res1pic1.JPG │ │ ├── res2pic2.JPG │ │ ├── res3sudoku.JPG │ │ └── tograyscale.JPG │ └── Readme.md ├── Car_detection │ └── README.md ├── Cartoonify Image │ ├── Cartoonify.py │ ├── README.md │ └── images │ │ ├── Cartoonified Image.PNG │ │ ├── Original Image.PNG │ │ └── sunset.jpg ├── Color_Detection │ ├── Readme.md │ ├── color_detection.py │ ├── color_sample.png │ └── colors.csv ├── Detecting Contours │ ├── Readme.md │ ├── detecting_geometrical_shapes.py │ ├── output2.JPG │ └── shapes.png ├── Face_detection │ ├── Face_detection.py │ └── README.md ├── HANDWRITING RECOGNIZER │ ├── hand.py │ └── readme.md ├── Hough_Transform │ ├── HoughTransform_without_opencv.py │ ├── hough_Transform.py │ ├── image.jfif │ └── readme.md ├── Image To Sepia Effect │ ├── README.md │ ├── Taj_Mahal.jpg │ ├── original.jpg │ ├── sepia image convertor.py │ └── sepia.jpg ├── ImageCropper │ ├── Data │ │ ├── CropDEMO.gif │ │ ├── Man_United.jpeg │ │ └── cropped image1.png │ ├── README.md │ └── crop.py ├── Image_Crop_(resize) │ ├── Image_crop.py │ ├── README.md │ └── rose.jpg ├── Image_filters_using_convolution │ ├── 3D_convolve.py │ ├── README.md │ └── images │ │ ├── after.png │ │ └── before.png ├── Invisible_cloak │ ├── README.md │ └── cloak.py ├── JpgToPngConvertor │ ├── JpgToPngConvertor.py │ ├── README.md │ └── Source_Images │ │ ├── bulbasaur.jpg │ │ ├── charmander.jpg │ │ ├── pikachu.jpg │ │ └── squirtle.jpg ├── Qr_scanner │ ├── Qr_scanner.py │ ├── README.md │ └── qr.png ├── README.md └── ocr-img-to-txt │ ├── ocr-img-to-txt.md │ └── ocr-img-to-txt.py ├── LICENSE ├── README.md ├── System-Automation-Scripts ├── Amazon-price-tracker │ ├── README.md │ ├── images │ │ ├── confirm.png │ │ ├── lesssecure.png │ │ └── single.png │ ├── mail_in_python.py │ ├── price_logger.txt │ └── price_tracker.py ├── Automate-Telegram │ ├── README.md │ ├── automate_telegram.py │ ├── code.png │ ├── login.png │ ├── send.png │ └── working.PNG ├── Automatic attending meet │ ├── Class_buddy.py │ └── Readme.md ├── Email_Client │ ├── README.md │ ├── email_client.py │ ├── email_client_test.py │ ├── password.txt │ └── test.txt ├── FolderSorter.py ├── Google │ ├── Automating_Google.py │ ├── Automating_Google_Search.py │ └── README.md ├── PDF_Tables_To_CSV │ ├── .gitignore │ ├── README.md │ ├── app.py │ └── preview.gif ├── PingScanner.py ├── Questions_from_Project_Euler │ ├── README.md │ ├── euler.py │ └── images │ │ ├── euler_home.PNG │ │ ├── euler_questions.PNG │ │ └── question1.PNG ├── README.md ├── Story Reader │ ├── Readme.md │ ├── audiobook.png │ ├── main.py │ └── mybook.pdf ├── Twitter Automation │ ├── README.md │ ├── Twitter Automation.py │ └── twitter_image.PNG ├── WhatsApp-message-automation │ ├── README.md │ ├── abcd.PNG │ ├── automate-messages.py │ ├── confirm.png │ ├── frequent.PNG │ ├── qrcode.PNG │ ├── script.PNG │ └── search.PNG ├── Word detector │ ├── README.md │ └── word_detector.py ├── Zoom automation │ ├── Readme.md │ ├── img │ │ ├── join.png │ │ ├── s1.png │ │ ├── s2.png │ │ └── s3.png │ └── zoom.py ├── automail.py ├── automate-whatsapp.py ├── junk_organiser.py ├── pdfCreator.py ├── processClose.py ├── pypdf.py ├── verify_email.py ├── whatsappbot.py ├── zipFileConverter.py └── zipFileExtracterCommandLine.py ├── Web-Scraping ├── Covid-19 Statics │ ├── README.md │ └── code.py ├── Cricbuzz Scrap │ ├── Readme.md │ └── crik_buzz.py ├── E-Commerce Website │ ├── README.md │ ├── WebScraping.py │ └── products.csv ├── Hacktoberfest_Events │ ├── README.md │ ├── hacktoberfest_events.py │ └── requirements.txt ├── IMDB_TopMovies │ ├── Output │ │ └── imdb.csv │ ├── README.md │ └── imdb_topmovies.py ├── Instagram-scraper │ ├── README.md │ └── instagram-scraper.py ├── Instagram │ ├── README.md │ └── instagram_count.py ├── Medium-Articles-Details-Scrapping │ ├── .gitignore │ ├── README.md │ ├── app │ │ └── __init__.py │ ├── run.py │ └── terminal-preview.PNG ├── Medium_article_downloader │ ├── Article_downloader.py │ ├── README.md │ └── medium.PNG ├── Movie Recommendation │ ├── README.md │ └── code.py ├── Questions_from_Project_Euler │ ├── README.md │ ├── euler.py │ └── images │ │ ├── euler_home.PNG │ │ ├── euler_questions.PNG │ │ └── question1.PNG ├── README.md ├── Reddit Scrapper │ ├── .gitignore │ ├── README.md │ ├── app.py │ ├── output │ │ ├── config.PNG │ │ ├── csv.PNG │ │ └── result.csv │ └── requirements.txt ├── ScrappingHackerNewsWebsite │ ├── README.md │ └── ScrappingHackerNewsWebsite.py ├── Songs_Lyrics │ ├── README.md │ ├── lyrics_op.png │ └── song_lyrics.py ├── Times_of_india │ ├── README.md │ ├── TOI.png │ └── Times_of_india.py ├── amazon_reviews_scraping │ ├── README.md │ ├── items.py │ ├── middlewares.py │ ├── pipelines.py │ ├── settings.py │ └── spiders │ │ ├── __init__.py │ │ ├── __pycache__ │ │ └── amazon_reviews.cpython-38.pyc │ │ └── scraper.py └── links extractor │ ├── README.md │ └── links-extractor.py └── _config.yml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/.gitignore -------------------------------------------------------------------------------- /Basic-Scripts/Compress_the_string.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Basic-Scripts/Compress_the_string.py -------------------------------------------------------------------------------- /Basic-Scripts/Dat_to_CSV/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Basic-Scripts/Dat_to_CSV/README.md -------------------------------------------------------------------------------- /Basic-Scripts/Dat_to_CSV/dat_to_csv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Basic-Scripts/Dat_to_CSV/dat_to_csv.py -------------------------------------------------------------------------------- /Basic-Scripts/Dat_to_CSV/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Basic-Scripts/Dat_to_CSV/requirements.txt -------------------------------------------------------------------------------- /Basic-Scripts/Factorial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Basic-Scripts/Factorial.py -------------------------------------------------------------------------------- /Basic-Scripts/Geocoding and Reverse Geocoding/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Basic-Scripts/Geocoding and Reverse Geocoding/README.md -------------------------------------------------------------------------------- /Basic-Scripts/Geocoding and Reverse Geocoding/Sample.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Basic-Scripts/Geocoding and Reverse Geocoding/Sample.PNG -------------------------------------------------------------------------------- /Basic-Scripts/Geocoding and Reverse Geocoding/geocoding_and_reverse_geocoding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Basic-Scripts/Geocoding and Reverse Geocoding/geocoding_and_reverse_geocoding.py -------------------------------------------------------------------------------- /Basic-Scripts/Geocoding and Reverse Geocoding/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Basic-Scripts/Geocoding and Reverse Geocoding/requirements.txt -------------------------------------------------------------------------------- /Basic-Scripts/GraphColoringBacktrack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Basic-Scripts/GraphColoringBacktrack.py -------------------------------------------------------------------------------- /Basic-Scripts/Infix_to_Postfix_Conversion/Infix_to_Postfix_Conversion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Basic-Scripts/Infix_to_Postfix_Conversion/Infix_to_Postfix_Conversion.py -------------------------------------------------------------------------------- /Basic-Scripts/Infix_to_Postfix_Conversion/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Basic-Scripts/Infix_to_Postfix_Conversion/README.md -------------------------------------------------------------------------------- /Basic-Scripts/List.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Basic-Scripts/List.py -------------------------------------------------------------------------------- /Basic-Scripts/List_4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Basic-Scripts/List_4.py -------------------------------------------------------------------------------- /Basic-Scripts/List_Compressions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Basic-Scripts/List_Compressions.py -------------------------------------------------------------------------------- /Basic-Scripts/Menu_Driven.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Basic-Scripts/Menu_Driven.py -------------------------------------------------------------------------------- /Basic-Scripts/Password/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Basic-Scripts/Password/README.md -------------------------------------------------------------------------------- /Basic-Scripts/Password/password.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Basic-Scripts/Password/password.py -------------------------------------------------------------------------------- /Basic-Scripts/Prime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Basic-Scripts/Prime.py -------------------------------------------------------------------------------- /Basic-Scripts/Python_Fib_Generators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Basic-Scripts/Python_Fib_Generators.py -------------------------------------------------------------------------------- /Basic-Scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Basic-Scripts/README.md -------------------------------------------------------------------------------- /Basic-Scripts/Rock_paper_scissor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Basic-Scripts/Rock_paper_scissor.py -------------------------------------------------------------------------------- /Basic-Scripts/Simple_calculator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Basic-Scripts/Simple_calculator.py -------------------------------------------------------------------------------- /Basic-Scripts/SnakeGame.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Basic-Scripts/SnakeGame.py -------------------------------------------------------------------------------- /Basic-Scripts/String_Manipulate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Basic-Scripts/String_Manipulate.py -------------------------------------------------------------------------------- /Basic-Scripts/TodaysDate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Basic-Scripts/TodaysDate.py -------------------------------------------------------------------------------- /Basic-Scripts/Zip_file_extractor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Basic-Scripts/Zip_file_extractor/README.md -------------------------------------------------------------------------------- /Basic-Scripts/Zip_file_extractor/sample.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Basic-Scripts/Zip_file_extractor/sample.PNG -------------------------------------------------------------------------------- /Basic-Scripts/Zip_file_extractor/zip_file_extractor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Basic-Scripts/Zip_file_extractor/zip_file_extractor.py -------------------------------------------------------------------------------- /Basic-Scripts/advanceCalculator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Basic-Scripts/advanceCalculator.py -------------------------------------------------------------------------------- /Basic-Scripts/anagram.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Basic-Scripts/anagram.py -------------------------------------------------------------------------------- /Basic-Scripts/area_circle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Basic-Scripts/area_circle.py -------------------------------------------------------------------------------- /Basic-Scripts/armstrong: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Basic-Scripts/armstrong -------------------------------------------------------------------------------- /Basic-Scripts/ascii.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Basic-Scripts/ascii.py -------------------------------------------------------------------------------- /Basic-Scripts/automate_file_classification.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Basic-Scripts/automate_file_classification.py -------------------------------------------------------------------------------- /Basic-Scripts/average grade.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Basic-Scripts/average grade.py -------------------------------------------------------------------------------- /Basic-Scripts/balanced_paranthesis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Basic-Scripts/balanced_paranthesis.py -------------------------------------------------------------------------------- /Basic-Scripts/blackjack_game.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Basic-Scripts/blackjack_game.py -------------------------------------------------------------------------------- /Basic-Scripts/christmas_pattern.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Basic-Scripts/christmas_pattern.py -------------------------------------------------------------------------------- /Basic-Scripts/count_positive_and_negative.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Basic-Scripts/count_positive_and_negative.py -------------------------------------------------------------------------------- /Basic-Scripts/dictionary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Basic-Scripts/dictionary.py -------------------------------------------------------------------------------- /Basic-Scripts/ditionary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Basic-Scripts/ditionary.py -------------------------------------------------------------------------------- /Basic-Scripts/do-while.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Basic-Scripts/do-while.py -------------------------------------------------------------------------------- /Basic-Scripts/excel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Basic-Scripts/excel.py -------------------------------------------------------------------------------- /Basic-Scripts/fib_naci.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Basic-Scripts/fib_naci.py -------------------------------------------------------------------------------- /Basic-Scripts/file1.txt: -------------------------------------------------------------------------------- 1 | Hello World 2 | -------------------------------------------------------------------------------- /Basic-Scripts/file_example.txt: -------------------------------------------------------------------------------- 1 | Hello World! 2 | -------------------------------------------------------------------------------- /Basic-Scripts/file_handling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Basic-Scripts/file_handling.py -------------------------------------------------------------------------------- /Basic-Scripts/file_manipulation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Basic-Scripts/file_manipulation.py -------------------------------------------------------------------------------- /Basic-Scripts/flames.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Basic-Scripts/flames.py -------------------------------------------------------------------------------- /Basic-Scripts/flat_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Basic-Scripts/flat_list.py -------------------------------------------------------------------------------- /Basic-Scripts/forWithList.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Basic-Scripts/forWithList.py -------------------------------------------------------------------------------- /Basic-Scripts/for_loop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Basic-Scripts/for_loop.py -------------------------------------------------------------------------------- /Basic-Scripts/for_loop2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Basic-Scripts/for_loop2.py -------------------------------------------------------------------------------- /Basic-Scripts/for_loop3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Basic-Scripts/for_loop3.py -------------------------------------------------------------------------------- /Basic-Scripts/function_1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Basic-Scripts/function_1.py -------------------------------------------------------------------------------- /Basic-Scripts/function_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Basic-Scripts/function_2.py -------------------------------------------------------------------------------- /Basic-Scripts/function_parameter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Basic-Scripts/function_parameter.py -------------------------------------------------------------------------------- /Basic-Scripts/function_parameter_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Basic-Scripts/function_parameter_2.py -------------------------------------------------------------------------------- /Basic-Scripts/get_ip_address.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Basic-Scripts/get_ip_address.py -------------------------------------------------------------------------------- /Basic-Scripts/github_opener.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Basic-Scripts/github_opener.py -------------------------------------------------------------------------------- /Basic-Scripts/guessgameadv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Basic-Scripts/guessgameadv.py -------------------------------------------------------------------------------- /Basic-Scripts/guessinggame.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Basic-Scripts/guessinggame.py -------------------------------------------------------------------------------- /Basic-Scripts/gui-tk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Basic-Scripts/gui-tk.py -------------------------------------------------------------------------------- /Basic-Scripts/hangman.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Basic-Scripts/hangman.py -------------------------------------------------------------------------------- /Basic-Scripts/happy_numbers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Basic-Scripts/happy_numbers.py -------------------------------------------------------------------------------- /Basic-Scripts/hello.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python3 2 | #first world program 3 | print("Hello World!") 4 | -------------------------------------------------------------------------------- /Basic-Scripts/if_elif.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Basic-Scripts/if_elif.py -------------------------------------------------------------------------------- /Basic-Scripts/if_else.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Basic-Scripts/if_else.py -------------------------------------------------------------------------------- /Basic-Scripts/if_else_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Basic-Scripts/if_else_2.py -------------------------------------------------------------------------------- /Basic-Scripts/img_to_ascii.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Basic-Scripts/img_to_ascii.py -------------------------------------------------------------------------------- /Basic-Scripts/insert_sort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Basic-Scripts/insert_sort.py -------------------------------------------------------------------------------- /Basic-Scripts/int_to_en.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Basic-Scripts/int_to_en.py -------------------------------------------------------------------------------- /Basic-Scripts/leap_year.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Basic-Scripts/leap_year.py -------------------------------------------------------------------------------- /Basic-Scripts/letter_counter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Basic-Scripts/letter_counter.py -------------------------------------------------------------------------------- /Basic-Scripts/list_1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Basic-Scripts/list_1.py -------------------------------------------------------------------------------- /Basic-Scripts/list_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Basic-Scripts/list_2.py -------------------------------------------------------------------------------- /Basic-Scripts/list_tuple_dict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Basic-Scripts/list_tuple_dict.py -------------------------------------------------------------------------------- /Basic-Scripts/location_ip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Basic-Scripts/location_ip -------------------------------------------------------------------------------- /Basic-Scripts/magic8Ball.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Basic-Scripts/magic8Ball.py -------------------------------------------------------------------------------- /Basic-Scripts/magic_square.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Basic-Scripts/magic_square.py -------------------------------------------------------------------------------- /Basic-Scripts/math_expression.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Basic-Scripts/math_expression.py -------------------------------------------------------------------------------- /Basic-Scripts/math_func.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Basic-Scripts/math_func.py -------------------------------------------------------------------------------- /Basic-Scripts/maxBetween2NumbersWithoutIF.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Basic-Scripts/maxBetween2NumbersWithoutIF.py -------------------------------------------------------------------------------- /Basic-Scripts/merge_sort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Basic-Scripts/merge_sort.py -------------------------------------------------------------------------------- /Basic-Scripts/myPets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Basic-Scripts/myPets.py -------------------------------------------------------------------------------- /Basic-Scripts/odd_even.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Basic-Scripts/odd_even.py -------------------------------------------------------------------------------- /Basic-Scripts/palindrome.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Basic-Scripts/palindrome.py -------------------------------------------------------------------------------- /Basic-Scripts/password_checker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Basic-Scripts/password_checker.py -------------------------------------------------------------------------------- /Basic-Scripts/picnicTable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Basic-Scripts/picnicTable.py -------------------------------------------------------------------------------- /Basic-Scripts/prime_numbers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Basic-Scripts/prime_numbers.py -------------------------------------------------------------------------------- /Basic-Scripts/pyperClip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Basic-Scripts/pyperClip.py -------------------------------------------------------------------------------- /Basic-Scripts/quad_equation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Basic-Scripts/quad_equation.py -------------------------------------------------------------------------------- /Basic-Scripts/rand_range.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Basic-Scripts/rand_range.py -------------------------------------------------------------------------------- /Basic-Scripts/random.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Basic-Scripts/random.py -------------------------------------------------------------------------------- /Basic-Scripts/random_password.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Basic-Scripts/random_password.py -------------------------------------------------------------------------------- /Basic-Scripts/recursion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Basic-Scripts/recursion.py -------------------------------------------------------------------------------- /Basic-Scripts/reverse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Basic-Scripts/reverse.py -------------------------------------------------------------------------------- /Basic-Scripts/scrap_quotes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Basic-Scripts/scrap_quotes.py -------------------------------------------------------------------------------- /Basic-Scripts/secure your password.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Basic-Scripts/secure your password.py -------------------------------------------------------------------------------- /Basic-Scripts/selection_sort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Basic-Scripts/selection_sort.py -------------------------------------------------------------------------------- /Basic-Scripts/send_mail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Basic-Scripts/send_mail.py -------------------------------------------------------------------------------- /Basic-Scripts/simple-address-book.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Basic-Scripts/simple-address-book.py -------------------------------------------------------------------------------- /Basic-Scripts/simple_file_write.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Basic-Scripts/simple_file_write.py -------------------------------------------------------------------------------- /Basic-Scripts/simple_interest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Basic-Scripts/simple_interest.py -------------------------------------------------------------------------------- /Basic-Scripts/snake_to_camel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Basic-Scripts/snake_to_camel.py -------------------------------------------------------------------------------- /Basic-Scripts/staicase_pattern.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Basic-Scripts/staicase_pattern.py -------------------------------------------------------------------------------- /Basic-Scripts/starpattern.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Basic-Scripts/starpattern.py -------------------------------------------------------------------------------- /Basic-Scripts/string_practice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Basic-Scripts/string_practice.py -------------------------------------------------------------------------------- /Basic-Scripts/sum_lst_index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Basic-Scripts/sum_lst_index.py -------------------------------------------------------------------------------- /Basic-Scripts/sum_of_items_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Basic-Scripts/sum_of_items_list.py -------------------------------------------------------------------------------- /Basic-Scripts/table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Basic-Scripts/table.py -------------------------------------------------------------------------------- /Basic-Scripts/tic-tac-toe-1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Basic-Scripts/tic-tac-toe-1.py -------------------------------------------------------------------------------- /Basic-Scripts/tic-tac-toe.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Basic-Scripts/time.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Basic-Scripts/time.py -------------------------------------------------------------------------------- /Basic-Scripts/towerofhanoi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Basic-Scripts/towerofhanoi.py -------------------------------------------------------------------------------- /Basic-Scripts/translate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Basic-Scripts/translate.py -------------------------------------------------------------------------------- /Basic-Scripts/tuple_1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Basic-Scripts/tuple_1.py -------------------------------------------------------------------------------- /Basic-Scripts/tuple_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Basic-Scripts/tuple_2.py -------------------------------------------------------------------------------- /Basic-Scripts/validateInput.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Basic-Scripts/validateInput.py -------------------------------------------------------------------------------- /Basic-Scripts/watermark_pdf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Basic-Scripts/watermark_pdf.py -------------------------------------------------------------------------------- /Basic-Scripts/while1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Basic-Scripts/while1.py -------------------------------------------------------------------------------- /Basic-Scripts/while_loop2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Basic-Scripts/while_loop2.py -------------------------------------------------------------------------------- /Basic-Scripts/word_encrypt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Basic-Scripts/word_encrypt.py -------------------------------------------------------------------------------- /Basic-Scripts/yourname.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Basic-Scripts/yourname.py -------------------------------------------------------------------------------- /Basic-Scripts/zeroDivide.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Basic-Scripts/zeroDivide.py -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /Calculator_GUI/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Calculator_GUI/Readme.md -------------------------------------------------------------------------------- /Calculator_GUI/calculator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Calculator_GUI/calculator.py -------------------------------------------------------------------------------- /Calculator_GUI/calculator_.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Calculator_GUI/calculator_.png -------------------------------------------------------------------------------- /Chat example with socket lib/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Chat example with socket lib/client.py -------------------------------------------------------------------------------- /Chat example with socket lib/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Chat example with socket lib/server.py -------------------------------------------------------------------------------- /Contribution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Contribution.md -------------------------------------------------------------------------------- /Image-Processing/Basic_OpenCV/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Image-Processing/Basic_OpenCV/README.md -------------------------------------------------------------------------------- /Image-Processing/Basic_OpenCV/rose.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Image-Processing/Basic_OpenCV/rose.jpg -------------------------------------------------------------------------------- /Image-Processing/Canny Edge Detection/CannyEdgeDetection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Image-Processing/Canny Edge Detection/CannyEdgeDetection.py -------------------------------------------------------------------------------- /Image-Processing/Canny Edge Detection/Canny_EdgeDetection_using_math.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Image-Processing/Canny Edge Detection/Canny_EdgeDetection_using_math.py -------------------------------------------------------------------------------- /Image-Processing/Canny Edge Detection/Images/glimpse all result.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Image-Processing/Canny Edge Detection/Images/glimpse all result.JPG -------------------------------------------------------------------------------- /Image-Processing/Canny Edge Detection/Images/input image.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Image-Processing/Canny Edge Detection/Images/input image.JPG -------------------------------------------------------------------------------- /Image-Processing/Canny Edge Detection/Images/pic1.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Image-Processing/Canny Edge Detection/Images/pic1.JPG -------------------------------------------------------------------------------- /Image-Processing/Canny Edge Detection/Images/pic2.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Image-Processing/Canny Edge Detection/Images/pic2.JPG -------------------------------------------------------------------------------- /Image-Processing/Canny Edge Detection/Images/res1pic1.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Image-Processing/Canny Edge Detection/Images/res1pic1.JPG -------------------------------------------------------------------------------- /Image-Processing/Canny Edge Detection/Images/res2pic2.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Image-Processing/Canny Edge Detection/Images/res2pic2.JPG -------------------------------------------------------------------------------- /Image-Processing/Canny Edge Detection/Images/res3sudoku.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Image-Processing/Canny Edge Detection/Images/res3sudoku.JPG -------------------------------------------------------------------------------- /Image-Processing/Canny Edge Detection/Images/tograyscale.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Image-Processing/Canny Edge Detection/Images/tograyscale.JPG -------------------------------------------------------------------------------- /Image-Processing/Canny Edge Detection/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Image-Processing/Canny Edge Detection/Readme.md -------------------------------------------------------------------------------- /Image-Processing/Car_detection/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Image-Processing/Car_detection/README.md -------------------------------------------------------------------------------- /Image-Processing/Cartoonify Image/Cartoonify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Image-Processing/Cartoonify Image/Cartoonify.py -------------------------------------------------------------------------------- /Image-Processing/Cartoonify Image/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Image-Processing/Cartoonify Image/README.md -------------------------------------------------------------------------------- /Image-Processing/Cartoonify Image/images/Cartoonified Image.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Image-Processing/Cartoonify Image/images/Cartoonified Image.PNG -------------------------------------------------------------------------------- /Image-Processing/Cartoonify Image/images/Original Image.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Image-Processing/Cartoonify Image/images/Original Image.PNG -------------------------------------------------------------------------------- /Image-Processing/Cartoonify Image/images/sunset.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Image-Processing/Cartoonify Image/images/sunset.jpg -------------------------------------------------------------------------------- /Image-Processing/Color_Detection/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Image-Processing/Color_Detection/Readme.md -------------------------------------------------------------------------------- /Image-Processing/Color_Detection/color_detection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Image-Processing/Color_Detection/color_detection.py -------------------------------------------------------------------------------- /Image-Processing/Color_Detection/color_sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Image-Processing/Color_Detection/color_sample.png -------------------------------------------------------------------------------- /Image-Processing/Color_Detection/colors.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Image-Processing/Color_Detection/colors.csv -------------------------------------------------------------------------------- /Image-Processing/Detecting Contours/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Image-Processing/Detecting Contours/Readme.md -------------------------------------------------------------------------------- /Image-Processing/Detecting Contours/detecting_geometrical_shapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Image-Processing/Detecting Contours/detecting_geometrical_shapes.py -------------------------------------------------------------------------------- /Image-Processing/Detecting Contours/output2.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Image-Processing/Detecting Contours/output2.JPG -------------------------------------------------------------------------------- /Image-Processing/Detecting Contours/shapes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Image-Processing/Detecting Contours/shapes.png -------------------------------------------------------------------------------- /Image-Processing/Face_detection/Face_detection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Image-Processing/Face_detection/Face_detection.py -------------------------------------------------------------------------------- /Image-Processing/Face_detection/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Image-Processing/Face_detection/README.md -------------------------------------------------------------------------------- /Image-Processing/HANDWRITING RECOGNIZER/hand.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Image-Processing/HANDWRITING RECOGNIZER/hand.py -------------------------------------------------------------------------------- /Image-Processing/HANDWRITING RECOGNIZER/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Image-Processing/HANDWRITING RECOGNIZER/readme.md -------------------------------------------------------------------------------- /Image-Processing/Hough_Transform/HoughTransform_without_opencv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Image-Processing/Hough_Transform/HoughTransform_without_opencv.py -------------------------------------------------------------------------------- /Image-Processing/Hough_Transform/hough_Transform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Image-Processing/Hough_Transform/hough_Transform.py -------------------------------------------------------------------------------- /Image-Processing/Hough_Transform/image.jfif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Image-Processing/Hough_Transform/image.jfif -------------------------------------------------------------------------------- /Image-Processing/Hough_Transform/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Image-Processing/Hough_Transform/readme.md -------------------------------------------------------------------------------- /Image-Processing/Image To Sepia Effect/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Image-Processing/Image To Sepia Effect/README.md -------------------------------------------------------------------------------- /Image-Processing/Image To Sepia Effect/Taj_Mahal.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Image-Processing/Image To Sepia Effect/Taj_Mahal.jpg -------------------------------------------------------------------------------- /Image-Processing/Image To Sepia Effect/original.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Image-Processing/Image To Sepia Effect/original.jpg -------------------------------------------------------------------------------- /Image-Processing/Image To Sepia Effect/sepia image convertor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Image-Processing/Image To Sepia Effect/sepia image convertor.py -------------------------------------------------------------------------------- /Image-Processing/Image To Sepia Effect/sepia.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Image-Processing/Image To Sepia Effect/sepia.jpg -------------------------------------------------------------------------------- /Image-Processing/ImageCropper/Data/CropDEMO.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Image-Processing/ImageCropper/Data/CropDEMO.gif -------------------------------------------------------------------------------- /Image-Processing/ImageCropper/Data/Man_United.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Image-Processing/ImageCropper/Data/Man_United.jpeg -------------------------------------------------------------------------------- /Image-Processing/ImageCropper/Data/cropped image1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Image-Processing/ImageCropper/Data/cropped image1.png -------------------------------------------------------------------------------- /Image-Processing/ImageCropper/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Image-Processing/ImageCropper/README.md -------------------------------------------------------------------------------- /Image-Processing/ImageCropper/crop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Image-Processing/ImageCropper/crop.py -------------------------------------------------------------------------------- /Image-Processing/Image_Crop_(resize)/Image_crop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Image-Processing/Image_Crop_(resize)/Image_crop.py -------------------------------------------------------------------------------- /Image-Processing/Image_Crop_(resize)/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Image-Processing/Image_Crop_(resize)/README.md -------------------------------------------------------------------------------- /Image-Processing/Image_Crop_(resize)/rose.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Image-Processing/Image_Crop_(resize)/rose.jpg -------------------------------------------------------------------------------- /Image-Processing/Image_filters_using_convolution/3D_convolve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Image-Processing/Image_filters_using_convolution/3D_convolve.py -------------------------------------------------------------------------------- /Image-Processing/Image_filters_using_convolution/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Image-Processing/Image_filters_using_convolution/README.md -------------------------------------------------------------------------------- /Image-Processing/Image_filters_using_convolution/images/after.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Image-Processing/Image_filters_using_convolution/images/after.png -------------------------------------------------------------------------------- /Image-Processing/Image_filters_using_convolution/images/before.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Image-Processing/Image_filters_using_convolution/images/before.png -------------------------------------------------------------------------------- /Image-Processing/Invisible_cloak/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Image-Processing/Invisible_cloak/README.md -------------------------------------------------------------------------------- /Image-Processing/Invisible_cloak/cloak.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Image-Processing/Invisible_cloak/cloak.py -------------------------------------------------------------------------------- /Image-Processing/JpgToPngConvertor/JpgToPngConvertor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Image-Processing/JpgToPngConvertor/JpgToPngConvertor.py -------------------------------------------------------------------------------- /Image-Processing/JpgToPngConvertor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Image-Processing/JpgToPngConvertor/README.md -------------------------------------------------------------------------------- /Image-Processing/JpgToPngConvertor/Source_Images/bulbasaur.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Image-Processing/JpgToPngConvertor/Source_Images/bulbasaur.jpg -------------------------------------------------------------------------------- /Image-Processing/JpgToPngConvertor/Source_Images/charmander.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Image-Processing/JpgToPngConvertor/Source_Images/charmander.jpg -------------------------------------------------------------------------------- /Image-Processing/JpgToPngConvertor/Source_Images/pikachu.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Image-Processing/JpgToPngConvertor/Source_Images/pikachu.jpg -------------------------------------------------------------------------------- /Image-Processing/JpgToPngConvertor/Source_Images/squirtle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Image-Processing/JpgToPngConvertor/Source_Images/squirtle.jpg -------------------------------------------------------------------------------- /Image-Processing/Qr_scanner/Qr_scanner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Image-Processing/Qr_scanner/Qr_scanner.py -------------------------------------------------------------------------------- /Image-Processing/Qr_scanner/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Image-Processing/Qr_scanner/README.md -------------------------------------------------------------------------------- /Image-Processing/Qr_scanner/qr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Image-Processing/Qr_scanner/qr.png -------------------------------------------------------------------------------- /Image-Processing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Image-Processing/README.md -------------------------------------------------------------------------------- /Image-Processing/ocr-img-to-txt/ocr-img-to-txt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Image-Processing/ocr-img-to-txt/ocr-img-to-txt.md -------------------------------------------------------------------------------- /Image-Processing/ocr-img-to-txt/ocr-img-to-txt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Image-Processing/ocr-img-to-txt/ocr-img-to-txt.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/README.md -------------------------------------------------------------------------------- /System-Automation-Scripts/Amazon-price-tracker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/System-Automation-Scripts/Amazon-price-tracker/README.md -------------------------------------------------------------------------------- /System-Automation-Scripts/Amazon-price-tracker/images/confirm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/System-Automation-Scripts/Amazon-price-tracker/images/confirm.png -------------------------------------------------------------------------------- /System-Automation-Scripts/Amazon-price-tracker/images/lesssecure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/System-Automation-Scripts/Amazon-price-tracker/images/lesssecure.png -------------------------------------------------------------------------------- /System-Automation-Scripts/Amazon-price-tracker/images/single.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/System-Automation-Scripts/Amazon-price-tracker/images/single.png -------------------------------------------------------------------------------- /System-Automation-Scripts/Amazon-price-tracker/mail_in_python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/System-Automation-Scripts/Amazon-price-tracker/mail_in_python.py -------------------------------------------------------------------------------- /System-Automation-Scripts/Amazon-price-tracker/price_logger.txt: -------------------------------------------------------------------------------- 1 | The cost of the product is 649.0 at 2020-08-11 19:23:36.359383 2 | -------------------------------------------------------------------------------- /System-Automation-Scripts/Amazon-price-tracker/price_tracker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/System-Automation-Scripts/Amazon-price-tracker/price_tracker.py -------------------------------------------------------------------------------- /System-Automation-Scripts/Automate-Telegram/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/System-Automation-Scripts/Automate-Telegram/README.md -------------------------------------------------------------------------------- /System-Automation-Scripts/Automate-Telegram/automate_telegram.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/System-Automation-Scripts/Automate-Telegram/automate_telegram.py -------------------------------------------------------------------------------- /System-Automation-Scripts/Automate-Telegram/code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/System-Automation-Scripts/Automate-Telegram/code.png -------------------------------------------------------------------------------- /System-Automation-Scripts/Automate-Telegram/login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/System-Automation-Scripts/Automate-Telegram/login.png -------------------------------------------------------------------------------- /System-Automation-Scripts/Automate-Telegram/send.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/System-Automation-Scripts/Automate-Telegram/send.png -------------------------------------------------------------------------------- /System-Automation-Scripts/Automate-Telegram/working.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/System-Automation-Scripts/Automate-Telegram/working.PNG -------------------------------------------------------------------------------- /System-Automation-Scripts/Automatic attending meet/Class_buddy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/System-Automation-Scripts/Automatic attending meet/Class_buddy.py -------------------------------------------------------------------------------- /System-Automation-Scripts/Automatic attending meet/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/System-Automation-Scripts/Automatic attending meet/Readme.md -------------------------------------------------------------------------------- /System-Automation-Scripts/Email_Client/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/System-Automation-Scripts/Email_Client/README.md -------------------------------------------------------------------------------- /System-Automation-Scripts/Email_Client/email_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/System-Automation-Scripts/Email_Client/email_client.py -------------------------------------------------------------------------------- /System-Automation-Scripts/Email_Client/email_client_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/System-Automation-Scripts/Email_Client/email_client_test.py -------------------------------------------------------------------------------- /System-Automation-Scripts/Email_Client/password.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /System-Automation-Scripts/Email_Client/test.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /System-Automation-Scripts/FolderSorter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/System-Automation-Scripts/FolderSorter.py -------------------------------------------------------------------------------- /System-Automation-Scripts/Google/Automating_Google.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/System-Automation-Scripts/Google/Automating_Google.py -------------------------------------------------------------------------------- /System-Automation-Scripts/Google/Automating_Google_Search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/System-Automation-Scripts/Google/Automating_Google_Search.py -------------------------------------------------------------------------------- /System-Automation-Scripts/Google/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/System-Automation-Scripts/Google/README.md -------------------------------------------------------------------------------- /System-Automation-Scripts/PDF_Tables_To_CSV/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/System-Automation-Scripts/PDF_Tables_To_CSV/.gitignore -------------------------------------------------------------------------------- /System-Automation-Scripts/PDF_Tables_To_CSV/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/System-Automation-Scripts/PDF_Tables_To_CSV/README.md -------------------------------------------------------------------------------- /System-Automation-Scripts/PDF_Tables_To_CSV/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/System-Automation-Scripts/PDF_Tables_To_CSV/app.py -------------------------------------------------------------------------------- /System-Automation-Scripts/PDF_Tables_To_CSV/preview.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/System-Automation-Scripts/PDF_Tables_To_CSV/preview.gif -------------------------------------------------------------------------------- /System-Automation-Scripts/PingScanner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/System-Automation-Scripts/PingScanner.py -------------------------------------------------------------------------------- /System-Automation-Scripts/Questions_from_Project_Euler/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/System-Automation-Scripts/Questions_from_Project_Euler/README.md -------------------------------------------------------------------------------- /System-Automation-Scripts/Questions_from_Project_Euler/euler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/System-Automation-Scripts/Questions_from_Project_Euler/euler.py -------------------------------------------------------------------------------- /System-Automation-Scripts/Questions_from_Project_Euler/images/euler_home.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/System-Automation-Scripts/Questions_from_Project_Euler/images/euler_home.PNG -------------------------------------------------------------------------------- /System-Automation-Scripts/Questions_from_Project_Euler/images/euler_questions.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/System-Automation-Scripts/Questions_from_Project_Euler/images/euler_questions.PNG -------------------------------------------------------------------------------- /System-Automation-Scripts/Questions_from_Project_Euler/images/question1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/System-Automation-Scripts/Questions_from_Project_Euler/images/question1.PNG -------------------------------------------------------------------------------- /System-Automation-Scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/System-Automation-Scripts/README.md -------------------------------------------------------------------------------- /System-Automation-Scripts/Story Reader/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/System-Automation-Scripts/Story Reader/Readme.md -------------------------------------------------------------------------------- /System-Automation-Scripts/Story Reader/audiobook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/System-Automation-Scripts/Story Reader/audiobook.png -------------------------------------------------------------------------------- /System-Automation-Scripts/Story Reader/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/System-Automation-Scripts/Story Reader/main.py -------------------------------------------------------------------------------- /System-Automation-Scripts/Story Reader/mybook.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/System-Automation-Scripts/Story Reader/mybook.pdf -------------------------------------------------------------------------------- /System-Automation-Scripts/Twitter Automation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/System-Automation-Scripts/Twitter Automation/README.md -------------------------------------------------------------------------------- /System-Automation-Scripts/Twitter Automation/Twitter Automation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/System-Automation-Scripts/Twitter Automation/Twitter Automation.py -------------------------------------------------------------------------------- /System-Automation-Scripts/Twitter Automation/twitter_image.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/System-Automation-Scripts/Twitter Automation/twitter_image.PNG -------------------------------------------------------------------------------- /System-Automation-Scripts/WhatsApp-message-automation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/System-Automation-Scripts/WhatsApp-message-automation/README.md -------------------------------------------------------------------------------- /System-Automation-Scripts/WhatsApp-message-automation/abcd.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/System-Automation-Scripts/WhatsApp-message-automation/abcd.PNG -------------------------------------------------------------------------------- /System-Automation-Scripts/WhatsApp-message-automation/automate-messages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/System-Automation-Scripts/WhatsApp-message-automation/automate-messages.py -------------------------------------------------------------------------------- /System-Automation-Scripts/WhatsApp-message-automation/confirm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/System-Automation-Scripts/WhatsApp-message-automation/confirm.png -------------------------------------------------------------------------------- /System-Automation-Scripts/WhatsApp-message-automation/frequent.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/System-Automation-Scripts/WhatsApp-message-automation/frequent.PNG -------------------------------------------------------------------------------- /System-Automation-Scripts/WhatsApp-message-automation/qrcode.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/System-Automation-Scripts/WhatsApp-message-automation/qrcode.PNG -------------------------------------------------------------------------------- /System-Automation-Scripts/WhatsApp-message-automation/script.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/System-Automation-Scripts/WhatsApp-message-automation/script.PNG -------------------------------------------------------------------------------- /System-Automation-Scripts/WhatsApp-message-automation/search.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/System-Automation-Scripts/WhatsApp-message-automation/search.PNG -------------------------------------------------------------------------------- /System-Automation-Scripts/Word detector/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/System-Automation-Scripts/Word detector/README.md -------------------------------------------------------------------------------- /System-Automation-Scripts/Word detector/word_detector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/System-Automation-Scripts/Word detector/word_detector.py -------------------------------------------------------------------------------- /System-Automation-Scripts/Zoom automation/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/System-Automation-Scripts/Zoom automation/Readme.md -------------------------------------------------------------------------------- /System-Automation-Scripts/Zoom automation/img/join.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/System-Automation-Scripts/Zoom automation/img/join.png -------------------------------------------------------------------------------- /System-Automation-Scripts/Zoom automation/img/s1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/System-Automation-Scripts/Zoom automation/img/s1.png -------------------------------------------------------------------------------- /System-Automation-Scripts/Zoom automation/img/s2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/System-Automation-Scripts/Zoom automation/img/s2.png -------------------------------------------------------------------------------- /System-Automation-Scripts/Zoom automation/img/s3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/System-Automation-Scripts/Zoom automation/img/s3.png -------------------------------------------------------------------------------- /System-Automation-Scripts/Zoom automation/zoom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/System-Automation-Scripts/Zoom automation/zoom.py -------------------------------------------------------------------------------- /System-Automation-Scripts/automail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/System-Automation-Scripts/automail.py -------------------------------------------------------------------------------- /System-Automation-Scripts/automate-whatsapp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/System-Automation-Scripts/automate-whatsapp.py -------------------------------------------------------------------------------- /System-Automation-Scripts/junk_organiser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/System-Automation-Scripts/junk_organiser.py -------------------------------------------------------------------------------- /System-Automation-Scripts/pdfCreator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/System-Automation-Scripts/pdfCreator.py -------------------------------------------------------------------------------- /System-Automation-Scripts/processClose.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/System-Automation-Scripts/processClose.py -------------------------------------------------------------------------------- /System-Automation-Scripts/pypdf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/System-Automation-Scripts/pypdf.py -------------------------------------------------------------------------------- /System-Automation-Scripts/verify_email.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/System-Automation-Scripts/verify_email.py -------------------------------------------------------------------------------- /System-Automation-Scripts/whatsappbot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/System-Automation-Scripts/whatsappbot.py -------------------------------------------------------------------------------- /System-Automation-Scripts/zipFileConverter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/System-Automation-Scripts/zipFileConverter.py -------------------------------------------------------------------------------- /System-Automation-Scripts/zipFileExtracterCommandLine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/System-Automation-Scripts/zipFileExtracterCommandLine.py -------------------------------------------------------------------------------- /Web-Scraping/Covid-19 Statics/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Web-Scraping/Covid-19 Statics/README.md -------------------------------------------------------------------------------- /Web-Scraping/Covid-19 Statics/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Web-Scraping/Covid-19 Statics/code.py -------------------------------------------------------------------------------- /Web-Scraping/Cricbuzz Scrap/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Web-Scraping/Cricbuzz Scrap/Readme.md -------------------------------------------------------------------------------- /Web-Scraping/Cricbuzz Scrap/crik_buzz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Web-Scraping/Cricbuzz Scrap/crik_buzz.py -------------------------------------------------------------------------------- /Web-Scraping/E-Commerce Website/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Web-Scraping/E-Commerce Website/README.md -------------------------------------------------------------------------------- /Web-Scraping/E-Commerce Website/WebScraping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Web-Scraping/E-Commerce Website/WebScraping.py -------------------------------------------------------------------------------- /Web-Scraping/E-Commerce Website/products.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Web-Scraping/E-Commerce Website/products.csv -------------------------------------------------------------------------------- /Web-Scraping/Hacktoberfest_Events/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Web-Scraping/Hacktoberfest_Events/README.md -------------------------------------------------------------------------------- /Web-Scraping/Hacktoberfest_Events/hacktoberfest_events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Web-Scraping/Hacktoberfest_Events/hacktoberfest_events.py -------------------------------------------------------------------------------- /Web-Scraping/Hacktoberfest_Events/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Web-Scraping/Hacktoberfest_Events/requirements.txt -------------------------------------------------------------------------------- /Web-Scraping/IMDB_TopMovies/Output/imdb.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Web-Scraping/IMDB_TopMovies/Output/imdb.csv -------------------------------------------------------------------------------- /Web-Scraping/IMDB_TopMovies/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Web-Scraping/IMDB_TopMovies/README.md -------------------------------------------------------------------------------- /Web-Scraping/IMDB_TopMovies/imdb_topmovies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Web-Scraping/IMDB_TopMovies/imdb_topmovies.py -------------------------------------------------------------------------------- /Web-Scraping/Instagram-scraper/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Web-Scraping/Instagram-scraper/README.md -------------------------------------------------------------------------------- /Web-Scraping/Instagram-scraper/instagram-scraper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Web-Scraping/Instagram-scraper/instagram-scraper.py -------------------------------------------------------------------------------- /Web-Scraping/Instagram/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Web-Scraping/Instagram/README.md -------------------------------------------------------------------------------- /Web-Scraping/Instagram/instagram_count.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Web-Scraping/Instagram/instagram_count.py -------------------------------------------------------------------------------- /Web-Scraping/Medium-Articles-Details-Scrapping/.gitignore: -------------------------------------------------------------------------------- 1 | # Unnecesaary Files 2 | 3 | app/__pycahce__/ 4 | .idea -------------------------------------------------------------------------------- /Web-Scraping/Medium-Articles-Details-Scrapping/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Web-Scraping/Medium-Articles-Details-Scrapping/README.md -------------------------------------------------------------------------------- /Web-Scraping/Medium-Articles-Details-Scrapping/app/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Web-Scraping/Medium-Articles-Details-Scrapping/app/__init__.py -------------------------------------------------------------------------------- /Web-Scraping/Medium-Articles-Details-Scrapping/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Web-Scraping/Medium-Articles-Details-Scrapping/run.py -------------------------------------------------------------------------------- /Web-Scraping/Medium-Articles-Details-Scrapping/terminal-preview.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Web-Scraping/Medium-Articles-Details-Scrapping/terminal-preview.PNG -------------------------------------------------------------------------------- /Web-Scraping/Medium_article_downloader/Article_downloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Web-Scraping/Medium_article_downloader/Article_downloader.py -------------------------------------------------------------------------------- /Web-Scraping/Medium_article_downloader/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Web-Scraping/Medium_article_downloader/README.md -------------------------------------------------------------------------------- /Web-Scraping/Medium_article_downloader/medium.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Web-Scraping/Medium_article_downloader/medium.PNG -------------------------------------------------------------------------------- /Web-Scraping/Movie Recommendation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Web-Scraping/Movie Recommendation/README.md -------------------------------------------------------------------------------- /Web-Scraping/Movie Recommendation/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Web-Scraping/Movie Recommendation/code.py -------------------------------------------------------------------------------- /Web-Scraping/Questions_from_Project_Euler/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Web-Scraping/Questions_from_Project_Euler/README.md -------------------------------------------------------------------------------- /Web-Scraping/Questions_from_Project_Euler/euler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Web-Scraping/Questions_from_Project_Euler/euler.py -------------------------------------------------------------------------------- /Web-Scraping/Questions_from_Project_Euler/images/euler_home.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Web-Scraping/Questions_from_Project_Euler/images/euler_home.PNG -------------------------------------------------------------------------------- /Web-Scraping/Questions_from_Project_Euler/images/euler_questions.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Web-Scraping/Questions_from_Project_Euler/images/euler_questions.PNG -------------------------------------------------------------------------------- /Web-Scraping/Questions_from_Project_Euler/images/question1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Web-Scraping/Questions_from_Project_Euler/images/question1.PNG -------------------------------------------------------------------------------- /Web-Scraping/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Web-Scraping/README.md -------------------------------------------------------------------------------- /Web-Scraping/Reddit Scrapper/.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__ 2 | .vscode -------------------------------------------------------------------------------- /Web-Scraping/Reddit Scrapper/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Web-Scraping/Reddit Scrapper/README.md -------------------------------------------------------------------------------- /Web-Scraping/Reddit Scrapper/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Web-Scraping/Reddit Scrapper/app.py -------------------------------------------------------------------------------- /Web-Scraping/Reddit Scrapper/output/config.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Web-Scraping/Reddit Scrapper/output/config.PNG -------------------------------------------------------------------------------- /Web-Scraping/Reddit Scrapper/output/csv.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Web-Scraping/Reddit Scrapper/output/csv.PNG -------------------------------------------------------------------------------- /Web-Scraping/Reddit Scrapper/output/result.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Web-Scraping/Reddit Scrapper/output/result.csv -------------------------------------------------------------------------------- /Web-Scraping/Reddit Scrapper/requirements.txt: -------------------------------------------------------------------------------- 1 | praw==7.1.0 2 | pandas==1.1.1 -------------------------------------------------------------------------------- /Web-Scraping/ScrappingHackerNewsWebsite/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Web-Scraping/ScrappingHackerNewsWebsite/README.md -------------------------------------------------------------------------------- /Web-Scraping/ScrappingHackerNewsWebsite/ScrappingHackerNewsWebsite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Web-Scraping/ScrappingHackerNewsWebsite/ScrappingHackerNewsWebsite.py -------------------------------------------------------------------------------- /Web-Scraping/Songs_Lyrics/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Web-Scraping/Songs_Lyrics/README.md -------------------------------------------------------------------------------- /Web-Scraping/Songs_Lyrics/lyrics_op.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Web-Scraping/Songs_Lyrics/lyrics_op.png -------------------------------------------------------------------------------- /Web-Scraping/Songs_Lyrics/song_lyrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Web-Scraping/Songs_Lyrics/song_lyrics.py -------------------------------------------------------------------------------- /Web-Scraping/Times_of_india/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Web-Scraping/Times_of_india/README.md -------------------------------------------------------------------------------- /Web-Scraping/Times_of_india/TOI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Web-Scraping/Times_of_india/TOI.png -------------------------------------------------------------------------------- /Web-Scraping/Times_of_india/Times_of_india.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Web-Scraping/Times_of_india/Times_of_india.py -------------------------------------------------------------------------------- /Web-Scraping/amazon_reviews_scraping/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Web-Scraping/amazon_reviews_scraping/README.md -------------------------------------------------------------------------------- /Web-Scraping/amazon_reviews_scraping/items.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Web-Scraping/amazon_reviews_scraping/items.py -------------------------------------------------------------------------------- /Web-Scraping/amazon_reviews_scraping/middlewares.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Web-Scraping/amazon_reviews_scraping/middlewares.py -------------------------------------------------------------------------------- /Web-Scraping/amazon_reviews_scraping/pipelines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Web-Scraping/amazon_reviews_scraping/pipelines.py -------------------------------------------------------------------------------- /Web-Scraping/amazon_reviews_scraping/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Web-Scraping/amazon_reviews_scraping/settings.py -------------------------------------------------------------------------------- /Web-Scraping/amazon_reviews_scraping/spiders/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Web-Scraping/amazon_reviews_scraping/spiders/__init__.py -------------------------------------------------------------------------------- /Web-Scraping/amazon_reviews_scraping/spiders/__pycache__/amazon_reviews.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Web-Scraping/amazon_reviews_scraping/spiders/__pycache__/amazon_reviews.cpython-38.pyc -------------------------------------------------------------------------------- /Web-Scraping/amazon_reviews_scraping/spiders/scraper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Web-Scraping/amazon_reviews_scraping/spiders/scraper.py -------------------------------------------------------------------------------- /Web-Scraping/links extractor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Web-Scraping/links extractor/README.md -------------------------------------------------------------------------------- /Web-Scraping/links extractor/links-extractor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/Web-Scraping/links extractor/links-extractor.py -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerexploit/Awesome-Python-Scripts/HEAD/_config.yml --------------------------------------------------------------------------------