├── .gitattributes ├── .github ├── ISSUE_TEMPLATE.md ├── PULL_REQUEST_TEMPLATE.md └── workflows │ ├── blank.yml │ └── python-app.yml ├── CODE_OF_CONDUCT.md ├── LICENSE ├── Notebooks ├── Customer_loan_repayment_problem │ ├── datasets_137197_325031_test_Y3wMUE5_7gLdaTN.csv │ └── loan-prediction-problem.ipynb └── README.md ├── README.md ├── README_TEMPLATE.md ├── docs ├── .nojekyll ├── README.md ├── _config.yml ├── assets │ └── css │ │ └── main.css └── index.html ├── projects ├── .DS_Store ├── Alarm clock │ └── alarm_clock.py ├── All_links_from_given_webpage │ ├── README.md │ ├── get_links.py │ └── requirements.txt ├── Ascii_art │ ├── README.md │ ├── make_art.py │ ├── requirements.txt │ ├── sample_image.png │ └── sample_output.png ├── AudioBook │ ├── Audio-book.py │ └── README.md ├── Baidu_POI_crawl │ ├── README.md │ ├── __pycache__ │ │ ├── util.cpython-37.pyc │ │ └── util.cpython-38.pyc │ ├── main.py │ ├── output │ │ ├── 2021-11-17.log │ │ └── 2021-11-17.txt │ ├── requirements.txt │ └── util.py ├── Battery_notification │ ├── README.md │ ├── battery.py │ └── requirements.txt ├── Billing_system │ ├── Bill.PNG │ ├── README.md │ └── biling_system.py ├── Bouncing_ball_simulator │ ├── README.md │ ├── background-img.jpg │ ├── ball.png │ ├── ball_bounce.py │ └── requirements.txt ├── Calculate_age │ ├── README.md │ └── calculate.py ├── Captcha_Genrator │ ├── Captcha_Genrator.py │ ├── README.md │ ├── fonts │ │ ├── ChelseaMarketsr.ttf │ │ └── DejaVuSanssr.ttf │ └── requirements.txt ├── Capture_Video_Frames │ ├── Enhanced_Capture_Video_Frames_Test │ ├── README.md │ ├── capture_video_frames.py │ └── requirements.txt ├── Check_website_connectivity │ ├── README.md │ ├── check_connectivity.py │ ├── requirements.txt │ ├── website_status.csv │ └── websites.txt ├── Cli_todo │ ├── README.md │ ├── requirements.txt │ ├── todo.py │ └── todo.txt ├── Compute_IoU │ ├── Compute_IoU.py │ └── README.md ├── Convert_JPEG_to_PNG │ ├── README.md │ ├── converter_GUI.py │ ├── converter_terminal.py │ ├── input.jpeg │ └── output.png ├── Convert_JSON_to_CSV │ ├── README.md │ ├── converter.py │ ├── input.json │ └── output.csv ├── Convert_XML_To_JSON │ ├── README.md │ ├── converter.py │ ├── input.xml │ ├── output.json │ └── requirements.txt ├── Convert_a_image_to_pdf │ ├── README.md │ ├── convert_image_to_pdf.py │ └── requirements.txt ├── Convert_numbers_to_word │ ├── README.md │ ├── Screenshot.png │ └── converter.py ├── Countdown_timer │ ├── README.md │ ├── example.png │ └── main.py ├── Create_a_script_to_encrypt_files_and_folder │ ├── README.md │ ├── encrypt.py │ └── requirements.txt ├── Create_a_simple_stopwatch │ ├── README.md │ └── stopwatch.py ├── Create_calculator_app │ ├── README.md │ ├── calculator.py │ └── output.png ├── Currency_converter │ ├── Enhanced_Currency_converter │ ├── README.md │ ├── cc.py │ └── output.png ├── Decimal_to_binary_convertor_and_vice_versa │ ├── README.md │ ├── decimal_to_binary.py │ └── output.png ├── Diff_Util │ ├── README.md │ ├── diff.py │ ├── diff_util.jpg │ └── requirements.txt ├── Digital_clock │ ├── Digital Clock.PNG │ ├── README.md │ └── digital_clock.py ├── Dns_record │ ├── README.md │ ├── dns_record.py │ └── requirements.txt ├── Dominant_color │ ├── README.md │ ├── find-color.py │ ├── requirements.txt │ └── shot.png ├── Download_images_from_website │ ├── Readme.md │ ├── requirements.txt │ └── scrap-img.py ├── Drowsiness detection │ ├── alarm.wav │ ├── drowsiness detection.py │ ├── haar cascade files │ │ ├── haarcascade_frontalface_alt.xml │ │ ├── haarcascade_lefteye_2splits.xml │ │ └── haarcascade_righteye_2splits.xml │ └── model.py ├── Duplicate files remover │ ├── README.md │ ├── Screenshot.png │ └── duplicatefileremover.py ├── EasyVideoPlayer │ ├── EasyVideoPlayer.py │ ├── README.md │ └── requirements.txt ├── Easy_cartoonify │ ├── README.md │ └── easy_cartoonify.py ├── Encrypt_and_decrypt_text │ ├── README.md │ ├── aes_encode.py │ ├── output.png │ └── requirements.txt ├── Extract_zip_files │ ├── README.md │ └── extract_zip_files.py ├── Fetch HTTP status code │ ├── README.md │ ├── fetch_http_status_code.py │ └── requirements.txt ├── Fetch_and_store_tweets │ ├── README.md │ ├── fetch_store_tweet.py │ ├── img │ │ ├── output-2.PNG │ │ ├── output-2.png │ │ ├── output.PNG │ │ ├── output.png │ │ ├── step-1.PNG │ │ ├── step-1.png │ │ ├── step-2.PNG │ │ ├── step-2.png │ │ ├── step-3.PNG │ │ ├── step-3.png │ │ ├── step-4.PNG │ │ ├── step-4.png │ │ ├── step-5.PNG │ │ ├── step-5.png │ │ ├── step-6.PNG │ │ ├── step-6.png │ │ ├── step-7.png │ │ └── step-9.png │ └── requirements.txt ├── Fetch_current_weather │ ├── README.md │ └── fetch_current_weather.py ├── Fetch_open_ports │ ├── README.md │ ├── Screenshot.png │ └── fetch_open_port.py ├── Find_imdb_rating │ ├── .gitignore │ ├── README.md │ ├── find_IMDb_rating.py │ └── requirements.txt ├── Find_out_hostname_and_ip_address │ ├── Hostname_IPaddress.py │ ├── README.md │ └── Screenshot.png ├── GUI Rock-Paper-Scissors Game │ └── Rock-Paper-Scissors Game.py ├── Games │ └── QuizGame.py ├── Geocoding │ ├── README.md │ ├── geocoding.py │ └── requirements.txt ├── Get_meta_information_of_images │ ├── README.md │ ├── author_utils.py │ ├── get_meta_from_pic.py │ ├── gps_utils.py │ └── requirements.txt ├── Get_wifi_password │ ├── README.md │ └── wifi.py ├── Hashing_passwords │ ├── README.md │ └── hashing_passwords.py ├── Hello │ ├── Hello.py │ └── README.md ├── Image_watermark │ ├── README.md │ ├── requirements.txt │ └── watermark.py ├── Instagram_profile │ ├── InstgramProfile.py │ ├── Readme.md │ ├── main.py │ ├── output.png │ ├── profilepic.py │ └── requirements.txt ├── Internet_connection_check │ ├── README.md │ ├── internet_connection_check.py │ └── output.png ├── Language_translator │ ├── README.md │ ├── Shot.png │ ├── requirements.txt │ └── translator.py ├── Leap_Year_Checker │ ├── README.md │ └── leapyear.py ├── MasterMind │ ├── Mastermind_GUIinterface.py │ └── README.md ├── Merge_csv_files │ ├── README.md │ ├── merge_csv_files.py │ └── requirements.txt ├── Merge_pdfs │ ├── README.md │ ├── merge_pdfs.py │ ├── mergedPdf.pdf │ ├── mergedPdf1.pdf │ ├── requirements.txt │ ├── samplePdf1.pdf │ └── samplePdf2.pdf ├── Movie Information Scraper │ ├── README.md │ ├── Screenshot.png │ ├── movieInfoScraper.py │ └── requirements.txt ├── Multi_language_OCR │ ├── README.MD │ ├── multi_language_OCR.py │ └── requirements.txt ├── Network Usage Tracker │ ├── Images │ │ ├── 1.jpg │ │ ├── 2.jpg │ │ ├── 3.jpg │ │ ├── 4.jpg │ │ ├── 5.jpg │ │ ├── 6.jpg │ │ ├── 7.jpg │ │ ├── 8.jpg │ │ └── front.png │ ├── README.md │ ├── network_usage_tracker.py │ └── requirements.txt ├── News_website_scraper │ ├── README.md │ ├── images │ │ ├── README.md │ │ ├── home.JPG │ │ ├── nextpage.JPG │ │ └── result.JPG │ └── moneycontrol_scrapper.py ├── Number_guessing_game │ ├── README.md │ ├── image.png │ └── main.py ├── Organized_download_folder_with_different_categories │ ├── README.md │ └── file-sortor.py ├── PDF to MP3 │ ├── PDF__TO__MP3.py │ └── requirements.txt ├── Password_generator │ ├── .DS_Store │ ├── README.md │ ├── logo.ico │ ├── logo.png │ └── password_generator.py ├── Plagarism_checker │ ├── README.md │ ├── plag.py │ ├── text1.txt │ ├── text2.txt │ └── text3.txt ├── Py_carbon_clips │ └── Readme.md ├── Python_auto_draw │ ├── README.md │ ├── pyautoguidemo.gif │ └── python-auto-draw.py ├── Qr_code_generator │ ├── README.md │ ├── generate_qrcode.py │ └── url_qrcode.png ├── Random_Wikipedia_Article │ ├── README.md │ ├── requirements.txt │ └── wiki_random.py ├── Random_password_generator │ ├── README.md │ ├── python-password-generator.py │ └── random_password_gen.py ├── Random_word_from_list │ ├── README.md │ ├── Random_word_from_list.py │ └── file.txt ├── Recursive_password_generator │ ├── README.md │ ├── Screenshot.png │ └── generator.py ├── Reduce_image_file_size │ ├── README.md │ ├── input.jpg │ ├── reduce_image_size.py │ └── resized_output_image.jpg ├── RockPaperScissors_Game │ ├── README.md │ └── Rock_Paper_Scissors_Game.py ├── S3_File_Upload │ ├── README.md │ ├── main.py │ └── requirements.txt ├── Scrape_Hacker_News │ ├── README.md │ └── main.py ├── Scrape_quotes │ ├── README.md │ ├── Screenshot.png │ ├── quote_scraper.py │ └── requirements.txt ├── Scraping Medium Articles │ ├── README.md │ ├── requirements.txt │ ├── scraped_articles │ │ ├── One_month_into_the_MLH_Fellowship.txt │ │ ├── One_stop_guide_to_Google_Summer_of_Code.txt │ │ └── The_Pros_and_Cons_of_Open_Source_Software.txt │ └── scraping_medium.py ├── Send_email_from_csv │ ├── Readme.md │ ├── Sending_mail.py │ ├── credentials.txt │ └── emails.csv ├── Set_Alarm │ ├── README.md │ ├── alarm.py │ └── musics │ │ ├── Carnival.ogg │ │ ├── Crusade.ogg │ │ ├── Renaissance.ogg │ │ ├── Variations.ogg │ │ ├── dreamy_nights.ogg │ │ ├── lakhau_hajarau.mp3 │ │ ├── morning_calm.ogg │ │ ├── mozart_wakes.ogg │ │ ├── new_horizon.ogg │ │ └── the_four_seasons.ogg ├── Shutdown_or_restart_your_device │ ├── PowerOptions.py │ └── README.md ├── Sine_Wave │ ├── README.md │ ├── equation.PNG │ ├── screenshot.PNG │ └── sine_wave.py ├── Snake Game │ └── snake_game.py ├── Snapshot_of_given_website │ ├── README.md │ ├── requirements.txt │ └── snapshot_of_given_website.py ├── Solver_linear_equations │ ├── README.md │ ├── linearEquations.py │ ├── screenshot1.jpeg │ └── screenshot2.png ├── Space_bullet_shooter_game │ ├── bg.wav │ ├── bullet.png │ ├── bulletout.wav │ ├── bulletshoot.wav │ ├── ens.png │ ├── icond.png │ ├── img2.png │ ├── pl4.png │ ├── readme.md │ ├── sample.mp3 │ ├── space_bullet_shooter.py │ └── spacegame.png ├── Speaking_Dictionary │ ├── README.md │ ├── SpeakingDictionary.py │ └── requirements.txt ├── Speech_to_text │ ├── README.md │ ├── requirements.txt │ └── speech_to_text.py ├── Speed_Game │ ├── LICENSE │ ├── README.md │ ├── macOS │ │ ├── .DS_Store │ │ ├── CountryCodeData.xlsx │ │ ├── SpeedGameBgm.mp3 │ │ ├── correct.png │ │ ├── halloween.png │ │ ├── images │ │ │ ├── .DS_Store │ │ │ ├── ad.png │ │ │ ├── ae.png │ │ │ ├── af.png │ │ │ ├── ag.png │ │ │ ├── ai.png │ │ │ ├── al.png │ │ │ ├── am.png │ │ │ ├── ao.png │ │ │ ├── aq.png │ │ │ ├── ar.png │ │ │ ├── as.png │ │ │ ├── at.png │ │ │ ├── au.png │ │ │ ├── aw.png │ │ │ ├── ax.png │ │ │ ├── az.png │ │ │ ├── ba.png │ │ │ ├── bb.png │ │ │ ├── bd.png │ │ │ ├── be.png │ │ │ ├── bf.png │ │ │ ├── bg.png │ │ │ ├── bh.png │ │ │ ├── bi.png │ │ │ ├── bj.png │ │ │ ├── bl.png │ │ │ ├── bm.png │ │ │ ├── bn.png │ │ │ ├── bo.png │ │ │ ├── bq.png │ │ │ ├── br.png │ │ │ ├── bs.png │ │ │ ├── bt.png │ │ │ ├── bv.png │ │ │ ├── bw.png │ │ │ ├── by.png │ │ │ ├── bz.png │ │ │ ├── ca.png │ │ │ ├── cc.png │ │ │ ├── cd.png │ │ │ ├── cf.png │ │ │ ├── cg.png │ │ │ ├── ch.png │ │ │ ├── ci.png │ │ │ ├── ck.png │ │ │ ├── cl.png │ │ │ ├── cm.png │ │ │ ├── cn.png │ │ │ ├── co.png │ │ │ ├── cr.png │ │ │ ├── cu.png │ │ │ ├── cv.png │ │ │ ├── cw.png │ │ │ ├── cx.png │ │ │ ├── cy.png │ │ │ ├── cz.png │ │ │ ├── de.png │ │ │ ├── dj.png │ │ │ ├── dk.png │ │ │ ├── dm.png │ │ │ ├── do.png │ │ │ ├── dz.png │ │ │ ├── ec.png │ │ │ ├── ee.png │ │ │ ├── eg.png │ │ │ ├── eh.png │ │ │ ├── er.png │ │ │ ├── es.png │ │ │ ├── et.png │ │ │ ├── fi.png │ │ │ ├── fj.png │ │ │ ├── fk.png │ │ │ ├── fm.png │ │ │ ├── fo.png │ │ │ ├── fr.png │ │ │ ├── ga.png │ │ │ ├── gb-eng.png │ │ │ ├── gb-nir.png │ │ │ ├── gb-sct.png │ │ │ ├── gb-wls.png │ │ │ ├── gb.png │ │ │ ├── gd.png │ │ │ ├── ge.png │ │ │ ├── gf.png │ │ │ ├── gg.png │ │ │ ├── gh.png │ │ │ ├── gi.png │ │ │ ├── gl.png │ │ │ ├── gm.png │ │ │ ├── gn.png │ │ │ ├── gp.png │ │ │ ├── gq.png │ │ │ ├── gr.png │ │ │ ├── gs 2.png │ │ │ ├── gs.png │ │ │ ├── gt 2.png │ │ │ ├── gt.png │ │ │ ├── gu 2.png │ │ │ ├── gu.png │ │ │ ├── gw 2.png │ │ │ ├── gw.png │ │ │ ├── gy 2.png │ │ │ ├── gy.png │ │ │ ├── hk 2.png │ │ │ ├── hk.png │ │ │ ├── hm 2.png │ │ │ ├── hm.png │ │ │ ├── hn 2.png │ │ │ ├── hn.png │ │ │ ├── hr 2.png │ │ │ ├── hr.png │ │ │ ├── ht 2.png │ │ │ ├── ht.png │ │ │ ├── hu 2.png │ │ │ ├── hu.png │ │ │ ├── id 2.png │ │ │ ├── id.png │ │ │ ├── ie 2.png │ │ │ ├── ie.png │ │ │ ├── il 2.png │ │ │ ├── il.png │ │ │ ├── im 2.png │ │ │ ├── im.png │ │ │ ├── in 2.png │ │ │ ├── in.png │ │ │ ├── io 2.png │ │ │ ├── io.png │ │ │ ├── iq 2.png │ │ │ ├── iq.png │ │ │ ├── ir 2.png │ │ │ ├── ir.png │ │ │ ├── is 2.png │ │ │ ├── is.png │ │ │ ├── it 2.png │ │ │ ├── it.png │ │ │ ├── je 2.png │ │ │ ├── je.png │ │ │ ├── jm 2.png │ │ │ ├── jm.png │ │ │ ├── jo 2.png │ │ │ ├── jo.png │ │ │ ├── jp 2.png │ │ │ ├── jp.png │ │ │ ├── ke.png │ │ │ ├── kg 2.png │ │ │ ├── kg.png │ │ │ ├── kh 2.png │ │ │ ├── kh.png │ │ │ ├── ki 2.png │ │ │ ├── ki.png │ │ │ ├── km 2.png │ │ │ ├── km.png │ │ │ ├── kn 2.png │ │ │ ├── kn.png │ │ │ ├── kp 2.png │ │ │ ├── kp.png │ │ │ ├── kr 2.png │ │ │ ├── kr.png │ │ │ ├── kw 2.png │ │ │ ├── kw.png │ │ │ ├── ky 2.png │ │ │ ├── ky.png │ │ │ ├── kz 2.png │ │ │ ├── kz.png │ │ │ ├── la 2.png │ │ │ ├── la.png │ │ │ ├── lb 2.png │ │ │ ├── lb.png │ │ │ ├── lc 2.png │ │ │ ├── lc.png │ │ │ ├── li 2.png │ │ │ ├── li.png │ │ │ ├── lk 2.png │ │ │ ├── lk.png │ │ │ ├── lr 2.png │ │ │ ├── lr.png │ │ │ ├── ls 2.png │ │ │ ├── ls.png │ │ │ ├── lt 2.png │ │ │ ├── lt.png │ │ │ ├── lu 2.png │ │ │ ├── lu.png │ │ │ ├── lv 2.png │ │ │ ├── lv.png │ │ │ ├── ly 2.png │ │ │ ├── ly.png │ │ │ ├── ma 2.png │ │ │ ├── ma.png │ │ │ ├── mc 2.png │ │ │ ├── mc.png │ │ │ ├── md.png │ │ │ ├── me 2.png │ │ │ ├── me.png │ │ │ ├── mf 2.png │ │ │ ├── mf.png │ │ │ ├── mg 2.png │ │ │ ├── mg.png │ │ │ ├── mh 2.png │ │ │ ├── mh.png │ │ │ ├── mk 2.png │ │ │ ├── mk.png │ │ │ ├── ml 2.png │ │ │ ├── ml.png │ │ │ ├── mm 2.png │ │ │ ├── mm.png │ │ │ ├── mn 2.png │ │ │ ├── mn.png │ │ │ ├── mo 2.png │ │ │ ├── mo.png │ │ │ ├── mp 2.png │ │ │ ├── mp.png │ │ │ ├── mq 2.png │ │ │ ├── mq.png │ │ │ ├── mr 2.png │ │ │ ├── mr.png │ │ │ ├── ms 2.png │ │ │ ├── ms.png │ │ │ ├── mt 2.png │ │ │ ├── mt.png │ │ │ ├── mu 2.png │ │ │ ├── mu.png │ │ │ ├── mv 2.png │ │ │ ├── mv.png │ │ │ ├── mw 2.png │ │ │ ├── mw.png │ │ │ ├── mx 2.png │ │ │ ├── mx.png │ │ │ ├── my 2.png │ │ │ ├── my.png │ │ │ ├── mz 2.png │ │ │ ├── mz.png │ │ │ ├── na 2.png │ │ │ ├── na.png │ │ │ ├── nc 2.png │ │ │ ├── nc.png │ │ │ ├── ne 2.png │ │ │ ├── ne.png │ │ │ ├── nf 2.png │ │ │ ├── nf.png │ │ │ ├── ng 2.png │ │ │ ├── ng.png │ │ │ ├── ni 2.png │ │ │ ├── ni.png │ │ │ ├── nl 2.png │ │ │ ├── nl.png │ │ │ ├── no 2.png │ │ │ ├── no.png │ │ │ ├── np 2.png │ │ │ ├── np.png │ │ │ ├── nr 2.png │ │ │ ├── nr.png │ │ │ ├── nu 2.png │ │ │ ├── nu.png │ │ │ ├── nz 2.png │ │ │ ├── nz.png │ │ │ ├── om 2.png │ │ │ ├── om.png │ │ │ ├── pa 2.png │ │ │ ├── pa.png │ │ │ ├── pe 2.png │ │ │ ├── pe.png │ │ │ ├── pf 2.png │ │ │ ├── pf.png │ │ │ ├── pg 2.png │ │ │ ├── pg.png │ │ │ ├── ph 2.png │ │ │ ├── ph.png │ │ │ ├── pk 2.png │ │ │ ├── pk.png │ │ │ ├── pl 2.png │ │ │ ├── pl.png │ │ │ ├── pm 2.png │ │ │ ├── pm.png │ │ │ ├── pn 2.png │ │ │ ├── pn.png │ │ │ ├── pr 2.png │ │ │ ├── pr.png │ │ │ ├── ps 2.png │ │ │ ├── ps.png │ │ │ ├── pt 2.png │ │ │ ├── pt.png │ │ │ ├── pw 2.png │ │ │ ├── pw.png │ │ │ ├── py 2.png │ │ │ ├── py.png │ │ │ ├── qa 2.png │ │ │ ├── qa.png │ │ │ ├── re 2.png │ │ │ ├── re.png │ │ │ ├── ro 2.png │ │ │ ├── ro.png │ │ │ ├── rs 2.png │ │ │ ├── rs.png │ │ │ ├── ru 2.png │ │ │ ├── ru.png │ │ │ ├── rw 2.png │ │ │ ├── rw.png │ │ │ ├── sa 2.png │ │ │ ├── sa.png │ │ │ ├── sb 2.png │ │ │ ├── sb.png │ │ │ ├── sc 2.png │ │ │ ├── sc.png │ │ │ ├── sd 2.png │ │ │ ├── sd.png │ │ │ ├── se 2.png │ │ │ ├── se.png │ │ │ ├── sg 2.png │ │ │ ├── sg.png │ │ │ ├── sh 2.png │ │ │ ├── sh.png │ │ │ ├── si 2.png │ │ │ ├── si.png │ │ │ ├── sj 2.png │ │ │ ├── sj.png │ │ │ ├── sk 2.png │ │ │ ├── sk.png │ │ │ ├── sl 2.png │ │ │ ├── sl.png │ │ │ ├── sm 2.png │ │ │ ├── sm.png │ │ │ ├── sn 2.png │ │ │ ├── sn.png │ │ │ ├── so 2.png │ │ │ ├── so.png │ │ │ ├── sr 2.png │ │ │ ├── sr.png │ │ │ ├── ss 2.png │ │ │ ├── ss.png │ │ │ ├── st 2.png │ │ │ ├── st.png │ │ │ ├── sv 2.png │ │ │ ├── sv.png │ │ │ ├── sx 2.png │ │ │ ├── sx.png │ │ │ ├── sy 2.png │ │ │ ├── sy.png │ │ │ ├── sz 2.png │ │ │ ├── sz.png │ │ │ ├── tc 2.png │ │ │ ├── tc.png │ │ │ ├── td 2.png │ │ │ ├── td.png │ │ │ ├── tf 2.png │ │ │ ├── tf.png │ │ │ ├── tg 2.png │ │ │ ├── tg.png │ │ │ ├── th 2.png │ │ │ ├── th.png │ │ │ ├── tj 2.png │ │ │ ├── tj.png │ │ │ ├── tk 2.png │ │ │ ├── tk.png │ │ │ ├── tl 2.png │ │ │ ├── tl.png │ │ │ ├── tm 2.png │ │ │ ├── tm.png │ │ │ ├── tn 2.png │ │ │ ├── tn.png │ │ │ ├── to 2.png │ │ │ ├── to.png │ │ │ ├── tr 2.png │ │ │ ├── tr.png │ │ │ ├── tt 2.png │ │ │ ├── tt.png │ │ │ ├── tv 2.png │ │ │ ├── tv.png │ │ │ ├── tw 2.png │ │ │ ├── tw.png │ │ │ ├── tz 2.png │ │ │ ├── tz.png │ │ │ ├── ua 2.png │ │ │ ├── ua.png │ │ │ ├── ug 2.png │ │ │ ├── ug.png │ │ │ ├── um 2.png │ │ │ ├── um.png │ │ │ ├── us 2.png │ │ │ ├── us.png │ │ │ ├── uy 2.png │ │ │ ├── uy.png │ │ │ ├── uz 2.png │ │ │ ├── uz.png │ │ │ ├── va 2.png │ │ │ ├── va.png │ │ │ ├── vc 2.png │ │ │ ├── vc.png │ │ │ ├── ve 2.png │ │ │ ├── ve.png │ │ │ ├── vg 2.png │ │ │ ├── vg.png │ │ │ ├── vi 2.png │ │ │ ├── vi.png │ │ │ ├── vn 2.png │ │ │ ├── vn.png │ │ │ ├── vu 2.png │ │ │ ├── vu.png │ │ │ ├── wf 2.png │ │ │ ├── wf.png │ │ │ ├── ws 2.png │ │ │ ├── ws.png │ │ │ ├── xk 2.png │ │ │ ├── xk.png │ │ │ ├── ye 2.png │ │ │ ├── ye.png │ │ │ ├── yt 2.png │ │ │ ├── yt.png │ │ │ ├── za 2.png │ │ │ ├── za.png │ │ │ ├── zm 2.png │ │ │ ├── zm.png │ │ │ ├── zw 2.png │ │ │ └── zw.png │ │ ├── main.py │ │ └── wrong.png │ ├── requirements.txt │ └── windows │ │ ├── .DS_Store │ │ ├── CountryCodeData.xlsx │ │ ├── SpeedGameBgm.mp3 │ │ ├── correct.png │ │ ├── halloween.png │ │ ├── images │ │ ├── .DS_Store │ │ ├── ad 2.png │ │ ├── ad.png │ │ ├── ae 2.png │ │ ├── ae.png │ │ ├── af 2.png │ │ ├── af.png │ │ ├── ag 2.png │ │ ├── ag.png │ │ ├── ai 2.png │ │ ├── ai.png │ │ ├── al 2.png │ │ ├── al.png │ │ ├── am 2.png │ │ ├── am.png │ │ ├── ao 2.png │ │ ├── ao.png │ │ ├── aq 2.png │ │ ├── aq.png │ │ ├── ar 2.png │ │ ├── ar.png │ │ ├── as 2.png │ │ ├── as.png │ │ ├── at 2.png │ │ ├── at.png │ │ ├── au 2.png │ │ ├── au.png │ │ ├── aw 2.png │ │ ├── aw.png │ │ ├── ax 2.png │ │ ├── ax.png │ │ ├── az 2.png │ │ ├── az.png │ │ ├── ba 2.png │ │ ├── ba.png │ │ ├── bb 2.png │ │ ├── bb.png │ │ ├── bd 2.png │ │ ├── bd.png │ │ ├── be 2.png │ │ ├── be.png │ │ ├── bf 2.png │ │ ├── bf.png │ │ ├── bg 2.png │ │ ├── bg.png │ │ ├── bh 2.png │ │ ├── bh.png │ │ ├── bi 2.png │ │ ├── bi.png │ │ ├── bj 2.png │ │ ├── bj.png │ │ ├── bl 2.png │ │ ├── bl.png │ │ ├── bm 2.png │ │ ├── bm.png │ │ ├── bn 2.png │ │ ├── bn.png │ │ ├── bo 2.png │ │ ├── bo.png │ │ ├── bq 2.png │ │ ├── bq.png │ │ ├── br 2.png │ │ ├── br.png │ │ ├── bs 2.png │ │ ├── bs.png │ │ ├── bt 2.png │ │ ├── bt.png │ │ ├── bv 2.png │ │ ├── bv.png │ │ ├── bw 2.png │ │ ├── bw.png │ │ ├── by 2.png │ │ ├── by.png │ │ ├── bz 2.png │ │ ├── bz.png │ │ ├── ca 2.png │ │ ├── ca.png │ │ ├── cc 2.png │ │ ├── cc.png │ │ ├── cd 2.png │ │ ├── cd.png │ │ ├── cf 2.png │ │ ├── cf.png │ │ ├── cg 2.png │ │ ├── cg.png │ │ ├── ch 2.png │ │ ├── ch.png │ │ ├── ci 2.png │ │ ├── ci.png │ │ ├── ck 2.png │ │ ├── ck.png │ │ ├── cl 2.png │ │ ├── cl.png │ │ ├── cm 2.png │ │ ├── cm.png │ │ ├── cn 2.png │ │ ├── cn.png │ │ ├── co 2.png │ │ ├── co.png │ │ ├── cr 2.png │ │ ├── cr.png │ │ ├── cu 2.png │ │ ├── cu.png │ │ ├── cv 2.png │ │ ├── cv.png │ │ ├── cw 2.png │ │ ├── cw.png │ │ ├── cx 2.png │ │ ├── cx.png │ │ ├── cy 2.png │ │ ├── cy.png │ │ ├── cz 2.png │ │ ├── cz.png │ │ ├── de 2.png │ │ ├── de.png │ │ ├── dj 2.png │ │ ├── dj.png │ │ ├── dk 2.png │ │ ├── dk.png │ │ ├── dm 2.png │ │ ├── dm.png │ │ ├── do 2.png │ │ ├── do.png │ │ ├── dz 2.png │ │ ├── dz.png │ │ ├── ec 2.png │ │ ├── ec.png │ │ ├── ee 2.png │ │ ├── ee.png │ │ ├── eg 2.png │ │ ├── eg.png │ │ ├── eh 2.png │ │ ├── eh.png │ │ ├── er 2.png │ │ ├── er.png │ │ ├── es 2.png │ │ ├── es.png │ │ ├── et 2.png │ │ ├── et.png │ │ ├── fi 2.png │ │ ├── fi.png │ │ ├── fj 2.png │ │ ├── fj.png │ │ ├── fk 2.png │ │ ├── fk.png │ │ ├── fm 2.png │ │ ├── fm.png │ │ ├── fo 2.png │ │ ├── fo.png │ │ ├── fr 2.png │ │ ├── fr.png │ │ ├── ga 2.png │ │ ├── ga.png │ │ ├── gb 2.png │ │ ├── gb-eng 2.png │ │ ├── gb-eng.png │ │ ├── gb-nir 2.png │ │ ├── gb-nir.png │ │ ├── gb-sct 2.png │ │ ├── gb-sct.png │ │ ├── gb-wls 2.png │ │ ├── gb-wls.png │ │ ├── gb.png │ │ ├── gd 2.png │ │ ├── gd.png │ │ ├── ge 2.png │ │ ├── ge.png │ │ ├── gf 2.png │ │ ├── gf.png │ │ ├── gg 2.png │ │ ├── gg.png │ │ ├── gh 2.png │ │ ├── gh.png │ │ ├── gi 2.png │ │ ├── gi.png │ │ ├── gl 2.png │ │ ├── gl.png │ │ ├── gm 2.png │ │ ├── gm.png │ │ ├── gn 2.png │ │ ├── gn.png │ │ ├── gp 2.png │ │ ├── gp.png │ │ ├── gq 2.png │ │ ├── gq.png │ │ ├── gr 2.png │ │ ├── gr.png │ │ ├── gs 2.png │ │ ├── gs.png │ │ ├── gt 2.png │ │ ├── gt.png │ │ ├── gu 2.png │ │ ├── gu.png │ │ ├── gw 2.png │ │ ├── gw.png │ │ ├── gy 2.png │ │ ├── gy.png │ │ ├── hk 2.png │ │ ├── hk.png │ │ ├── hm 2.png │ │ ├── hm.png │ │ ├── hn 2.png │ │ ├── hn.png │ │ ├── hr 2.png │ │ ├── hr.png │ │ ├── ht 2.png │ │ ├── ht.png │ │ ├── hu 2.png │ │ ├── hu.png │ │ ├── id 2.png │ │ ├── id.png │ │ ├── ie 2.png │ │ ├── ie.png │ │ ├── il 2.png │ │ ├── il.png │ │ ├── im 2.png │ │ ├── im.png │ │ ├── in 2.png │ │ ├── in.png │ │ ├── io 2.png │ │ ├── io.png │ │ ├── iq 2.png │ │ ├── iq.png │ │ ├── ir 2.png │ │ ├── ir.png │ │ ├── is 2.png │ │ ├── is.png │ │ ├── it 2.png │ │ ├── it.png │ │ ├── je 2.png │ │ ├── je.png │ │ ├── jm 2.png │ │ ├── jm.png │ │ ├── jo 2.png │ │ ├── jo.png │ │ ├── jp 2.png │ │ ├── jp.png │ │ ├── ke 2.png │ │ ├── ke.png │ │ ├── kg 2.png │ │ ├── kg.png │ │ ├── kh 2.png │ │ ├── kh.png │ │ ├── ki 2.png │ │ ├── ki.png │ │ ├── km 2.png │ │ ├── km.png │ │ ├── kn 2.png │ │ ├── kn.png │ │ ├── kp 2.png │ │ ├── kp.png │ │ ├── kr 2.png │ │ ├── kr.png │ │ ├── kw 2.png │ │ ├── kw.png │ │ ├── ky 2.png │ │ ├── ky.png │ │ ├── kz 2.png │ │ ├── kz.png │ │ ├── la 2.png │ │ ├── la.png │ │ ├── lb 2.png │ │ ├── lb.png │ │ ├── lc 2.png │ │ ├── lc.png │ │ ├── li 2.png │ │ ├── li.png │ │ ├── lk 2.png │ │ ├── lk.png │ │ ├── lr 2.png │ │ ├── lr.png │ │ ├── ls 2.png │ │ ├── ls.png │ │ ├── lt 2.png │ │ ├── lt.png │ │ ├── lu 2.png │ │ ├── lu.png │ │ ├── lv 2.png │ │ ├── lv.png │ │ ├── ly 2.png │ │ ├── ly.png │ │ ├── ma 2.png │ │ ├── ma.png │ │ ├── mc 2.png │ │ ├── mc.png │ │ ├── md 2.png │ │ ├── md.png │ │ ├── me 2.png │ │ ├── me.png │ │ ├── mf 2.png │ │ ├── mf.png │ │ ├── mg 2.png │ │ ├── mg.png │ │ ├── mh 2.png │ │ ├── mh.png │ │ ├── mk 2.png │ │ ├── mk.png │ │ ├── ml 2.png │ │ ├── ml.png │ │ ├── mm 2.png │ │ ├── mm.png │ │ ├── mn 2.png │ │ ├── mn.png │ │ ├── mo 2.png │ │ ├── mo.png │ │ ├── mp 2.png │ │ ├── mp.png │ │ ├── mq 2.png │ │ ├── mq.png │ │ ├── mr 2.png │ │ ├── mr.png │ │ ├── ms 2.png │ │ ├── ms.png │ │ ├── mt 2.png │ │ ├── mt.png │ │ ├── mu 2.png │ │ ├── mu.png │ │ ├── mv 2.png │ │ ├── mv.png │ │ ├── mw 2.png │ │ ├── mw.png │ │ ├── mx 2.png │ │ ├── mx.png │ │ ├── my 2.png │ │ ├── my.png │ │ ├── mz 2.png │ │ ├── mz.png │ │ ├── na 2.png │ │ ├── na.png │ │ ├── nc 2.png │ │ ├── nc.png │ │ ├── ne 2.png │ │ ├── ne.png │ │ ├── nf 2.png │ │ ├── nf.png │ │ ├── ng 2.png │ │ ├── ng.png │ │ ├── ni 2.png │ │ ├── ni.png │ │ ├── nl 2.png │ │ ├── nl.png │ │ ├── no 2.png │ │ ├── no.png │ │ ├── np 2.png │ │ ├── np.png │ │ ├── nr 2.png │ │ ├── nr.png │ │ ├── nu 2.png │ │ ├── nu.png │ │ ├── nz 2.png │ │ ├── nz.png │ │ ├── om 2.png │ │ ├── om.png │ │ ├── pa 2.png │ │ ├── pa.png │ │ ├── pe 2.png │ │ ├── pe.png │ │ ├── pf 2.png │ │ ├── pf.png │ │ ├── pg 2.png │ │ ├── pg.png │ │ ├── ph 2.png │ │ ├── ph.png │ │ ├── pk 2.png │ │ ├── pk.png │ │ ├── pl 2.png │ │ ├── pl.png │ │ ├── pm 2.png │ │ ├── pm.png │ │ ├── pn 2.png │ │ ├── pn.png │ │ ├── pr 2.png │ │ ├── pr.png │ │ ├── ps 2.png │ │ ├── ps.png │ │ ├── pt 2.png │ │ ├── pt.png │ │ ├── pw 2.png │ │ ├── pw.png │ │ ├── py 2.png │ │ ├── py.png │ │ ├── qa 2.png │ │ ├── qa.png │ │ ├── re 2.png │ │ ├── re.png │ │ ├── ro 2.png │ │ ├── ro.png │ │ ├── rs 2.png │ │ ├── rs.png │ │ ├── ru 2.png │ │ ├── ru.png │ │ ├── rw 2.png │ │ ├── rw.png │ │ ├── sa 2.png │ │ ├── sa.png │ │ ├── sb 2.png │ │ ├── sb.png │ │ ├── sc 2.png │ │ ├── sc.png │ │ ├── sd 2.png │ │ ├── sd.png │ │ ├── se 2.png │ │ ├── se.png │ │ ├── sg 2.png │ │ ├── sg.png │ │ ├── sh 2.png │ │ ├── sh.png │ │ ├── si 2.png │ │ ├── si.png │ │ ├── sj 2.png │ │ ├── sj.png │ │ ├── sk 2.png │ │ ├── sk.png │ │ ├── sl 2.png │ │ ├── sl.png │ │ ├── sm 2.png │ │ ├── sm.png │ │ ├── sn 2.png │ │ ├── sn.png │ │ ├── so 2.png │ │ ├── so.png │ │ ├── sr 2.png │ │ ├── sr.png │ │ ├── ss 2.png │ │ ├── ss.png │ │ ├── st 2.png │ │ ├── st.png │ │ ├── sv 2.png │ │ ├── sv.png │ │ ├── sx 2.png │ │ ├── sx.png │ │ ├── sy 2.png │ │ ├── sy.png │ │ ├── sz 2.png │ │ ├── sz.png │ │ ├── tc 2.png │ │ ├── tc.png │ │ ├── td 2.png │ │ ├── td.png │ │ ├── tf 2.png │ │ ├── tf.png │ │ ├── tg 2.png │ │ ├── tg.png │ │ ├── th 2.png │ │ ├── th.png │ │ ├── tj 2.png │ │ ├── tj.png │ │ ├── tk 2.png │ │ ├── tk.png │ │ ├── tl 2.png │ │ ├── tl.png │ │ ├── tm 2.png │ │ ├── tm.png │ │ ├── tn 2.png │ │ ├── tn.png │ │ ├── to 2.png │ │ ├── to.png │ │ ├── tr 2.png │ │ ├── tr.png │ │ ├── tt 2.png │ │ ├── tt.png │ │ ├── tv 2.png │ │ ├── tv.png │ │ ├── tw 2.png │ │ ├── tw.png │ │ ├── tz 2.png │ │ ├── tz.png │ │ ├── ua 2.png │ │ ├── ua.png │ │ ├── ug 2.png │ │ ├── ug.png │ │ ├── um 2.png │ │ ├── um.png │ │ ├── us 2.png │ │ ├── us.png │ │ ├── uy 2.png │ │ ├── uy.png │ │ ├── uz 2.png │ │ ├── uz.png │ │ ├── va 2.png │ │ ├── va.png │ │ ├── vc 2.png │ │ ├── vc.png │ │ ├── ve 2.png │ │ ├── ve.png │ │ ├── vg 2.png │ │ ├── vg.png │ │ ├── vi 2.png │ │ ├── vi.png │ │ ├── vn 2.png │ │ ├── vn.png │ │ ├── vu 2.png │ │ ├── vu.png │ │ ├── wf 2.png │ │ ├── wf.png │ │ ├── ws 2.png │ │ ├── ws.png │ │ ├── xk 2.png │ │ ├── xk.png │ │ ├── ye 2.png │ │ ├── ye.png │ │ ├── yt 2.png │ │ ├── yt.png │ │ ├── za 2.png │ │ ├── za.png │ │ ├── zm 2.png │ │ ├── zm.png │ │ ├── zw 2.png │ │ └── zw.png │ │ ├── main.py │ │ └── wrong.png ├── Spell_checker │ ├── README.md │ └── spell_checker.py ├── Split_File │ ├── README.md │ ├── requirements.txt │ └── split_files.py ├── Split_a_video_file_by_given_time_period │ ├── README.md │ ├── requirements.txt │ └── videosplitter.py ├── Split_folder_into_subfolders │ ├── Readme.md │ └── split_and_copy.py ├── Store_emails_in_csv │ ├── README.md │ ├── credentials.txt │ ├── mails.csv │ ├── requirements.txt │ └── store_emails.py ├── String_search_from_multiple_files │ ├── README.md │ ├── files │ │ ├── file1.txt │ │ ├── file2.txt │ │ ├── file3.txt │ │ └── folder1 │ │ │ ├── hello.txt │ │ │ └── python.txt │ └── findstring.py ├── Terminal_Based_Hangman_Game │ ├── README.md │ ├── hangman.py │ └── words.json ├── Terminal_progress_bar_with_images_resizing │ ├── Readme.md │ ├── progress_bar_ with_images_resizing.py │ └── requirements.txt ├── Text_to_speech │ ├── README.md │ ├── abc.txt │ ├── requirements.txt │ ├── txtToSpeech.py │ └── voice.mp3 ├── Textfile_analysis │ ├── README.md │ └── textfile_analysis.py ├── Tic_tac_toe │ ├── README.md │ └── tic_tac_toe.py ├── Tic_tac_toe_with_ai │ ├── .replit │ ├── README.md │ ├── tic-tac-toe-AI.py │ └── tic_tac_toe.png ├── Time_to_load_website │ ├── README.md │ ├── sample.PNG │ └── time_to_load_website.py ├── Todo_app │ ├── Readme.md │ ├── app.py │ ├── requirements.txt │ ├── static │ │ └── css │ │ │ └── style.css │ ├── templates │ │ ├── base.html │ │ └── index.html │ └── test.db ├── Unique_words_in_a_file │ ├── README.md │ ├── text_file.txt │ └── unique.py ├── Unstructured Supplemenrary Service Data │ ├── README.md │ ├── Screenshot_20200910-134857.png │ └── ussdtim.py ├── Web_page_summation │ ├── .gitignore │ ├── README.md │ ├── app.py │ ├── requirements.txt │ └── utils │ │ ├── __init__.py │ │ ├── comparison.py │ │ ├── model.py │ │ ├── prepare.py │ │ ├── summarize.py │ │ ├── test.py │ │ ├── train.py │ │ └── utils.py ├── Web_scraping_a_youtube_comment │ ├── README.md │ ├── demo.gif │ ├── requirements.txt │ └── webscrapindcomment.py ├── Website_blocker │ ├── README.md │ ├── website_blocker.py │ └── website_unblocker.py ├── Wifi_windows_password_displayer │ ├── README.md │ └── main.py ├── Wikipedia_search_wordcloud │ ├── README.md │ ├── requirements.txt │ ├── script_execution.jpg │ ├── wiki-search-cloud.py │ └── wordcloud.png ├── WishList │ └── README.md ├── Write_a_script_to_download_a_random_image_from_unsplash_and_set_it_as_wallpaper │ ├── README.md │ ├── background_linux.py │ └── background_windows.py ├── Write_script_to_compress_folder_and_files │ ├── README.md │ └── zipfiles.py ├── Write_script_to_move_files_into_alphabetically_ordered_folder │ ├── README.md │ └── main.py ├── XKCD_downloader │ ├── README.md │ ├── requirements.txt │ └── xkcd_dowloader.py ├── Zip_Bruter │ ├── README.md │ └── zipbruter.py ├── birthDateToCurrentAge.py ├── capture_screenshot │ ├── README.md │ ├── requirements.txt │ └── screenshot.py ├── cat_command │ ├── README.md │ ├── cat.py │ └── test_cat.txt ├── chatbot │ ├── README.md │ ├── bot.py │ ├── requirements.txt │ └── simple-bot.py ├── cli_proxy_tester │ ├── .gitignore │ ├── README.md │ ├── cli.py │ ├── ipinfo │ │ └── index.php │ ├── proxytest.py │ └── requirements.txt ├── convert pdf to text │ ├── README.md │ ├── converter1.py │ ├── output.txt │ ├── samplePdf1.pdf │ └── temp │ │ └── samplePdf1.txt ├── convert_Imgs │ ├── JPGtoPNG.py │ ├── PNGtoJPG.py │ ├── README.md │ ├── convertDynamic.py │ ├── naruto_first.jpg │ ├── naruto_first.png │ ├── naruto_last.jpg │ ├── naruto_last.png │ └── requirements.txt ├── convert_dictionary_to_python_object │ ├── README.md │ └── conversion.py ├── convert_png_images_to_ico_format │ ├── README.md │ ├── convert.py │ ├── convertUI.py │ ├── input.png │ ├── output.ico │ └── requirements.txt ├── detect_align_faces │ ├── README.md │ ├── example.jpg │ ├── main.py │ └── requirements.txt ├── dork_search_google │ ├── README.md │ ├── main.py │ └── requirements.txt ├── download GeeksForGeeks articles │ ├── downloader.py │ ├── readme.md │ ├── requirements.txt │ └── screenshot.jpg ├── export_mysql_to_csv_send_to_wocom │ ├── README.md │ ├── config.ini │ ├── export_mysql_data_to_csv.py │ ├── pic.png │ └── requirements.txt ├── racing_barchart_animation │ ├── README.md │ ├── animated_barchart.ipynb │ ├── images │ │ └── deceased.gif │ └── requirements.txt ├── steganography │ ├── README.md │ ├── dct.py │ ├── example.png │ ├── lsb.py │ └── requirements.txt ├── telegram_bot │ ├── README.md │ ├── main.py │ └── requirements.txt ├── text_to_morse_code │ └── text_to_morse_code.py └── whatsapp_Bot │ ├── Readme.md │ ├── main.py │ └── requirements.txt └── requirementsALL.txt /.gitattributes: -------------------------------------------------------------------------------- 1 | *.py linguist-language=python 2 | 3 | *.ipynb linguist-documentation 4 | -------------------------------------------------------------------------------- /Notebooks/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /docs/.nojekyll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/docs/.nojekyll -------------------------------------------------------------------------------- /docs/_config.yml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /projects/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/.DS_Store -------------------------------------------------------------------------------- /projects/All_links_from_given_webpage/requirements.txt: -------------------------------------------------------------------------------- 1 | beautifulsoup4==4.9.2 2 | requests==2.24.0 3 | -------------------------------------------------------------------------------- /projects/Ascii_art/requirements.txt: -------------------------------------------------------------------------------- 1 | opencv-python==4.3.0.36 2 | numpy==1.19.1 3 | -------------------------------------------------------------------------------- /projects/Ascii_art/sample_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Ascii_art/sample_image.png -------------------------------------------------------------------------------- /projects/Ascii_art/sample_output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Ascii_art/sample_output.png -------------------------------------------------------------------------------- /projects/Baidu_POI_crawl/output/2021-11-17.log: -------------------------------------------------------------------------------- 1 | 2021-11-17-17-36-18 成都 3 2 | -------------------------------------------------------------------------------- /projects/Baidu_POI_crawl/requirements.txt: -------------------------------------------------------------------------------- 1 | requests 2 | json -------------------------------------------------------------------------------- /projects/Battery_notification/requirements.txt: -------------------------------------------------------------------------------- 1 | psutil==5.7.2 2 | py-notifier==0.1 3 | win10toast==0.9 4 | -------------------------------------------------------------------------------- /projects/Billing_system/Bill.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Billing_system/Bill.PNG -------------------------------------------------------------------------------- /projects/Bouncing_ball_simulator/ball.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Bouncing_ball_simulator/ball.png -------------------------------------------------------------------------------- /projects/Bouncing_ball_simulator/requirements.txt: -------------------------------------------------------------------------------- 1 | pygame==2.0.2 -------------------------------------------------------------------------------- /projects/Captcha_Genrator/requirements.txt: -------------------------------------------------------------------------------- 1 | captcha -------------------------------------------------------------------------------- /projects/Capture_Video_Frames/requirements.txt: -------------------------------------------------------------------------------- 1 | opencv-python==4.3.0.36 2 | -------------------------------------------------------------------------------- /projects/Check_website_connectivity/requirements.txt: -------------------------------------------------------------------------------- 1 | requests 2 | -------------------------------------------------------------------------------- /projects/Cli_todo/requirements.txt: -------------------------------------------------------------------------------- 1 | click==7.1.2 2 | -------------------------------------------------------------------------------- /projects/Cli_todo/todo.txt: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /projects/Convert_JPEG_to_PNG/input.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Convert_JPEG_to_PNG/input.jpeg -------------------------------------------------------------------------------- /projects/Convert_JPEG_to_PNG/output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Convert_JPEG_to_PNG/output.png -------------------------------------------------------------------------------- /projects/Convert_JSON_to_CSV/output.csv: -------------------------------------------------------------------------------- 1 | Name,age,birthyear 2 | Akash,26,1994 3 | Abhay,34,1986 -------------------------------------------------------------------------------- /projects/Convert_XML_To_JSON/requirements.txt: -------------------------------------------------------------------------------- 1 | xmltodict==0.12.0 2 | -------------------------------------------------------------------------------- /projects/Convert_a_image_to_pdf/requirements.txt: -------------------------------------------------------------------------------- 1 | img2pdf==0.4.0 -------------------------------------------------------------------------------- /projects/Countdown_timer/example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Countdown_timer/example.png -------------------------------------------------------------------------------- /projects/Create_a_script_to_encrypt_files_and_folder/requirements.txt: -------------------------------------------------------------------------------- 1 | pycryptodome==3.9.8 2 | -------------------------------------------------------------------------------- /projects/Create_a_simple_stopwatch/README.md: -------------------------------------------------------------------------------- 1 | ## create a simple stopwatch 2 | 3 | ### usage 4 | 5 | python stopwatch.py 6 | -------------------------------------------------------------------------------- /projects/Create_calculator_app/output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Create_calculator_app/output.png -------------------------------------------------------------------------------- /projects/Currency_converter/output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Currency_converter/output.png -------------------------------------------------------------------------------- /projects/Diff_Util/diff_util.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Diff_Util/diff_util.jpg -------------------------------------------------------------------------------- /projects/Diff_Util/requirements.txt: -------------------------------------------------------------------------------- 1 | rich==10.11.0 2 | -------------------------------------------------------------------------------- /projects/Digital_clock/Digital Clock.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Digital_clock/Digital Clock.PNG -------------------------------------------------------------------------------- /projects/Dns_record/requirements.txt: -------------------------------------------------------------------------------- 1 | dnspython==2.0.0 -------------------------------------------------------------------------------- /projects/Dominant_color/requirements.txt: -------------------------------------------------------------------------------- 1 | opencv-python==4.3.0.36 2 | numpy==1.19.1 3 | -------------------------------------------------------------------------------- /projects/Dominant_color/shot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Dominant_color/shot.png -------------------------------------------------------------------------------- /projects/Download_images_from_website/requirements.txt: -------------------------------------------------------------------------------- 1 | selenium==3.141.0 2 | -------------------------------------------------------------------------------- /projects/Drowsiness detection/alarm.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Drowsiness detection/alarm.wav -------------------------------------------------------------------------------- /projects/EasyVideoPlayer/requirements.txt: -------------------------------------------------------------------------------- 1 | opencv-python==4.4.0.42 2 | pathlib==1.0.1 3 | ffpyplayer==4.3.1 4 | -------------------------------------------------------------------------------- /projects/Encrypt_and_decrypt_text/requirements.txt: -------------------------------------------------------------------------------- 1 | pycryptodome==3.9.8 2 | -------------------------------------------------------------------------------- /projects/Fetch HTTP status code/requirements.txt: -------------------------------------------------------------------------------- 1 | emoji==0.6.0 -------------------------------------------------------------------------------- /projects/Fetch_and_store_tweets/requirements.txt: -------------------------------------------------------------------------------- 1 | tweepy==3.9.0 2 | -------------------------------------------------------------------------------- /projects/Fetch_open_ports/Screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Fetch_open_ports/Screenshot.png -------------------------------------------------------------------------------- /projects/Find_imdb_rating/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /projects/Geocoding/requirements.txt: -------------------------------------------------------------------------------- 1 | certifi==2020.6.20 2 | chardet==3.0.4 3 | idna==2.10 4 | requests==2.24.0 5 | urllib3==1.26.5 6 | -------------------------------------------------------------------------------- /projects/Get_meta_information_of_images/requirements.txt: -------------------------------------------------------------------------------- 1 | PIL==1.1.6 2 | ExifRead==2.3.1 3 | geopy==2.0.0 4 | -------------------------------------------------------------------------------- /projects/Hello/Hello.py: -------------------------------------------------------------------------------- 1 | # This is simple program to show how print statement works 2 | 3 | print('Hello Python World') 4 | -------------------------------------------------------------------------------- /projects/Image_watermark/requirements.txt: -------------------------------------------------------------------------------- 1 | PIL==1.1.6 2 | -------------------------------------------------------------------------------- /projects/Instagram_profile/output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Instagram_profile/output.png -------------------------------------------------------------------------------- /projects/Language_translator/Shot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Language_translator/Shot.png -------------------------------------------------------------------------------- /projects/Language_translator/requirements.txt: -------------------------------------------------------------------------------- 1 | googletrans==3.0.0 2 | -------------------------------------------------------------------------------- /projects/Merge_csv_files/requirements.txt: -------------------------------------------------------------------------------- 1 | pandas==1.1.0 2 | -------------------------------------------------------------------------------- /projects/Merge_pdfs/mergedPdf.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Merge_pdfs/mergedPdf.pdf -------------------------------------------------------------------------------- /projects/Merge_pdfs/mergedPdf1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Merge_pdfs/mergedPdf1.pdf -------------------------------------------------------------------------------- /projects/Merge_pdfs/requirements.txt: -------------------------------------------------------------------------------- 1 | PyPDF2==1.26.0 2 | -------------------------------------------------------------------------------- /projects/Merge_pdfs/samplePdf1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Merge_pdfs/samplePdf1.pdf -------------------------------------------------------------------------------- /projects/Merge_pdfs/samplePdf2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Merge_pdfs/samplePdf2.pdf -------------------------------------------------------------------------------- /projects/Movie Information Scraper/requirements.txt: -------------------------------------------------------------------------------- 1 | beautifulsoup4 2 | requests==2.23.0 3 | -------------------------------------------------------------------------------- /projects/Multi_language_OCR/requirements.txt: -------------------------------------------------------------------------------- 1 | agentocr==1.3.0 2 | onnxruntime==1.8.1 3 | -------------------------------------------------------------------------------- /projects/Network Usage Tracker/requirements.txt: -------------------------------------------------------------------------------- 1 | tkinter 2 | pillow 3 | time 4 | psutil 5 | socket 6 | -------------------------------------------------------------------------------- /projects/News_website_scraper/images/README.md: -------------------------------------------------------------------------------- 1 | home.jpg - main news page 2 | 3 | nextpage.jpg - links to next pages 4 | 5 | result.jpg - Snapshot of result json file 6 | -------------------------------------------------------------------------------- /projects/Number_guessing_game/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Number_guessing_game/image.png -------------------------------------------------------------------------------- /projects/PDF to MP3/requirements.txt: -------------------------------------------------------------------------------- 1 | pyttsx3 2 | PyPDF2 3 | tkinter -------------------------------------------------------------------------------- /projects/Password_generator/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Password_generator/.DS_Store -------------------------------------------------------------------------------- /projects/Password_generator/logo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Password_generator/logo.ico -------------------------------------------------------------------------------- /projects/Password_generator/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Password_generator/logo.png -------------------------------------------------------------------------------- /projects/Qr_code_generator/url_qrcode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Qr_code_generator/url_qrcode.png -------------------------------------------------------------------------------- /projects/Random_Wikipedia_Article/requirements.txt: -------------------------------------------------------------------------------- 1 | HTMLParser==0.0.2 2 | -------------------------------------------------------------------------------- /projects/Reduce_image_file_size/input.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Reduce_image_file_size/input.jpg -------------------------------------------------------------------------------- /projects/S3_File_Upload/requirements.txt: -------------------------------------------------------------------------------- 1 | boto3==1.20.4 2 | botocore==1.23.4 3 | -------------------------------------------------------------------------------- /projects/Scrape_quotes/Screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Scrape_quotes/Screenshot.png -------------------------------------------------------------------------------- /projects/Scrape_quotes/requirements.txt: -------------------------------------------------------------------------------- 1 | beautifulsoup4 2 | requests==2.23.0 3 | -------------------------------------------------------------------------------- /projects/Scraping Medium Articles/requirements.txt: -------------------------------------------------------------------------------- 1 | beautifulsoup4==4.9.1 2 | requests==2.23.0 3 | -------------------------------------------------------------------------------- /projects/Send_email_from_csv/credentials.txt: -------------------------------------------------------------------------------- 1 | YourEmail 2 | Yourpass -------------------------------------------------------------------------------- /projects/Send_email_from_csv/emails.csv: -------------------------------------------------------------------------------- 1 | mithilesh24m@gmail.com 2 | mithilesh24m@gmail.com 3 | mithilesh24m@gmail.com 4 | mithilesh24m@gmail.com 5 | -------------------------------------------------------------------------------- /projects/Set_Alarm/musics/Carnival.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Set_Alarm/musics/Carnival.ogg -------------------------------------------------------------------------------- /projects/Set_Alarm/musics/Crusade.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Set_Alarm/musics/Crusade.ogg -------------------------------------------------------------------------------- /projects/Set_Alarm/musics/Renaissance.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Set_Alarm/musics/Renaissance.ogg -------------------------------------------------------------------------------- /projects/Set_Alarm/musics/Variations.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Set_Alarm/musics/Variations.ogg -------------------------------------------------------------------------------- /projects/Set_Alarm/musics/new_horizon.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Set_Alarm/musics/new_horizon.ogg -------------------------------------------------------------------------------- /projects/Sine_Wave/equation.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Sine_Wave/equation.PNG -------------------------------------------------------------------------------- /projects/Sine_Wave/screenshot.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Sine_Wave/screenshot.PNG -------------------------------------------------------------------------------- /projects/Snapshot_of_given_website/requirements.txt: -------------------------------------------------------------------------------- 1 | selenium==3.141.0 2 | chromedriver-binary==85.0.4183.38.0 3 | -------------------------------------------------------------------------------- /projects/Space_bullet_shooter_game/bg.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Space_bullet_shooter_game/bg.wav -------------------------------------------------------------------------------- /projects/Speech_to_text/requirements.txt: -------------------------------------------------------------------------------- 1 | PyAudio==0.2.11 2 | SpeechRecognition==3.8.1 3 | -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/.DS_Store -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/correct.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/correct.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/halloween.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/halloween.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/ad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/ad.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/ae.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/ae.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/af.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/af.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/ag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/ag.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/ai.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/ai.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/al.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/al.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/am.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/am.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/ao.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/ao.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/aq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/aq.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/ar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/ar.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/as.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/as.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/at.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/at.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/au.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/au.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/aw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/aw.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/ax.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/ax.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/az.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/az.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/ba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/ba.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/bb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/bb.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/bd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/bd.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/be.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/be.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/bf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/bf.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/bg.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/bh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/bh.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/bi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/bi.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/bj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/bj.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/bl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/bl.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/bm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/bm.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/bn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/bn.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/bo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/bo.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/bq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/bq.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/br.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/br.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/bs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/bs.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/bt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/bt.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/bv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/bv.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/bw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/bw.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/by.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/by.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/bz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/bz.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/ca.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/ca.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/cc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/cc.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/cd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/cd.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/cf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/cf.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/cg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/cg.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/ch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/ch.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/ci.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/ci.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/ck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/ck.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/cl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/cl.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/cm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/cm.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/cn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/cn.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/co.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/co.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/cr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/cr.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/cu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/cu.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/cv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/cv.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/cw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/cw.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/cx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/cx.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/cy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/cy.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/cz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/cz.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/de.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/de.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/dj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/dj.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/dk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/dk.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/dm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/dm.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/do.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/do.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/dz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/dz.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/ec.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/ec.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/ee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/ee.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/eg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/eg.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/eh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/eh.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/er.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/er.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/es.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/es.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/et.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/et.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/fi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/fi.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/fj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/fj.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/fk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/fk.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/fm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/fm.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/fo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/fo.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/fr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/fr.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/ga.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/ga.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/gb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/gb.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/gd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/gd.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/ge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/ge.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/gf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/gf.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/gg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/gg.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/gh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/gh.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/gi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/gi.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/gl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/gl.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/gm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/gm.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/gn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/gn.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/gp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/gp.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/gq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/gq.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/gr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/gr.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/gs 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/gs 2.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/gs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/gs.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/gt 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/gt 2.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/gt.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/gu 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/gu 2.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/gu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/gu.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/gw 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/gw 2.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/gw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/gw.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/gy 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/gy 2.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/gy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/gy.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/hk 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/hk 2.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/hk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/hk.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/hm 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/hm 2.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/hm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/hm.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/hn 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/hn 2.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/hn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/hn.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/hr 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/hr 2.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/hr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/hr.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/ht 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/ht 2.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/ht.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/ht.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/hu 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/hu 2.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/hu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/hu.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/id 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/id 2.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/id.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/id.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/ie 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/ie 2.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/ie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/ie.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/il 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/il 2.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/il.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/il.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/im 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/im 2.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/im.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/im.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/in 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/in 2.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/in.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/io 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/io 2.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/io.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/io.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/iq 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/iq 2.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/iq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/iq.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/ir 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/ir 2.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/ir.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/ir.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/is 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/is 2.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/is.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/is.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/it 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/it 2.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/it.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/it.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/je 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/je 2.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/je.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/je.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/jm 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/jm 2.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/jm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/jm.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/jo 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/jo 2.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/jo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/jo.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/jp 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/jp 2.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/jp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/jp.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/ke.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/ke.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/kg 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/kg 2.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/kg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/kg.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/kh 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/kh 2.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/kh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/kh.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/ki 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/ki 2.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/ki.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/ki.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/km 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/km 2.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/km.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/km.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/kn 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/kn 2.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/kn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/kn.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/kp 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/kp 2.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/kp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/kp.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/kr 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/kr 2.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/kr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/kr.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/kw 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/kw 2.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/kw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/kw.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/ky 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/ky 2.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/ky.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/ky.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/kz 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/kz 2.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/kz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/kz.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/la 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/la 2.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/la.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/la.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/lb 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/lb 2.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/lb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/lb.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/lc 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/lc 2.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/lc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/lc.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/li 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/li 2.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/li.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/li.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/lk 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/lk 2.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/lk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/lk.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/lr 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/lr 2.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/lr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/lr.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/ls 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/ls 2.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/ls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/ls.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/lt 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/lt 2.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/lt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/lt.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/lu 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/lu 2.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/lu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/lu.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/lv 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/lv 2.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/lv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/lv.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/ly 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/ly 2.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/ly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/ly.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/ma 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/ma 2.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/ma.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/ma.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/mc 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/mc 2.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/mc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/mc.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/md.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/md.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/me 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/me 2.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/me.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/me.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/mf 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/mf 2.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/mf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/mf.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/mg 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/mg 2.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/mg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/mg.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/mh 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/mh 2.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/mh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/mh.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/mk 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/mk 2.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/mk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/mk.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/ml 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/ml 2.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/ml.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/ml.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/mm 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/mm 2.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/mm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/mm.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/mn 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/mn 2.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/mn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/mn.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/mo 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/mo 2.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/mo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/mo.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/mp 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/mp 2.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/mp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/mp.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/mq 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/mq 2.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/mq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/mq.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/mr 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/mr 2.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/mr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/mr.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/ms 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/ms 2.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/ms.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/ms.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/mt 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/mt 2.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/mt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/mt.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/mu 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/mu 2.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/mu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/mu.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/mv 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/mv 2.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/mv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/mv.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/mw 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/mw 2.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/mw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/mw.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/mx 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/mx 2.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/mx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/mx.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/my 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/my 2.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/my.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/my.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/mz 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/mz 2.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/mz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/mz.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/na 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/na 2.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/na.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/na.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/nc 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/nc 2.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/nc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/nc.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/ne 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/ne 2.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/ne.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/ne.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/nf 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/nf 2.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/nf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/nf.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/ng 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/ng 2.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/ng.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/ng.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/ni 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/ni 2.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/ni.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/ni.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/nl 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/nl 2.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/nl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/nl.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/no 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/no 2.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/no.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/no.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/np 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/np 2.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/np.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/np.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/nr 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/nr 2.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/nr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/nr.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/nu 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/nu 2.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/nu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/nu.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/nz 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/nz 2.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/nz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/nz.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/om 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/om 2.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/om.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/om.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/pa 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/pa 2.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/pa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/pa.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/pe 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/pe 2.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/pe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/pe.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/pf 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/pf 2.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/pf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/pf.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/pg 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/pg 2.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/pg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/pg.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/ph 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/ph 2.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/ph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/ph.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/pk 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/pk 2.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/pk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/pk.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/pl 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/pl 2.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/pl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/pl.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/pm 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/pm 2.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/pm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/pm.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/pn 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/pn 2.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/pn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/pn.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/pr 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/pr 2.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/pr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/pr.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/ps 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/ps 2.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/ps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/ps.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/pt 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/pt 2.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/pt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/pt.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/pw 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/pw 2.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/pw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/pw.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/py 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/py 2.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/py.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/py.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/qa 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/qa 2.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/qa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/qa.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/re 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/re 2.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/re.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/re.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/ro 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/ro 2.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/ro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/ro.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/rs 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/rs 2.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/rs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/rs.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/ru 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/ru 2.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/ru.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/ru.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/rw 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/rw 2.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/rw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/rw.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/sa 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/sa 2.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/sa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/sa.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/sb 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/sb 2.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/sb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/sb.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/sc 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/sc 2.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/sc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/sc.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/sd 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/sd 2.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/sd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/sd.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/se 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/se 2.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/se.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/se.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/sg 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/sg 2.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/sg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/sg.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/sh 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/sh 2.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/sh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/sh.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/si 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/si 2.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/si.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/si.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/sj 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/sj 2.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/sj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/sj.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/sk 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/sk 2.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/sk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/sk.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/sl 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/sl 2.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/sl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/sl.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/sm 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/sm 2.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/sm.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/sn 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/sn 2.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/sn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/sn.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/so 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/so 2.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/so.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/so.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/sr 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/sr 2.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/sr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/sr.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/ss 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/ss 2.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/ss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/ss.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/st 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/st 2.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/st.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/st.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/sv 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/sv 2.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/sv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/sv.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/sx 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/sx 2.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/sx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/sx.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/sy 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/sy 2.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/sy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/sy.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/sz 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/sz 2.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/sz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/sz.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/tc 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/tc 2.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/tc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/tc.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/td 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/td 2.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/td.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/td.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/tf 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/tf 2.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/tf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/tf.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/tg 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/tg 2.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/tg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/tg.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/th 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/th 2.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/th.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/th.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/tj 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/tj 2.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/tj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/tj.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/tk 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/tk 2.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/tk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/tk.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/tl 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/tl 2.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/tl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/tl.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/tm 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/tm 2.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/tm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/tm.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/tn 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/tn 2.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/tn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/tn.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/to 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/to 2.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/to.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/to.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/tr 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/tr 2.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/tr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/tr.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/tt 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/tt 2.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/tt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/tt.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/tv 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/tv 2.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/tv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/tv.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/tw 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/tw 2.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/tw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/tw.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/tz 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/tz 2.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/tz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/tz.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/ua 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/ua 2.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/ua.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/ua.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/ug 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/ug 2.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/ug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/ug.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/um 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/um 2.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/um.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/um.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/us 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/us 2.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/us.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/us.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/uy 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/uy 2.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/uy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/uy.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/uz 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/uz 2.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/uz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/uz.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/va 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/va 2.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/va.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/va.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/vc 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/vc 2.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/vc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/vc.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/ve 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/ve 2.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/ve.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/ve.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/vg 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/vg 2.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/vg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/vg.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/vi 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/vi 2.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/vi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/vi.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/vn 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/vn 2.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/vn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/vn.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/vu 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/vu 2.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/vu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/vu.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/wf 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/wf 2.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/wf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/wf.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/ws 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/ws 2.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/ws.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/ws.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/xk 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/xk 2.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/xk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/xk.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/ye 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/ye 2.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/ye.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/ye.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/yt 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/yt 2.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/yt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/yt.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/za 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/za 2.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/za.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/za.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/zm 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/zm 2.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/zm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/zm.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/zw 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/zw 2.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/images/zw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/images/zw.png -------------------------------------------------------------------------------- /projects/Speed_Game/macOS/wrong.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/macOS/wrong.png -------------------------------------------------------------------------------- /projects/Speed_Game/windows/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/windows/.DS_Store -------------------------------------------------------------------------------- /projects/Speed_Game/windows/correct.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/windows/correct.png -------------------------------------------------------------------------------- /projects/Speed_Game/windows/halloween.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/windows/halloween.png -------------------------------------------------------------------------------- /projects/Speed_Game/windows/images/ad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/windows/images/ad.png -------------------------------------------------------------------------------- /projects/Speed_Game/windows/images/ae.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/windows/images/ae.png -------------------------------------------------------------------------------- /projects/Speed_Game/windows/images/af.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/windows/images/af.png -------------------------------------------------------------------------------- /projects/Speed_Game/windows/images/ag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/windows/images/ag.png -------------------------------------------------------------------------------- /projects/Speed_Game/windows/images/ai.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/windows/images/ai.png -------------------------------------------------------------------------------- /projects/Speed_Game/windows/images/al.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/windows/images/al.png -------------------------------------------------------------------------------- /projects/Speed_Game/windows/images/am.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/windows/images/am.png -------------------------------------------------------------------------------- /projects/Speed_Game/windows/images/ao.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/windows/images/ao.png -------------------------------------------------------------------------------- /projects/Speed_Game/windows/images/aq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/windows/images/aq.png -------------------------------------------------------------------------------- /projects/Speed_Game/windows/images/ar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/windows/images/ar.png -------------------------------------------------------------------------------- /projects/Speed_Game/windows/images/as.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/windows/images/as.png -------------------------------------------------------------------------------- /projects/Speed_Game/windows/images/at.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/windows/images/at.png -------------------------------------------------------------------------------- /projects/Speed_Game/windows/images/au.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/windows/images/au.png -------------------------------------------------------------------------------- /projects/Speed_Game/windows/images/aw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/windows/images/aw.png -------------------------------------------------------------------------------- /projects/Speed_Game/windows/images/ax.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/windows/images/ax.png -------------------------------------------------------------------------------- /projects/Speed_Game/windows/images/az.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/windows/images/az.png -------------------------------------------------------------------------------- /projects/Speed_Game/windows/images/ba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/windows/images/ba.png -------------------------------------------------------------------------------- /projects/Speed_Game/windows/images/bb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/windows/images/bb.png -------------------------------------------------------------------------------- /projects/Speed_Game/windows/images/bd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/windows/images/bd.png -------------------------------------------------------------------------------- /projects/Speed_Game/windows/images/be.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/windows/images/be.png -------------------------------------------------------------------------------- /projects/Speed_Game/windows/images/bf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/windows/images/bf.png -------------------------------------------------------------------------------- /projects/Speed_Game/windows/images/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/windows/images/bg.png -------------------------------------------------------------------------------- /projects/Speed_Game/windows/images/bh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/windows/images/bh.png -------------------------------------------------------------------------------- /projects/Speed_Game/windows/images/bi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/windows/images/bi.png -------------------------------------------------------------------------------- /projects/Speed_Game/windows/images/bj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/windows/images/bj.png -------------------------------------------------------------------------------- /projects/Speed_Game/windows/images/bl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/windows/images/bl.png -------------------------------------------------------------------------------- /projects/Speed_Game/windows/images/bm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/windows/images/bm.png -------------------------------------------------------------------------------- /projects/Speed_Game/windows/images/bn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/windows/images/bn.png -------------------------------------------------------------------------------- /projects/Speed_Game/windows/images/bo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/windows/images/bo.png -------------------------------------------------------------------------------- /projects/Speed_Game/windows/images/bq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/windows/images/bq.png -------------------------------------------------------------------------------- /projects/Speed_Game/windows/images/br.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/windows/images/br.png -------------------------------------------------------------------------------- /projects/Speed_Game/windows/images/bs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/windows/images/bs.png -------------------------------------------------------------------------------- /projects/Speed_Game/windows/images/bt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/windows/images/bt.png -------------------------------------------------------------------------------- /projects/Speed_Game/windows/images/bv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/windows/images/bv.png -------------------------------------------------------------------------------- /projects/Speed_Game/windows/images/bw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/windows/images/bw.png -------------------------------------------------------------------------------- /projects/Speed_Game/windows/images/by.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/windows/images/by.png -------------------------------------------------------------------------------- /projects/Speed_Game/windows/images/bz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/windows/images/bz.png -------------------------------------------------------------------------------- /projects/Speed_Game/windows/images/ca.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/windows/images/ca.png -------------------------------------------------------------------------------- /projects/Speed_Game/windows/images/cc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/windows/images/cc.png -------------------------------------------------------------------------------- /projects/Speed_Game/windows/images/cd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/windows/images/cd.png -------------------------------------------------------------------------------- /projects/Speed_Game/windows/images/cf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/windows/images/cf.png -------------------------------------------------------------------------------- /projects/Speed_Game/windows/images/cg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/windows/images/cg.png -------------------------------------------------------------------------------- /projects/Speed_Game/windows/images/ch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/windows/images/ch.png -------------------------------------------------------------------------------- /projects/Speed_Game/windows/images/ci.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/windows/images/ci.png -------------------------------------------------------------------------------- /projects/Speed_Game/windows/images/ck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/windows/images/ck.png -------------------------------------------------------------------------------- /projects/Speed_Game/windows/images/cl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/windows/images/cl.png -------------------------------------------------------------------------------- /projects/Speed_Game/windows/images/cm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/windows/images/cm.png -------------------------------------------------------------------------------- /projects/Speed_Game/windows/images/cn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/windows/images/cn.png -------------------------------------------------------------------------------- /projects/Speed_Game/windows/images/co.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/windows/images/co.png -------------------------------------------------------------------------------- /projects/Speed_Game/windows/images/cr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/windows/images/cr.png -------------------------------------------------------------------------------- /projects/Speed_Game/windows/images/cu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/windows/images/cu.png -------------------------------------------------------------------------------- /projects/Speed_Game/windows/images/cv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/windows/images/cv.png -------------------------------------------------------------------------------- /projects/Speed_Game/windows/images/cw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/windows/images/cw.png -------------------------------------------------------------------------------- /projects/Speed_Game/windows/images/cx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/windows/images/cx.png -------------------------------------------------------------------------------- /projects/Speed_Game/windows/images/cy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/windows/images/cy.png -------------------------------------------------------------------------------- /projects/Speed_Game/windows/images/cz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/windows/images/cz.png -------------------------------------------------------------------------------- /projects/Speed_Game/windows/images/de.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/windows/images/de.png -------------------------------------------------------------------------------- /projects/Speed_Game/windows/images/dj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/windows/images/dj.png -------------------------------------------------------------------------------- /projects/Speed_Game/windows/images/dk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/windows/images/dk.png -------------------------------------------------------------------------------- /projects/Speed_Game/windows/images/dm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/windows/images/dm.png -------------------------------------------------------------------------------- /projects/Speed_Game/windows/images/do.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/windows/images/do.png -------------------------------------------------------------------------------- /projects/Speed_Game/windows/images/dz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/windows/images/dz.png -------------------------------------------------------------------------------- /projects/Speed_Game/windows/images/ec.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/windows/images/ec.png -------------------------------------------------------------------------------- /projects/Speed_Game/windows/images/ee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/windows/images/ee.png -------------------------------------------------------------------------------- /projects/Speed_Game/windows/images/eg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/windows/images/eg.png -------------------------------------------------------------------------------- /projects/Speed_Game/windows/images/eh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/windows/images/eh.png -------------------------------------------------------------------------------- /projects/Speed_Game/windows/images/er.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/windows/images/er.png -------------------------------------------------------------------------------- /projects/Speed_Game/windows/images/es.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/windows/images/es.png -------------------------------------------------------------------------------- /projects/Speed_Game/windows/images/et.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/windows/images/et.png -------------------------------------------------------------------------------- /projects/Speed_Game/windows/images/fi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/windows/images/fi.png -------------------------------------------------------------------------------- /projects/Speed_Game/windows/images/fj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/windows/images/fj.png -------------------------------------------------------------------------------- /projects/Speed_Game/windows/images/fk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/windows/images/fk.png -------------------------------------------------------------------------------- /projects/Speed_Game/windows/images/fm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/windows/images/fm.png -------------------------------------------------------------------------------- /projects/Speed_Game/windows/images/fo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/windows/images/fo.png -------------------------------------------------------------------------------- /projects/Speed_Game/windows/images/fr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/windows/images/fr.png -------------------------------------------------------------------------------- /projects/Speed_Game/windows/images/ga.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/windows/images/ga.png -------------------------------------------------------------------------------- /projects/Speed_Game/windows/images/gb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/windows/images/gb.png -------------------------------------------------------------------------------- /projects/Speed_Game/windows/images/gd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/windows/images/gd.png -------------------------------------------------------------------------------- /projects/Speed_Game/windows/images/ge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/windows/images/ge.png -------------------------------------------------------------------------------- /projects/Speed_Game/windows/images/gf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/windows/images/gf.png -------------------------------------------------------------------------------- /projects/Speed_Game/windows/images/gg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/windows/images/gg.png -------------------------------------------------------------------------------- /projects/Speed_Game/windows/images/gh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/windows/images/gh.png -------------------------------------------------------------------------------- /projects/Speed_Game/windows/images/gi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/windows/images/gi.png -------------------------------------------------------------------------------- /projects/Speed_Game/windows/images/gl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/windows/images/gl.png -------------------------------------------------------------------------------- /projects/Speed_Game/windows/images/gm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/windows/images/gm.png -------------------------------------------------------------------------------- /projects/Speed_Game/windows/images/gn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/windows/images/gn.png -------------------------------------------------------------------------------- /projects/Speed_Game/windows/images/gp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/windows/images/gp.png -------------------------------------------------------------------------------- /projects/Speed_Game/windows/images/gq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/windows/images/gq.png -------------------------------------------------------------------------------- /projects/Speed_Game/windows/images/gr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/windows/images/gr.png -------------------------------------------------------------------------------- /projects/Speed_Game/windows/images/gs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/windows/images/gs.png -------------------------------------------------------------------------------- /projects/Speed_Game/windows/images/gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/windows/images/gt.png -------------------------------------------------------------------------------- /projects/Speed_Game/windows/images/gu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/windows/images/gu.png -------------------------------------------------------------------------------- /projects/Speed_Game/windows/images/gw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/windows/images/gw.png -------------------------------------------------------------------------------- /projects/Speed_Game/windows/images/gy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/windows/images/gy.png -------------------------------------------------------------------------------- /projects/Speed_Game/windows/images/hk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/windows/images/hk.png -------------------------------------------------------------------------------- /projects/Speed_Game/windows/images/hm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/windows/images/hm.png -------------------------------------------------------------------------------- /projects/Speed_Game/windows/images/hn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/windows/images/hn.png -------------------------------------------------------------------------------- /projects/Speed_Game/windows/images/hr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/windows/images/hr.png -------------------------------------------------------------------------------- /projects/Speed_Game/windows/images/ht.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/windows/images/ht.png -------------------------------------------------------------------------------- /projects/Speed_Game/windows/images/hu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/windows/images/hu.png -------------------------------------------------------------------------------- /projects/Speed_Game/windows/images/id.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/windows/images/id.png -------------------------------------------------------------------------------- /projects/Speed_Game/windows/images/ie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/windows/images/ie.png -------------------------------------------------------------------------------- /projects/Speed_Game/windows/images/il.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/windows/images/il.png -------------------------------------------------------------------------------- /projects/Speed_Game/windows/images/im.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/windows/images/im.png -------------------------------------------------------------------------------- /projects/Speed_Game/windows/images/in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/windows/images/in.png -------------------------------------------------------------------------------- /projects/Speed_Game/windows/images/io.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/windows/images/io.png -------------------------------------------------------------------------------- /projects/Speed_Game/windows/images/iq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/windows/images/iq.png -------------------------------------------------------------------------------- /projects/Speed_Game/windows/images/ir.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/windows/images/ir.png -------------------------------------------------------------------------------- /projects/Speed_Game/windows/images/is.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/windows/images/is.png -------------------------------------------------------------------------------- /projects/Speed_Game/windows/images/it.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/windows/images/it.png -------------------------------------------------------------------------------- /projects/Speed_Game/windows/images/je.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/windows/images/je.png -------------------------------------------------------------------------------- /projects/Speed_Game/windows/images/jm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/windows/images/jm.png -------------------------------------------------------------------------------- /projects/Speed_Game/windows/images/jo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/windows/images/jo.png -------------------------------------------------------------------------------- /projects/Speed_Game/windows/images/jp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/windows/images/jp.png -------------------------------------------------------------------------------- /projects/Speed_Game/windows/images/ke.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/windows/images/ke.png -------------------------------------------------------------------------------- /projects/Speed_Game/windows/images/kg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/windows/images/kg.png -------------------------------------------------------------------------------- /projects/Speed_Game/windows/images/kh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/windows/images/kh.png -------------------------------------------------------------------------------- /projects/Speed_Game/windows/images/ki.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/windows/images/ki.png -------------------------------------------------------------------------------- /projects/Speed_Game/windows/images/km.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/windows/images/km.png -------------------------------------------------------------------------------- /projects/Speed_Game/windows/images/kn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/windows/images/kn.png -------------------------------------------------------------------------------- /projects/Speed_Game/windows/images/kp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/windows/images/kp.png -------------------------------------------------------------------------------- /projects/Speed_Game/windows/images/kr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/windows/images/kr.png -------------------------------------------------------------------------------- /projects/Speed_Game/windows/images/kw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/windows/images/kw.png -------------------------------------------------------------------------------- /projects/Speed_Game/windows/images/ky.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/windows/images/ky.png -------------------------------------------------------------------------------- /projects/Speed_Game/windows/images/kz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/windows/images/kz.png -------------------------------------------------------------------------------- /projects/Speed_Game/windows/images/la.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/windows/images/la.png -------------------------------------------------------------------------------- /projects/Speed_Game/windows/images/lb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/windows/images/lb.png -------------------------------------------------------------------------------- /projects/Speed_Game/windows/images/lc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/windows/images/lc.png -------------------------------------------------------------------------------- /projects/Speed_Game/windows/images/li.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/windows/images/li.png -------------------------------------------------------------------------------- /projects/Speed_Game/windows/images/lk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/windows/images/lk.png -------------------------------------------------------------------------------- /projects/Speed_Game/windows/images/lr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/windows/images/lr.png -------------------------------------------------------------------------------- /projects/Speed_Game/windows/images/ls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/windows/images/ls.png -------------------------------------------------------------------------------- /projects/Speed_Game/windows/images/lt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/windows/images/lt.png -------------------------------------------------------------------------------- /projects/Speed_Game/windows/images/lu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/windows/images/lu.png -------------------------------------------------------------------------------- /projects/Speed_Game/windows/images/lv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/windows/images/lv.png -------------------------------------------------------------------------------- /projects/Speed_Game/windows/images/ly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/windows/images/ly.png -------------------------------------------------------------------------------- /projects/Speed_Game/windows/images/ma.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/windows/images/ma.png -------------------------------------------------------------------------------- /projects/Speed_Game/windows/images/mc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/windows/images/mc.png -------------------------------------------------------------------------------- /projects/Speed_Game/windows/images/md.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/windows/images/md.png -------------------------------------------------------------------------------- /projects/Speed_Game/windows/images/me.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/windows/images/me.png -------------------------------------------------------------------------------- /projects/Speed_Game/windows/images/mf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/windows/images/mf.png -------------------------------------------------------------------------------- /projects/Speed_Game/windows/images/mg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/windows/images/mg.png -------------------------------------------------------------------------------- /projects/Speed_Game/windows/images/mh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/windows/images/mh.png -------------------------------------------------------------------------------- /projects/Speed_Game/windows/images/mk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/windows/images/mk.png -------------------------------------------------------------------------------- /projects/Speed_Game/windows/images/ml.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/windows/images/ml.png -------------------------------------------------------------------------------- /projects/Speed_Game/windows/images/mm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/windows/images/mm.png -------------------------------------------------------------------------------- /projects/Speed_Game/windows/images/mn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/windows/images/mn.png -------------------------------------------------------------------------------- /projects/Speed_Game/windows/images/mo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/windows/images/mo.png -------------------------------------------------------------------------------- /projects/Speed_Game/windows/images/mp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/windows/images/mp.png -------------------------------------------------------------------------------- /projects/Speed_Game/windows/images/mq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/windows/images/mq.png -------------------------------------------------------------------------------- /projects/Speed_Game/windows/images/mr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/windows/images/mr.png -------------------------------------------------------------------------------- /projects/Speed_Game/windows/images/ms.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/windows/images/ms.png -------------------------------------------------------------------------------- /projects/Speed_Game/windows/images/mt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/windows/images/mt.png -------------------------------------------------------------------------------- /projects/Speed_Game/windows/images/mu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/windows/images/mu.png -------------------------------------------------------------------------------- /projects/Speed_Game/windows/images/mv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/windows/images/mv.png -------------------------------------------------------------------------------- /projects/Speed_Game/windows/images/mw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/windows/images/mw.png -------------------------------------------------------------------------------- /projects/Speed_Game/windows/images/mx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/windows/images/mx.png -------------------------------------------------------------------------------- /projects/Speed_Game/windows/images/my.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/windows/images/my.png -------------------------------------------------------------------------------- /projects/Speed_Game/windows/images/mz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/windows/images/mz.png -------------------------------------------------------------------------------- /projects/Speed_Game/windows/images/na.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/windows/images/na.png -------------------------------------------------------------------------------- /projects/Speed_Game/windows/images/nc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/windows/images/nc.png -------------------------------------------------------------------------------- /projects/Speed_Game/windows/images/ne.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/windows/images/ne.png -------------------------------------------------------------------------------- /projects/Speed_Game/windows/images/nf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/windows/images/nf.png -------------------------------------------------------------------------------- /projects/Speed_Game/windows/images/ng.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/windows/images/ng.png -------------------------------------------------------------------------------- /projects/Speed_Game/windows/images/ni.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/windows/images/ni.png -------------------------------------------------------------------------------- /projects/Speed_Game/windows/images/nl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/windows/images/nl.png -------------------------------------------------------------------------------- /projects/Speed_Game/windows/images/no.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/windows/images/no.png -------------------------------------------------------------------------------- /projects/Speed_Game/windows/images/np.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/windows/images/np.png -------------------------------------------------------------------------------- /projects/Speed_Game/windows/images/nr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/windows/images/nr.png -------------------------------------------------------------------------------- /projects/Speed_Game/windows/images/nu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/windows/images/nu.png -------------------------------------------------------------------------------- /projects/Speed_Game/windows/images/nz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/windows/images/nz.png -------------------------------------------------------------------------------- /projects/Speed_Game/windows/images/om.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/windows/images/om.png -------------------------------------------------------------------------------- /projects/Speed_Game/windows/images/pa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/windows/images/pa.png -------------------------------------------------------------------------------- /projects/Speed_Game/windows/images/pe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/windows/images/pe.png -------------------------------------------------------------------------------- /projects/Speed_Game/windows/images/pf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/windows/images/pf.png -------------------------------------------------------------------------------- /projects/Speed_Game/windows/images/pg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/windows/images/pg.png -------------------------------------------------------------------------------- /projects/Speed_Game/windows/images/ph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/windows/images/ph.png -------------------------------------------------------------------------------- /projects/Speed_Game/windows/images/pk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/windows/images/pk.png -------------------------------------------------------------------------------- /projects/Speed_Game/windows/images/pl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/windows/images/pl.png -------------------------------------------------------------------------------- /projects/Speed_Game/windows/wrong.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Speed_Game/windows/wrong.png -------------------------------------------------------------------------------- /projects/Split_File/requirements.txt: -------------------------------------------------------------------------------- 1 | pandas==1.1.0 2 | -------------------------------------------------------------------------------- /projects/Split_a_video_file_by_given_time_period/requirements.txt: -------------------------------------------------------------------------------- 1 | ffmpeg==1.4 2 | -------------------------------------------------------------------------------- /projects/Split_folder_into_subfolders/Readme.md: -------------------------------------------------------------------------------- 1 | ## Split folder into subfolders 2 | 3 | ### Execute 4 | python 5 | -------------------------------------------------------------------------------- /projects/Store_emails_in_csv/credentials.txt: -------------------------------------------------------------------------------- 1 | yourEmailID 2 | yourPassword -------------------------------------------------------------------------------- /projects/Store_emails_in_csv/requirements.txt: -------------------------------------------------------------------------------- 1 | beautifulsoup4 2 | lxml 3 | -------------------------------------------------------------------------------- /projects/String_search_from_multiple_files/files/file1.txt: -------------------------------------------------------------------------------- 1 | this is file one 2 | this is file one this is file one this is file one this is file one this is file one this is file one -------------------------------------------------------------------------------- /projects/String_search_from_multiple_files/files/file2.txt: -------------------------------------------------------------------------------- 1 | this is file two -------------------------------------------------------------------------------- /projects/String_search_from_multiple_files/files/file3.txt: -------------------------------------------------------------------------------- 1 | this is file three -------------------------------------------------------------------------------- /projects/String_search_from_multiple_files/files/folder1/hello.txt: -------------------------------------------------------------------------------- 1 | this is hello world -------------------------------------------------------------------------------- /projects/String_search_from_multiple_files/files/folder1/python.txt: -------------------------------------------------------------------------------- 1 | this is python file 2 | learn python -------------------------------------------------------------------------------- /projects/Terminal_progress_bar_with_images_resizing/requirements.txt: -------------------------------------------------------------------------------- 1 | tqdm==4.48.2 2 | PIL==1.1.6 3 | -------------------------------------------------------------------------------- /projects/Text_to_speech/requirements.txt: -------------------------------------------------------------------------------- 1 | gTTS==2.1.1 2 | -------------------------------------------------------------------------------- /projects/Text_to_speech/voice.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Text_to_speech/voice.mp3 -------------------------------------------------------------------------------- /projects/Textfile_analysis/README.md: -------------------------------------------------------------------------------- 1 | # Textfile analysis 2 | ##### Execute 3 | `python textfile_analysis.py ` 4 | -------------------------------------------------------------------------------- /projects/Tic_tac_toe_with_ai/.replit: -------------------------------------------------------------------------------- 1 | language = "python3" 2 | run = "python tic-tac-toe-AI.py" 3 | -------------------------------------------------------------------------------- /projects/Todo_app/requirements.txt: -------------------------------------------------------------------------------- 1 | Flask==1.1.2 2 | Flask-SQLAlchemy==2.4.4 3 | -------------------------------------------------------------------------------- /projects/Todo_app/static/css/style.css: -------------------------------------------------------------------------------- 1 | body { 2 | margin: 0; 3 | padding: 0; 4 | } -------------------------------------------------------------------------------- /projects/Todo_app/test.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/Todo_app/test.db -------------------------------------------------------------------------------- /projects/Unique_words_in_a_file/README.md: -------------------------------------------------------------------------------- 1 | # Unique words in text file 2 | Script to display unique words in a given text file. 3 | -------------------------------------------------------------------------------- /projects/Web_scraping_a_youtube_comment/requirements.txt: -------------------------------------------------------------------------------- 1 | selenium==3.141.0 2 | -------------------------------------------------------------------------------- /projects/capture_screenshot/requirements.txt: -------------------------------------------------------------------------------- 1 | PyAutoGUI==0.9.50 2 | -------------------------------------------------------------------------------- /projects/chatbot/requirements.txt: -------------------------------------------------------------------------------- 1 | wechaty -------------------------------------------------------------------------------- /projects/cli_proxy_tester/requirements.txt: -------------------------------------------------------------------------------- 1 | click==7.1.2 2 | proxytest==0.5.4 3 | pandas==1.0.5 4 | -------------------------------------------------------------------------------- /projects/convert_Imgs/JPGtoPNG.py: -------------------------------------------------------------------------------- 1 | from PIL import Image 2 | 3 | im = Image.open("naruto_first.jpg").convert("RGB") 4 | im.save("naruto.png", "png") 5 | -------------------------------------------------------------------------------- /projects/convert_Imgs/PNGtoJPG.py: -------------------------------------------------------------------------------- 1 | from PIL import Image 2 | 3 | im = Image.open("naruto_first.png").convert("RGB") 4 | im.save("naruto.jpg", "jpeg") 5 | -------------------------------------------------------------------------------- /projects/convert_Imgs/naruto_first.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/convert_Imgs/naruto_first.jpg -------------------------------------------------------------------------------- /projects/convert_Imgs/naruto_first.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/convert_Imgs/naruto_first.png -------------------------------------------------------------------------------- /projects/convert_Imgs/naruto_last.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/convert_Imgs/naruto_last.jpg -------------------------------------------------------------------------------- /projects/convert_Imgs/naruto_last.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/convert_Imgs/naruto_last.png -------------------------------------------------------------------------------- /projects/convert_Imgs/requirements.txt: -------------------------------------------------------------------------------- 1 | PIL==1.1.6 2 | -------------------------------------------------------------------------------- /projects/convert_png_images_to_ico_format/requirements.txt: -------------------------------------------------------------------------------- 1 | Pillow==7.2.0 -------------------------------------------------------------------------------- /projects/detect_align_faces/example.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/detect_align_faces/example.jpg -------------------------------------------------------------------------------- /projects/detect_align_faces/requirements.txt: -------------------------------------------------------------------------------- 1 | dlib==19.22.1 2 | numpy==1.21.2 3 | opencv-python==4.5.3.56 4 | -------------------------------------------------------------------------------- /projects/dork_search_google/requirements.txt: -------------------------------------------------------------------------------- 1 | google 2 | requests 3 | -------------------------------------------------------------------------------- /projects/download GeeksForGeeks articles/requirements.txt: -------------------------------------------------------------------------------- 1 | requests==2.24.0 2 | selenium==3.141.0 3 | webdriver-manager==3.2.2 -------------------------------------------------------------------------------- /projects/racing_barchart_animation/requirements.txt: -------------------------------------------------------------------------------- 1 | jupyterlab==2.2.2 2 | matplotlib==3.3.0 3 | notebook==6.1.1 4 | numpy==1.19.1 5 | pandas==1.1.0 6 | requests==2.24.0 7 | -------------------------------------------------------------------------------- /projects/steganography/example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-World/python-mini-projects/e0cfd4b0fe5e0bb4d443daba594e83332d5fb720/projects/steganography/example.png -------------------------------------------------------------------------------- /projects/steganography/requirements.txt: -------------------------------------------------------------------------------- 1 | numpy==1.21.2 2 | opencv-python==4.5.3.56 3 | -------------------------------------------------------------------------------- /projects/telegram_bot/requirements.txt: -------------------------------------------------------------------------------- 1 | python-telegram-bot -------------------------------------------------------------------------------- /projects/whatsapp_Bot/requirements.txt: -------------------------------------------------------------------------------- 1 | pywhatkit 2 | --------------------------------------------------------------------------------