gitextract_30r9y9e1/ ├── .circleci/ │ └── config.yml ├── .github/ │ ├── dependabot.yml │ └── workflows/ │ ├── Codeql.yml │ └── python.yml ├── .gitignore ├── 1 File handle/ │ ├── File handle binary/ │ │ ├── Update a binary file2.py │ │ ├── delete.py │ │ ├── question 1 (elegible for remedial, top marks).py │ │ ├── read.py │ │ ├── search record in binary file.py │ │ └── update2.py │ └── File handle text/ │ ├── counter.py │ ├── file handle 12 length of line in text file.py │ ├── happy.txt │ ├── input,output and error streams.py │ ├── question 2.py │ ├── question 5.py │ ├── question 6.py │ ├── question3.py │ ├── special symbol after word.py │ └── story.txt ├── 8_puzzle.py ├── A solution to project euler problem 3.py ├── AREA OF TRIANGLE.py ├── ARKA.py ├── ASCIIvaluecharacter.py ├── Add_two_Linked_List.py ├── Anonymous_TextApp.py ├── AreaOfTriangle.py ├── Armstrong_number ├── Armstrong_number.py ├── Assembler/ │ ├── GUIDE.txt │ ├── README.md │ ├── assembler.py │ ├── examples/ │ │ ├── code.txt │ │ ├── code2.txt │ │ ├── code3.txt │ │ ├── code4.txt │ │ ├── klmn │ │ └── test.txt │ └── requirements.txt ├── Audio_Summarizer.py ├── AutoComplete_App/ │ ├── backend.py │ └── frontend.py ├── Automated Scheduled Call Reminders/ │ ├── caller.py │ ├── requirements.txt │ └── schedular.py ├── Bank Application .ipynb ├── Base Converter Number system.py ├── Battery_notifier.py ├── Binary Coefficients.py ├── Binary_search.py ├── Binary_to_Decimal.py ├── BlackJack_game/ │ ├── blackjack.py │ ├── blackjack_rr.py │ ├── blackjack_simulate.py │ └── requirements.txt ├── BoardGame-CLI/ │ ├── python.py │ ├── snakeLadder.py │ └── uno.py ├── BrowserHistory/ │ ├── backend.py │ ├── rock_paper_scissors.py │ └── tests/ │ └── test_browser_history.py ├── BruteForce.py ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── CRC/ │ └── crc.py ├── CSV_file.py ├── Caesar Cipher Encoder & Decoder.py ├── Calculate resistance.py ├── Calculator with simple ui.py ├── Calendar (GUI).py ├── Cat/ │ ├── cat.py │ ├── text_a.txt │ ├── text_b.txt │ └── text_c.txt ├── Checker_game_by_dz/ │ ├── __init__.py │ ├── first.py │ └── modules/ │ ├── __init__.py │ ├── checker.py │ ├── checker_board.py │ ├── pieces.py │ └── statics.py ├── Chrome Dino Automater.py ├── Classification_human_or_horse.py ├── CliYoutubeDownloader/ │ ├── CliYoutubeDownloader.py │ └── requirements.txt ├── CliYoutubeDownloader.py ├── Collatz Sequence/ │ ├── Collatz Sequence.py │ └── Collaze-Visualize.py ├── Collatz-Conjecture.py ├── Colors/ │ ├── multicoloredline.py │ ├── pixel_sort.py │ ├── primary_colors.py │ └── print_colors.py ├── Compression_Analysis/ │ └── PSNR.py ├── Conversation.py ├── CountMillionCharacter.py ├── CountMillionCharacters-2.0.py ├── CountMillionCharacters-Variations/ │ └── variation1.py ├── Crack_password.py ├── Credit_Card_Validator.py ├── Cricket_score.py ├── Day_of_week.py ├── Decimal number to binary function.py ├── Decimal_To_Binary.py ├── Delete_Linked_List.py ├── Detect_Remove_loop.py ├── Dictionary opperations (input,update a dict).py ├── Divide Operator.py ├── Downloaded Files Organizer/ │ ├── browser_status.py │ ├── move_to_directory.py │ ├── obs.py │ ├── readme.md │ └── requirements.txt ├── Droplistmenu/ │ ├── GamesCalender.py │ └── README.md ├── Electronics_Algorithms/ │ ├── Ohms_law.py │ └── resistance.py ├── Email-Automation.py ├── Emoji Dictionary/ │ ├── QT_GUI.py │ ├── QT_GUI.ui │ ├── README.md │ ├── emoji_dictionary.py │ ├── requirements.txt │ └── untitled.ui ├── Encryption using base64.py ├── EncryptionTool.py ├── Exception_Handling_in_Python.py ├── Extract-Table-from-pdf-txt-docx/ │ ├── Parent/ │ │ ├── Child1/ │ │ │ ├── Document_Child1.docx │ │ │ └── Text_Child1.txt │ │ ├── Child2/ │ │ │ ├── Document_Child2.docx │ │ │ └── Text_Child2.txt │ │ └── Child3/ │ │ ├── Document_Child3.docx │ │ └── Text_Child3.txt │ └── main.py ├── ExtractThumbnailFromVideo/ │ ├── README.md │ └── extract_thumbnail_from_video.py ├── Extract_Text_from_image.py ├── FIND FACTORIAL OF A NUMBER.py ├── Face and eye Recognition/ │ ├── face_recofnation_first.py │ └── gesture_control.py ├── Face_Mask_detection (haarcascade)/ │ ├── Resources/ │ │ ├── haarcascade_frontalface_default.xml │ │ └── keras_model.h5 │ └── mask_detection.py ├── FibonacciNumbersWithGenerators.py ├── Fibonacci_sequence_recursive_sol.py ├── Find current weather of any city using openweathermap API.py ├── FindingResolutionOfAnImage.py ├── FizzBuzz.py ├── Flappy Bird - created with tkinter/ │ ├── .gitignore │ ├── Background.py │ ├── Bird.py │ ├── Flappy Bird.py │ ├── README.md │ ├── Settings.py │ └── Tubes.py ├── Generate a random number between 0 to 9.py ├── Google_Image_Downloader/ │ ├── create_dir.py │ └── image_grapper.py ├── Google_News.py ├── Gregorian_Calendar.py ├── Grocery calculator.py ├── GroupSms_Way2.py ├── Guess_the_number_game.py ├── Guessing_Game.py ├── HTML_to_PDF/ │ ├── index.html │ └── main.py ├── Hand-Motion-Detection/ │ ├── hand_motion_recognizer.py │ └── requirements.txt ├── HangMan Game.py ├── Hangman.py ├── Hotel-Management.py ├── Image-watermarker/ │ ├── README.md │ ├── app.py │ ├── requirements.txt │ └── watermark.py ├── ImageDownloader/ │ ├── img_downloader.py │ └── requirements.txt ├── Image_resize.py ├── Industrial_developed_hangman/ │ ├── Data/ │ │ ├── local_words.txt │ │ └── text_images.txt │ ├── Makefile │ ├── README.md │ ├── pyproject.toml │ ├── pytest.ini │ ├── setup.cfg │ ├── src/ │ │ └── hangman/ │ │ ├── __init__.py │ │ └── main.py │ └── tests/ │ ├── __init__.py │ └── test_hangman/ │ ├── __init__.py │ └── test_main.py ├── Infix_to_Postfix.py ├── Insert_operation_on_Linked_List.py ├── JARVIS/ │ ├── JARVIS_2.0.py │ ├── README.md │ └── requirements.txt ├── Job_scheduling.py ├── JsonParser.py ├── JustDialScrapperGUI/ │ └── Justdial Scrapper GUI.py ├── Key_Binding/ │ ├── key_binding.py │ └── requirement.txt ├── Kilometerstomile.py ├── Koch Curve/ │ ├── README.txt │ └── koch curve.py ├── LETTER GUESSER.py ├── LICENSE.md ├── Laundary System/ │ ├── README.md │ └── code.py ├── Letter_Counter.py ├── LinkedLists all Types/ │ ├── circular_linked_list.py │ ├── doubly_linked_list.py │ └── singly_linked_list.py ├── List.py ├── Luhn_Algorithm.py ├── ML/ │ ├── .gitignore │ ├── CLI_USAGE_SUMMARY.md │ ├── CMakeLists.txt │ ├── DATASETS.md │ ├── DOCUMENTATION.md │ ├── EXAMPLES.md │ ├── FEATURES.md │ ├── INSTALL_CLI.md │ ├── LAUNCH_GUI.bat │ ├── LAUNCH_GUI.sh │ ├── LICENSE │ ├── PROJECT_SUMMARY.md │ ├── QUICKSTART.md │ ├── QUICKSTART_GUI.md │ ├── README.md │ ├── examples/ │ │ ├── neural_architecture_search.py │ │ ├── train_cifar10.py │ │ └── train_custom.py │ ├── pyproject.toml │ ├── requirements.txt │ ├── run.ps1 │ ├── run.sh │ ├── src/ │ │ ├── cpp/ │ │ │ ├── extension.cpp │ │ │ ├── include/ │ │ │ │ └── cuda_ops.h │ │ │ └── operators.cpp │ │ ├── cuda/ │ │ │ ├── activations.cu │ │ │ ├── kernels.cu │ │ │ ├── matmul.cu │ │ │ └── optimizers.cu │ │ └── python/ │ │ └── neuralforge/ │ │ ├── __init__.py │ │ ├── cli/ │ │ │ ├── __init__.py │ │ │ ├── gui.py │ │ │ ├── nas.py │ │ │ ├── test.py │ │ │ └── train.py │ │ ├── config.py │ │ ├── data/ │ │ │ ├── __init__.py │ │ │ ├── augmentation.py │ │ │ ├── dataset.py │ │ │ ├── datasets.py │ │ │ └── transforms.py │ │ ├── models/ │ │ │ ├── __init__.py │ │ │ ├── efficientnet.py │ │ │ ├── resnet.py │ │ │ └── vit.py │ │ ├── nas/ │ │ │ ├── __init__.py │ │ │ ├── evaluator.py │ │ │ ├── evolution.py │ │ │ └── search_space.py │ │ ├── nn/ │ │ │ ├── __init__.py │ │ │ ├── activations.py │ │ │ ├── attention.py │ │ │ ├── convolution.py │ │ │ ├── layers.py │ │ │ └── modules.py │ │ ├── optim/ │ │ │ ├── __init__.py │ │ │ ├── optimizers.py │ │ │ └── schedulers.py │ │ ├── trainer.py │ │ └── utils/ │ │ ├── __init__.py │ │ ├── logger.py │ │ ├── metrics.py │ │ └── visualization.py │ ├── tests/ │ │ ├── README_GUI.md │ │ ├── SUPPORTED_DATASETS.txt │ │ ├── gui_test.py │ │ ├── quick_test.py │ │ └── test_model.py │ └── train.py ├── ML House Prediction.ipynb ├── Mad Libs Generator.py ├── Memory_game.py ├── Merge_linked_list.py ├── MobiusFunction.py ├── Model Usage.ipynb ├── Mp3_media_player.py ├── Multiply.py ├── MySQL_Databses.py ├── News_App/ │ ├── Newsapp.py │ ├── README.md │ ├── patterns.py │ └── requirements.txt ├── NumPy Array Exponentiation.py ├── Number reverse.py ├── Organise.py ├── PDF/ │ ├── basic.py │ ├── demerge_pdfs.py │ ├── header_footer.py │ ├── images.py │ └── requirements.txt ├── PDFtoAudiobook.py ├── PONG_GAME.py ├── PORT SCANNER.PY ├── Palindrome_Checker.py ├── Password Generator/ │ ├── pass_gen.py │ ├── requirements.txt │ └── requirements_new.txt ├── Password Manager Using Tkinter/ │ ├── PGV.py │ ├── README.md │ ├── data.json │ ├── data.txt │ ├── main.py │ └── requirements.txt ├── Patterns/ │ ├── half triangle pattern.py │ ├── pattern2.py │ ├── pattern5.py │ ├── pattern6.py │ └── patterns.py ├── Pc_information.py ├── Personal-Expense-Tracker/ │ ├── README.md │ └── expense_tracker.py ├── PingPong/ │ ├── Ball.py │ ├── Slab.py │ └── main.py ├── Polyline.py ├── Pomodoro (tkinter).py ├── PongPong_Game/ │ ├── README.md │ ├── pong/ │ │ ├── __init__.py │ │ ├── ball.py │ │ ├── load.py │ │ ├── paddle.py │ │ └── rectangle.py │ ├── pongpong.py │ └── requirements.txt ├── Prime_number.py ├── Python Distance.py ├── Python Programs/ │ ├── Program of Reverse of any number.py │ ├── Program to print table of given number.py │ ├── Program to reverse Linked List( Recursive solution).py │ ├── Python Program for Product of unique prime factors of a number.py │ ├── Python Program for Tower of Hanoi.py │ ├── Python Program for factorial of a number.py │ ├── Python Program to Count the Number of Each Vowel.py │ ├── Python Program to Display Fibonacci Sequence Using Recursion.py │ ├── Python Program to Find LCM.py │ ├── Python Program to Merge Mails.py │ ├── Python Program to Print the Fibonacci sequence.py │ ├── Python Program to Remove Punctuations from a String.py │ ├── Python Program to Reverse a linked list.py │ ├── Python Program to Sort Words in Alphabetic Order.py │ ├── Python Program to Transpose a Matrix.py │ └── python program for finding square root for positive number.py ├── Python Voice Generator.py ├── Python-Array-Equilibrium-Index.py ├── Python_chatting_application/ │ ├── README.md │ ├── client.py │ └── server.py ├── Python_swapping.py ├── QR_code_generator/ │ └── qrcode.py ├── QuadraticCalc.py ├── QuestionAnswerVirtualAssistant/ │ ├── backend.py │ ├── frontend.py │ └── requirements.txt ├── Quizzler Using Tkinter and Trivia DB API/ │ ├── README.md │ ├── data_dynamic.py │ ├── data_static.py │ ├── main.py │ ├── question_model.py │ ├── quiz_brain.py │ └── ui.py ├── README.md ├── Random Password Generator.py ├── RandomDice.py ├── RandomNumberGame.py ├── Randomnumber.py ├── ReadFromCSV.py ├── Recursion Visulaizer/ │ ├── .recursionVisualizer.py.swp │ ├── git │ └── recursionVisualizer.py ├── Reverse_list_in_groups.py ├── Rotate_Linked_List.py ├── SECURITY.md ├── SOUNDEX.py ├── Sanke-water-gun game.py ├── Search_Engine/ │ ├── README.md │ ├── backend.py │ ├── frontend.py │ └── test_data.py ├── Secret message generator GUI by tkinter.py ├── Shortest Distance between Two Lines.py ├── SimpleStopWatch.py ├── Snake Game Using Turtle/ │ ├── README.md │ ├── colors.py │ ├── food.py │ ├── highscore.txt │ ├── main.py │ ├── scoreboard.py │ ├── screenshots │ ├── snake.py │ └── wall.py ├── Snake-Water-Gun-Game.py ├── Snake_water_gun/ │ ├── README.md │ └── main.py ├── Sorting Algorithims/ │ ├── heapsort_linkedlist.py │ ├── mergesort_linkedlist.py │ └── quicksort_linkedlist.py ├── Sorting Algorithms/ │ ├── Binary_Insertion_Sort.py │ ├── Bubble_Sorting_Prog.py │ ├── Bubble_sort.py │ ├── Count sort.py │ ├── Counting Sort.py │ ├── Counting-sort.py │ ├── Cycle Sort.py │ ├── Heap sort.py │ ├── Iterative Merge Sort.py │ ├── Linear_Insertion_Sort.py │ ├── Merge Sort.py │ ├── Merge-sort.py │ ├── Quick sort.py │ ├── Shell Sort.py │ ├── Sort the values of first list using second list.py │ ├── Sorted_Inserted_Linked_List.py │ ├── SortingAStringAlphabetically.py │ ├── Sorting_List.py │ ├── Tim_sort.py │ ├── brickSort.py │ ├── bubblesortpgm.py │ ├── dual_pivot_quicksort.py │ ├── heap_sort.py │ ├── insertion_sort.py │ ├── merge_sort.py │ ├── pigeonhole_sort.py │ ├── quick_sort.py │ ├── recursive-quick-sort.py │ ├── selectionSort.py │ ├── selection_sort.py │ ├── sorting.py │ ├── stooge_sort.py │ └── wave_sort.py ├── SpeechToText.py ├── Split_Circular_Linked_List.py ├── Street_Fighter/ │ ├── LICENSE │ ├── docs/ │ │ ├── CODE_OF_CONDUCT.md │ │ ├── CONTRIBUTING.md │ │ ├── README.md │ │ ├── SECURITY.md │ │ └── requirements.txt │ └── src/ │ ├── fighter.py │ └── main.py ├── StringToBinary.py ├── String_Palindrome.py ├── Strings.py ├── Sum of digits of a number.py ├── TTS.py ├── TaskManager.py ├── TaskPlanner.py ├── Test-Case-Generator/ │ └── test_case.py ├── ThirdAI/ │ └── Terms and Conditions/ │ ├── Readme.md │ ├── ThirdAI.py │ └── TkinterUI.py ├── Tic-Tac-Toe Games/ │ ├── tic-tac-toe1.py │ ├── tic-tac-toe2.py │ ├── tic-tac-toe3.py │ ├── tic-tac-toe4.py │ ├── tic-tac-toe5.py │ └── tic-tac-toe6.py ├── Timetable_Operations.py ├── To find the largest number between 3 numbers.py ├── To print series 1,12,123,1234......py ├── Todo_GUi.py ├── Translator/ │ ├── README.md │ └── translator.py ├── Trending youtube videos ├── Trending youtube videos.py ├── Triplets with zero sum/ │ ├── Readme.md │ └── find_Triplets_with_zero_sum.py ├── Turn your PDFs into audio books/ │ ├── audiobook_gen.py │ └── requirements.txt ├── Turtle_Star.py ├── Tweet Pre-Processing.py ├── Type of angles of a triangle.py ├── Type_of_angles_of_triangle.py ├── UI-Apps/ │ ├── README.md │ └── clock.py ├── Unit Digit of a raised to power b.py ├── Untitled.ipynb ├── Voice Command Calculator.py ├── VoiceAssistant/ │ ├── DOCUMENTATION.md │ ├── GUIDE.md │ ├── PRE-REQUISITES.md │ ├── Project_Basic_struct/ │ │ ├── TextTospeech.py │ │ ├── VoiceAssistant_main.py │ │ ├── dictator.py │ │ ├── menu.py │ │ ├── speakListen.py │ │ ├── speechtotext.py │ │ ├── textRead.py │ │ └── websiteWork.py │ └── README.md ├── VoiceRepeater/ │ ├── __main__.py │ └── readme.md ├── Weather Scrapper/ │ ├── weather.csv │ └── weather.py ├── WeatherGUI.py ├── Web Socket.py ├── Web_Scraper.py ├── Webbrowser/ │ └── tk-browser.py ├── Wikipdedia/ │ ├── flask_rendering.py │ ├── main.py │ ├── practice_beautifulsoap.py │ ├── static/ │ │ └── js/ │ │ └── output.js │ └── template/ │ ├── index.html │ └── output.html ├── WikipediaModule.py ├── Windows_Wallpaper_Script/ │ ├── ReadMe.md │ └── wallpaper_extract.py ├── Word_Dictionary/ │ └── dictionary.py ├── Wordle/ │ ├── 5 letter word dictionary.txt │ ├── Dictionary.txt │ └── wordle.py ├── XML/ │ └── HTML parsing ├── XORcipher/ │ ├── README.md │ ├── XOR_cipher.py │ └── test_XOR_cipher.py ├── Youtube Downloader With GUI/ │ └── main.py ├── add_two_number.py ├── add_two_nums.py ├── advanced_calculator.py ├── agecalculator.py ├── alexa_news_headlines.py ├── area_of_square_app.py ├── armstrongnumber.py ├── async_downloader/ │ ├── async_downloader.py │ └── requirements.txt ├── automail.py ├── avg_xdspam_confidence.py ├── backup_automater_services.py ├── balance_parenthesis.py ├── bank_managment_system/ │ ├── QTFrontend.py │ ├── backend.py │ ├── frontend.py │ └── untitled.ui ├── basic_cal.py ├── batch_file_rename.py ├── billing.py ├── binary search.py ├── binarySTree isTrue_YashV1729.Java ├── binary_search_tree.py ├── binary_search_trees/ │ ├── delete_a_node_in_bst.py │ ├── inorder_successor.py │ ├── inorder_traversal.py │ ├── insert_in_bst.py │ ├── main.py │ ├── mirror_a_bst.py │ ├── print_in_range.py │ ├── root_to_leaf_paths.py │ ├── search_in_bst.py │ ├── tree_node.py │ └── validate_bst.py ├── binod.py ├── birthdays.py ├── blackJackGUI.py ├── blackjack.py ├── bodymass.py ├── bookstore_manangement_system.py ├── brickout-game/ │ ├── README.md │ └── brickout-game.py ├── calc_area.py ├── calci.py ├── calci2.py ├── calculator-gui.py ├── calculator.py ├── cartesian_product.py ├── changemac.py ├── chaos.py ├── check if a number positive , negative or zero ├── check whether the string is Symmetrical or Palindrome.py ├── check_file.py ├── check_for_sqlite_files.py ├── check_input.py ├── check_internet_con.py ├── check_prime.py ├── chicks_n_rabs.py ├── cicd ├── classicIndianCardMatch.py ├── cli_master/ │ ├── cli_master.py │ ├── database_import_countries.py │ └── validation_page.py ├── cloning_a_list.py ├── colorma_as_color.py ├── colour spiral.py ├── communication/ │ ├── file.py │ ├── pipe.py │ └── socket_conn.py ├── compass_code.py ├── consonant.py ├── convert celsius into fahrenheit.py ├── convert_time.py ├── convert_wind_direction_to_degrees.py ├── count the numbers of two vovels.py ├── create password validity in python.py ├── create_dir_if_not_there.py ├── cricket_live_score.py ├── cricket_news.py ├── currency converter/ │ ├── README.md │ ├── country.txt │ ├── gui.ui │ └── main.py ├── daily_checks.py ├── daily_horoscope.py ├── date-timeclient.py ├── date-timeserver.py ├── days_from_date.py ├── dec_to_hex.py ├── decimal to binary.py ├── depreciated_programs/ │ └── corona_cases.py ├── dialogs/ │ ├── README.md │ ├── messagebox.py │ └── requirements.txt ├── diamond.py ├── dice.py ├── diceV2_dynamic.py ├── dice_rolling_simulator.py ├── diction.py ├── digital_clock.py ├── dir_test.py ├── divisors_of_a_number.py ├── email id dictionary/ │ ├── README.md │ ├── dict1.py │ └── mbox-short.txt ├── encrypter-decrypter-gui.py ├── encrypter_decrypter_gui.py ├── encryptsys.py ├── env_check.py ├── environment.yml ├── equations.py ├── ex20.py ├── fF ├── facebook id hack.py ├── facebook-autologin-bot.py ├── factorial_perm_comp.py ├── factors.py ├── fastapi.py ├── fetch_news.py ├── fibonacci.py ├── fibonacci_SIMPLIFIED ├── fibonici series.py ├── file_ext_changer.py ├── file_handle/ │ ├── File handle binary/ │ │ ├── Update a binary file2.py │ │ ├── delete.py │ │ ├── question 1 (elegible for remedial, top marks).py │ │ ├── read.py │ │ ├── search record in binary file.py │ │ └── update2.py │ └── File handle text/ │ ├── counter.py │ ├── file handle 12 length of line in text file.py │ ├── happy.txt │ ├── input,output and error streams.py │ ├── question 2.py │ ├── question 5.py │ ├── question 6.py │ ├── question3.py │ ├── special symbol after word.py │ └── story.txt ├── fileinfo.py ├── find_cube_root.py ├── find_prime.py ├── finding LCM.py ├── findlargestno.md ├── flappyBird_pygame/ │ ├── README.md │ └── flappy_bird.py ├── floodfill/ │ └── floodfill.py ├── folder_size.py ├── four_digit_num_combination.py ├── framework/ │ └── quo.md ├── friday.py ├── ftp_send_receive.py ├── gambler.py ├── game_of_life/ │ ├── 05_mixed_sorting.py │ └── game_o_life.py ├── gcd.py ├── generate_permutations.py ├── get_crypto_price.py ├── get_info_remoute_srv.py ├── get_likes_on_FB.py ├── get_youtube_view.py ├── google.py ├── googlemaps.py ├── googleweb.py ├── greaterno.py ├── greattwono.py ├── gstin_scraper.py ├── gui_calculator.py ├── hamming-numbers.py ├── happy_num.py ├── heap_sort.py ├── helloworld.py ├── how to display the fibonacci sequence up to n-.py ├── image2pdf/ │ ├── image2pdf.py │ └── requirements.txt ├── image_compressor.py ├── index.html ├── index.py ├── inheritance_YahV1729.py ├── input matrice,product any order!.py ├── insertion_sort.py ├── insta_image_saving/ │ ├── driver/ │ │ └── file │ ├── instagram_image_scrapping.ipynb │ ├── instructions.txt │ ├── output/ │ │ └── file │ └── readme.txt ├── insta_monitering/ │ ├── con_file.py │ ├── insta_api.py │ ├── insta_datafetcher.py │ ├── ipList.txt │ └── subpinsta.py ├── internet_connection_py3.py ├── invisible_clock.py ├── iprint.py ├── is_number.py ├── jee_result.py ├── kilo_to_miles.py ├── kmp_str_search.py ├── large_files_reading.py ├── largestno.py ├── lcm.py ├── leap year.py ├── length.py ├── letter_frequency.py ├── levenshtein_distance.py ├── libs/ │ ├── haarcascade_eye.xml │ ├── haarcascade_eye_tree_eyeglasses.xml │ └── haarcascade_frontalface_default.xml ├── linear search.py ├── linear-algebra-python/ │ ├── README.md │ └── src/ │ ├── Transformations2D.py │ ├── lib.py │ └── tests.py ├── linear_search.py ├── live_sketch.py ├── loader.py ├── local_weighted_learning/ │ ├── local_weighted_learning.md │ └── local_weighted_learning.py ├── login.py ├── logs.py ├── longest_increasing_subsequence_length.py ├── loops.py ├── love_turtle.py ├── luhn_algorithm_for_credit_card_validation.py ├── magic8ball.py ├── magic_8_ball.py ├── mapit.py ├── mathfunctions.py ├── meme_maker.py ├── memorygame.py ├── merge.py ├── missing number from list.py ├── mobilePhoneSpecsScrapper.py ├── move_files_over_x_days.py ├── movie_details.py ├── multiple_comditions.py ├── multiplication_table.py ├── nDigitNumberCombinations.py ├── nasa_apod_with_requests/ │ ├── README.md │ ├── run.py │ └── settings.py ├── new.py ├── new_pattern.py ├── new_script.py ├── news_articles__scraper.py ├── news_oversimplifier.py ├── next_number.py ├── nitkarshchourasia/ │ └── to_sort/ │ ├── GUI_apps/ │ │ └── tkinter_apps/ │ │ ├── counter_app/ │ │ │ └── counter_app.py │ │ ├── hello_world_excla_increment_app/ │ │ │ └── hello_world_incre_decre_(!).py │ │ └── simple_calc_GUI/ │ │ └── simple_calculator_GUI.py │ ├── JARVIS_python_bot/ │ │ ├── JARVIS_2.0.py │ │ ├── README.md │ │ ├── check_internet_con.py │ │ ├── features_to_add.py │ │ └── requirements.txt │ ├── determine_sign.py │ ├── django_projects/ │ │ └── ToDo_webapp/ │ │ ├── db.sqlite3 │ │ ├── manage.py │ │ ├── todo/ │ │ │ ├── __init__.py │ │ │ ├── admin.py │ │ │ ├── apps.py │ │ │ ├── forms.py │ │ │ ├── migrations/ │ │ │ │ ├── 0001_initial.py │ │ │ │ └── __init__.py │ │ │ ├── models.py │ │ │ ├── templates/ │ │ │ │ └── todo/ │ │ │ │ └── index.html │ │ │ ├── tests.py │ │ │ └── views.py │ │ └── todo_site/ │ │ ├── __init__.py │ │ ├── asgi.py │ │ ├── settings.py │ │ ├── urls.py │ │ └── wsgi.py │ ├── one_rep_max_calculator/ │ │ ├── README.md │ │ ├── one_rep_max_calculator.py │ │ └── one_rep_max_calculator_gui.py │ ├── pdf_to_docx_converter/ │ │ ├── pdf_to_docx.py │ │ └── requirements.txt │ └── word2number/ │ └── word2number.py ├── nmap_scan.py ├── nodepad/ │ ├── README.md │ ├── notepad.py │ └── src/ │ └── notepad.tcl ├── notepad/ │ └── notepad_support.py ├── nslookup_check.py ├── number guessing.py ├── numberguessinggame/ │ └── index.py ├── numeric_password_cracker.py ├── oneeven.py ├── oryx-build-commands.txt ├── osinfo.py ├── other_pepole/ │ └── get_ip_gui ├── palindrome.py ├── pan.py ├── password guessing.py ├── passwordGen.py ├── passwordGenerator.py ├── password_checker.py ├── password_checker_code.py ├── password_cracker.py ├── password_manager.py ├── password_programs_multiple/ │ ├── animal_name_scraiper.py │ └── passwordGenerator.py ├── personal_translator.py ├── ph_email.py ├── photo_timestamp_renamer.py ├── ping_servers.py ├── ping_subnet.py ├── polygon.py ├── portscanner.py ├── positiveNegetive.py ├── power_of_n.py ├── power_of_two.py ├── powerdown_startup.py ├── powers of 2.py ├── powerup_checks.py ├── primelib/ │ ├── Prime.txt │ ├── README │ └── primelib.py ├── print hello world.py ├── printing_hello_world.py ├── prison_break_scrapper.py ├── pscheck.py ├── psunotify.py ├── puttylogs.py ├── pyhton_array.py ├── pythagoreanTriplets.py ├── python Space Invader game.py ├── pythonVideoDownloader.py ├── python_sms.py ├── python_webscraper.py ├── qrcode.py ├── qrdecoder.py ├── quiz_game.py ├── quote.py ├── random-sentences.py ├── random_file_move.py ├── random_password_gen.py ├── randomloadingmessage.py ├── rangoli.py ├── read_excel_file.py ├── reading_csv.py ├── rearrange-files/ │ └── rearrange-files.py ├── recursive-fibonacci.py ├── recursiveStrings.py ├── recyclebin.py ├── remoteok_jobs_scraper/ │ └── remoteok_jobs.py ├── remove a character from a file and rewrite.py ├── repeat.py ├── replacetext.py ├── repo_website/ │ ├── docs/ │ │ └── README_og.md │ └── mkdocs.yml ├── requirements.txt ├── requirements_with_versions.txt ├── reversed_pattern3.py ├── rock_paper_scissors.py ├── rook.py ├── rotate_string.py ├── rotatelist.py ├── russian_roulette.py ├── saving_input_into_list.py ├── scalg.py ├── scientific_cal.py ├── scrap_file.py ├── script_count.py ├── script_listing.py ├── send_message_automation/ │ ├── README.md │ ├── author_name_NC.txt │ └── message_automation.py ├── sendemail.py ├── sensors_information.py ├── serial_scanner.py ├── sha1.py ├── sierpinski_triangle.py ├── simpleInterest.py ├── simple_calcu.py ├── simple_calculator/ │ └── simple_calculator.py ├── simple_calculator.py ├── simulate_memory_cpu.py ├── singly_linked_list.py ├── size(resolution)image.py ├── slack_message.py ├── smart_file_organizer.py ├── snake.py ├── snake_case_renamer_depth_one.py ├── socket-programming/ │ ├── README.md │ ├── client.py │ ├── requirements.txt │ └── server.py ├── solution to euler project problem 10.py ├── sorting_algos.py ├── soundex_algorithm.py ├── spiralmatrix.py ├── spotifyAccount.py ├── sqlite_check.py ├── sqlite_table_check.py ├── square_root.py ├── stack.py ├── stackF_Harsh2255.py ├── stone_paper_scissor/ │ ├── main.py │ └── utils.py ├── string_palin.py ├── string_rotation.py ├── sudoku.py ├── sum_of_digits_of_a_number.py ├── swap.py ├── testlines.py ├── text-to-audio/ │ ├── README.md │ ├── hello.txt │ ├── main.py │ ├── requirements.txt │ └── text-file-to-audio.py ├── text_file_replace.py ├── text_to_audio/ │ ├── README.md │ ├── author_name_NC.txt │ ├── main.py │ ├── requirements.txt │ └── special_file.txt ├── text_to_pig_latin.py ├── tf_idf_generator.py ├── thired-party-haarcascade-mustache-on-face/ │ ├── Nose.xml │ ├── face.xml │ ├── mustache-add-on-face.py │ └── utils.py ├── thread_signal.py ├── tic-tac-toe.py ├── tik_tak.py ├── time_delta.py ├── to check leap year.py ├── totaldigits.py ├── translation_of_sizes_of_underwear_RU.py ├── triangles.py ├── tuple.py ├── turtal game.ipynb ├── turtle module ├── turtle_shapes_made.py ├── tweeter.py ├── twitter_post_scraper.py ├── two_num.py ├── ultimate-phone-book/ │ ├── contacts.py │ └── readme.md ├── url_shortner.py ├── venv/ │ ├── Lib/ │ │ └── site-packages/ │ │ ├── pip/ │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── __pip-runner__.py │ │ │ ├── _internal/ │ │ │ │ ├── __init__.py │ │ │ │ ├── build_env.py │ │ │ │ ├── cache.py │ │ │ │ ├── cli/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── autocompletion.py │ │ │ │ │ ├── base_command.py │ │ │ │ │ ├── cmdoptions.py │ │ │ │ │ ├── command_context.py │ │ │ │ │ ├── index_command.py │ │ │ │ │ ├── main.py │ │ │ │ │ ├── main_parser.py │ │ │ │ │ ├── parser.py │ │ │ │ │ ├── progress_bars.py │ │ │ │ │ ├── req_command.py │ │ │ │ │ ├── spinners.py │ │ │ │ │ └── status_codes.py │ │ │ │ ├── commands/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── cache.py │ │ │ │ │ ├── check.py │ │ │ │ │ ├── completion.py │ │ │ │ │ ├── configuration.py │ │ │ │ │ ├── debug.py │ │ │ │ │ ├── download.py │ │ │ │ │ ├── freeze.py │ │ │ │ │ ├── hash.py │ │ │ │ │ ├── help.py │ │ │ │ │ ├── index.py │ │ │ │ │ ├── inspect.py │ │ │ │ │ ├── install.py │ │ │ │ │ ├── list.py │ │ │ │ │ ├── search.py │ │ │ │ │ ├── show.py │ │ │ │ │ ├── uninstall.py │ │ │ │ │ └── wheel.py │ │ │ │ ├── configuration.py │ │ │ │ ├── distributions/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── base.py │ │ │ │ │ ├── installed.py │ │ │ │ │ ├── sdist.py │ │ │ │ │ └── wheel.py │ │ │ │ ├── exceptions.py │ │ │ │ ├── index/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── collector.py │ │ │ │ │ ├── package_finder.py │ │ │ │ │ └── sources.py │ │ │ │ ├── locations/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── _distutils.py │ │ │ │ │ ├── _sysconfig.py │ │ │ │ │ └── base.py │ │ │ │ ├── main.py │ │ │ │ ├── metadata/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── _json.py │ │ │ │ │ ├── base.py │ │ │ │ │ ├── importlib/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── _compat.py │ │ │ │ │ │ ├── _dists.py │ │ │ │ │ │ └── _envs.py │ │ │ │ │ └── pkg_resources.py │ │ │ │ ├── models/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── candidate.py │ │ │ │ │ ├── direct_url.py │ │ │ │ │ ├── format_control.py │ │ │ │ │ ├── index.py │ │ │ │ │ ├── installation_report.py │ │ │ │ │ ├── link.py │ │ │ │ │ ├── scheme.py │ │ │ │ │ ├── search_scope.py │ │ │ │ │ ├── selection_prefs.py │ │ │ │ │ ├── target_python.py │ │ │ │ │ └── wheel.py │ │ │ │ ├── network/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── auth.py │ │ │ │ │ ├── cache.py │ │ │ │ │ ├── download.py │ │ │ │ │ ├── lazy_wheel.py │ │ │ │ │ ├── session.py │ │ │ │ │ ├── utils.py │ │ │ │ │ └── xmlrpc.py │ │ │ │ ├── operations/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── build/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── build_tracker.py │ │ │ │ │ │ ├── metadata.py │ │ │ │ │ │ ├── metadata_editable.py │ │ │ │ │ │ ├── metadata_legacy.py │ │ │ │ │ │ ├── wheel.py │ │ │ │ │ │ ├── wheel_editable.py │ │ │ │ │ │ └── wheel_legacy.py │ │ │ │ │ ├── check.py │ │ │ │ │ ├── freeze.py │ │ │ │ │ ├── install/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── editable_legacy.py │ │ │ │ │ │ └── wheel.py │ │ │ │ │ └── prepare.py │ │ │ │ ├── pyproject.py │ │ │ │ ├── req/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── constructors.py │ │ │ │ │ ├── req_file.py │ │ │ │ │ ├── req_install.py │ │ │ │ │ ├── req_set.py │ │ │ │ │ └── req_uninstall.py │ │ │ │ ├── resolution/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── base.py │ │ │ │ │ ├── legacy/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── resolver.py │ │ │ │ │ └── resolvelib/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── base.py │ │ │ │ │ ├── candidates.py │ │ │ │ │ ├── factory.py │ │ │ │ │ ├── found_candidates.py │ │ │ │ │ ├── provider.py │ │ │ │ │ ├── reporter.py │ │ │ │ │ ├── requirements.py │ │ │ │ │ └── resolver.py │ │ │ │ ├── self_outdated_check.py │ │ │ │ ├── utils/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── _jaraco_text.py │ │ │ │ │ ├── _log.py │ │ │ │ │ ├── appdirs.py │ │ │ │ │ ├── compat.py │ │ │ │ │ ├── compatibility_tags.py │ │ │ │ │ ├── datetime.py │ │ │ │ │ ├── deprecation.py │ │ │ │ │ ├── direct_url_helpers.py │ │ │ │ │ ├── egg_link.py │ │ │ │ │ ├── encoding.py │ │ │ │ │ ├── entrypoints.py │ │ │ │ │ ├── filesystem.py │ │ │ │ │ ├── filetypes.py │ │ │ │ │ ├── glibc.py │ │ │ │ │ ├── hashes.py │ │ │ │ │ ├── logging.py │ │ │ │ │ ├── misc.py │ │ │ │ │ ├── packaging.py │ │ │ │ │ ├── retry.py │ │ │ │ │ ├── setuptools_build.py │ │ │ │ │ ├── subprocess.py │ │ │ │ │ ├── temp_dir.py │ │ │ │ │ ├── unpacking.py │ │ │ │ │ ├── urls.py │ │ │ │ │ ├── virtualenv.py │ │ │ │ │ └── wheel.py │ │ │ │ ├── vcs/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── bazaar.py │ │ │ │ │ ├── git.py │ │ │ │ │ ├── mercurial.py │ │ │ │ │ ├── subversion.py │ │ │ │ │ └── versioncontrol.py │ │ │ │ └── wheel_builder.py │ │ │ ├── _vendor/ │ │ │ │ ├── __init__.py │ │ │ │ ├── cachecontrol/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── _cmd.py │ │ │ │ │ ├── adapter.py │ │ │ │ │ ├── cache.py │ │ │ │ │ ├── caches/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── file_cache.py │ │ │ │ │ │ └── redis_cache.py │ │ │ │ │ ├── controller.py │ │ │ │ │ ├── filewrapper.py │ │ │ │ │ ├── heuristics.py │ │ │ │ │ ├── py.typed │ │ │ │ │ ├── serialize.py │ │ │ │ │ └── wrapper.py │ │ │ │ ├── certifi/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __main__.py │ │ │ │ │ ├── cacert.pem │ │ │ │ │ ├── core.py │ │ │ │ │ └── py.typed │ │ │ │ ├── distlib/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── compat.py │ │ │ │ │ ├── database.py │ │ │ │ │ ├── index.py │ │ │ │ │ ├── locators.py │ │ │ │ │ ├── manifest.py │ │ │ │ │ ├── markers.py │ │ │ │ │ ├── metadata.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── scripts.py │ │ │ │ │ ├── util.py │ │ │ │ │ ├── version.py │ │ │ │ │ └── wheel.py │ │ │ │ ├── distro/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __main__.py │ │ │ │ │ ├── distro.py │ │ │ │ │ └── py.typed │ │ │ │ ├── idna/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── codec.py │ │ │ │ │ ├── compat.py │ │ │ │ │ ├── core.py │ │ │ │ │ ├── idnadata.py │ │ │ │ │ ├── intranges.py │ │ │ │ │ ├── package_data.py │ │ │ │ │ ├── py.typed │ │ │ │ │ └── uts46data.py │ │ │ │ ├── msgpack/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── exceptions.py │ │ │ │ │ ├── ext.py │ │ │ │ │ └── fallback.py │ │ │ │ ├── packaging/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── _elffile.py │ │ │ │ │ ├── _manylinux.py │ │ │ │ │ ├── _musllinux.py │ │ │ │ │ ├── _parser.py │ │ │ │ │ ├── _structures.py │ │ │ │ │ ├── _tokenizer.py │ │ │ │ │ ├── markers.py │ │ │ │ │ ├── metadata.py │ │ │ │ │ ├── py.typed │ │ │ │ │ ├── requirements.py │ │ │ │ │ ├── specifiers.py │ │ │ │ │ ├── tags.py │ │ │ │ │ ├── utils.py │ │ │ │ │ └── version.py │ │ │ │ ├── pkg_resources/ │ │ │ │ │ └── __init__.py │ │ │ │ ├── platformdirs/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __main__.py │ │ │ │ │ ├── android.py │ │ │ │ │ ├── api.py │ │ │ │ │ ├── macos.py │ │ │ │ │ ├── py.typed │ │ │ │ │ ├── unix.py │ │ │ │ │ ├── version.py │ │ │ │ │ └── windows.py │ │ │ │ ├── pygments/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __main__.py │ │ │ │ │ ├── cmdline.py │ │ │ │ │ ├── console.py │ │ │ │ │ ├── filter.py │ │ │ │ │ ├── filters/ │ │ │ │ │ │ └── __init__.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── formatters/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── _mapping.py │ │ │ │ │ │ ├── bbcode.py │ │ │ │ │ │ ├── groff.py │ │ │ │ │ │ ├── html.py │ │ │ │ │ │ ├── img.py │ │ │ │ │ │ ├── irc.py │ │ │ │ │ │ ├── latex.py │ │ │ │ │ │ ├── other.py │ │ │ │ │ │ ├── pangomarkup.py │ │ │ │ │ │ ├── rtf.py │ │ │ │ │ │ ├── svg.py │ │ │ │ │ │ ├── terminal.py │ │ │ │ │ │ └── terminal256.py │ │ │ │ │ ├── lexer.py │ │ │ │ │ ├── lexers/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── _mapping.py │ │ │ │ │ │ └── python.py │ │ │ │ │ ├── modeline.py │ │ │ │ │ ├── plugin.py │ │ │ │ │ ├── regexopt.py │ │ │ │ │ ├── scanner.py │ │ │ │ │ ├── sphinxext.py │ │ │ │ │ ├── style.py │ │ │ │ │ ├── styles/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── _mapping.py │ │ │ │ │ ├── token.py │ │ │ │ │ ├── unistring.py │ │ │ │ │ └── util.py │ │ │ │ ├── pyproject_hooks/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── _compat.py │ │ │ │ │ ├── _impl.py │ │ │ │ │ └── _in_process/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── _in_process.py │ │ │ │ ├── requests/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __version__.py │ │ │ │ │ ├── _internal_utils.py │ │ │ │ │ ├── adapters.py │ │ │ │ │ ├── api.py │ │ │ │ │ ├── auth.py │ │ │ │ │ ├── certs.py │ │ │ │ │ ├── compat.py │ │ │ │ │ ├── cookies.py │ │ │ │ │ ├── exceptions.py │ │ │ │ │ ├── help.py │ │ │ │ │ ├── hooks.py │ │ │ │ │ ├── models.py │ │ │ │ │ ├── packages.py │ │ │ │ │ ├── sessions.py │ │ │ │ │ ├── status_codes.py │ │ │ │ │ ├── structures.py │ │ │ │ │ └── utils.py │ │ │ │ ├── resolvelib/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── compat/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── collections_abc.py │ │ │ │ │ ├── providers.py │ │ │ │ │ ├── py.typed │ │ │ │ │ ├── reporters.py │ │ │ │ │ ├── resolvers.py │ │ │ │ │ └── structs.py │ │ │ │ ├── rich/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __main__.py │ │ │ │ │ ├── _cell_widths.py │ │ │ │ │ ├── _emoji_codes.py │ │ │ │ │ ├── _emoji_replace.py │ │ │ │ │ ├── _export_format.py │ │ │ │ │ ├── _extension.py │ │ │ │ │ ├── _fileno.py │ │ │ │ │ ├── _inspect.py │ │ │ │ │ ├── _log_render.py │ │ │ │ │ ├── _loop.py │ │ │ │ │ ├── _null_file.py │ │ │ │ │ ├── _palettes.py │ │ │ │ │ ├── _pick.py │ │ │ │ │ ├── _ratio.py │ │ │ │ │ ├── _spinners.py │ │ │ │ │ ├── _stack.py │ │ │ │ │ ├── _timer.py │ │ │ │ │ ├── _win32_console.py │ │ │ │ │ ├── _windows.py │ │ │ │ │ ├── _windows_renderer.py │ │ │ │ │ ├── _wrap.py │ │ │ │ │ ├── abc.py │ │ │ │ │ ├── align.py │ │ │ │ │ ├── ansi.py │ │ │ │ │ ├── bar.py │ │ │ │ │ ├── box.py │ │ │ │ │ ├── cells.py │ │ │ │ │ ├── color.py │ │ │ │ │ ├── color_triplet.py │ │ │ │ │ ├── columns.py │ │ │ │ │ ├── console.py │ │ │ │ │ ├── constrain.py │ │ │ │ │ ├── containers.py │ │ │ │ │ ├── control.py │ │ │ │ │ ├── default_styles.py │ │ │ │ │ ├── diagnose.py │ │ │ │ │ ├── emoji.py │ │ │ │ │ ├── errors.py │ │ │ │ │ ├── file_proxy.py │ │ │ │ │ ├── filesize.py │ │ │ │ │ ├── highlighter.py │ │ │ │ │ ├── json.py │ │ │ │ │ ├── jupyter.py │ │ │ │ │ ├── layout.py │ │ │ │ │ ├── live.py │ │ │ │ │ ├── live_render.py │ │ │ │ │ ├── logging.py │ │ │ │ │ ├── markup.py │ │ │ │ │ ├── measure.py │ │ │ │ │ ├── padding.py │ │ │ │ │ ├── pager.py │ │ │ │ │ ├── palette.py │ │ │ │ │ ├── panel.py │ │ │ │ │ ├── pretty.py │ │ │ │ │ ├── progress.py │ │ │ │ │ ├── progress_bar.py │ │ │ │ │ ├── prompt.py │ │ │ │ │ ├── protocol.py │ │ │ │ │ ├── py.typed │ │ │ │ │ ├── region.py │ │ │ │ │ ├── repr.py │ │ │ │ │ ├── rule.py │ │ │ │ │ ├── scope.py │ │ │ │ │ ├── screen.py │ │ │ │ │ ├── segment.py │ │ │ │ │ ├── spinner.py │ │ │ │ │ ├── status.py │ │ │ │ │ ├── style.py │ │ │ │ │ ├── styled.py │ │ │ │ │ ├── syntax.py │ │ │ │ │ ├── table.py │ │ │ │ │ ├── terminal_theme.py │ │ │ │ │ ├── text.py │ │ │ │ │ ├── theme.py │ │ │ │ │ ├── themes.py │ │ │ │ │ ├── traceback.py │ │ │ │ │ └── tree.py │ │ │ │ ├── tomli/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── _parser.py │ │ │ │ │ ├── _re.py │ │ │ │ │ ├── _types.py │ │ │ │ │ └── py.typed │ │ │ │ ├── truststore/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── _api.py │ │ │ │ │ ├── _macos.py │ │ │ │ │ ├── _openssl.py │ │ │ │ │ ├── _ssl_constants.py │ │ │ │ │ ├── _windows.py │ │ │ │ │ └── py.typed │ │ │ │ ├── typing_extensions.py │ │ │ │ ├── urllib3/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── _collections.py │ │ │ │ │ ├── _version.py │ │ │ │ │ ├── connection.py │ │ │ │ │ ├── connectionpool.py │ │ │ │ │ ├── contrib/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── _appengine_environ.py │ │ │ │ │ │ ├── _securetransport/ │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── bindings.py │ │ │ │ │ │ │ └── low_level.py │ │ │ │ │ │ ├── appengine.py │ │ │ │ │ │ ├── ntlmpool.py │ │ │ │ │ │ ├── pyopenssl.py │ │ │ │ │ │ ├── securetransport.py │ │ │ │ │ │ └── socks.py │ │ │ │ │ ├── exceptions.py │ │ │ │ │ ├── fields.py │ │ │ │ │ ├── filepost.py │ │ │ │ │ ├── packages/ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── backports/ │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── makefile.py │ │ │ │ │ │ │ └── weakref_finalize.py │ │ │ │ │ │ └── six.py │ │ │ │ │ ├── poolmanager.py │ │ │ │ │ ├── request.py │ │ │ │ │ ├── response.py │ │ │ │ │ └── util/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── connection.py │ │ │ │ │ ├── proxy.py │ │ │ │ │ ├── queue.py │ │ │ │ │ ├── request.py │ │ │ │ │ ├── response.py │ │ │ │ │ ├── retry.py │ │ │ │ │ ├── ssl_.py │ │ │ │ │ ├── ssl_match_hostname.py │ │ │ │ │ ├── ssltransport.py │ │ │ │ │ ├── timeout.py │ │ │ │ │ ├── url.py │ │ │ │ │ └── wait.py │ │ │ │ └── vendor.txt │ │ │ └── py.typed │ │ └── pip-24.2.dist-info/ │ │ ├── AUTHORS.txt │ │ ├── INSTALLER │ │ ├── LICENSE.txt │ │ ├── METADATA │ │ ├── RECORD │ │ ├── REQUESTED │ │ ├── WHEEL │ │ ├── entry_points.txt │ │ └── top_level.txt │ ├── Scripts/ │ │ ├── Activate.ps1 │ │ ├── activate │ │ ├── activate.bat │ │ └── deactivate.bat │ └── pyvenv.cfg ├── very_easy/ │ └── is_number.py ├── video-operations/ │ ├── slow-motion.py │ └── timelapse.py ├── videodownloder.py ├── vigenere_cipher.py ├── voice.py ├── vowel remover function.py ├── webcam.py ├── whatsapp-monitor.py ├── whatsapp-schedule.py ├── wifi hack by brutefore.py ├── wiki/ │ ├── requirements.txt │ └── wiki.py ├── wiki_random.py ├── wikipedia.py ├── work_connect.py ├── write_excel_file.py └── youtubedownloader.py