diff --git a/README-zh_CN.md b/README-zh_CN.md
new file mode 100644
index 000000000..99cb0e680
--- /dev/null
+++ b/README-zh_CN.md
@@ -0,0 +1,199 @@
+
+[](https://forthebadge.com)
+[](https://forthebadge.com)
+[](https://forthebadge.com)
+[](https://forthebadge.com)
+
+简体中文 | [English](./README.md)
+
+# Python-Mini-Projects
+
+[](#contributors-)
+
+
+
+
+
+
+一组简单的python迷你项目,可以增强你的python技能。
+
+如果你想学习Python,查看 [这里](https://github.com/Python-World/PythonScript)
+
+如果你是Github和开源的新手,查看 [这里](https://towardsdatascience.com/getting-started-with-git-and-github-6fcd0f2d4ac6)
+
+## Follow的步骤
+
+- 选择一个 issue 并将请求分配给它。
+- 检查 [projects](/projects/) 目录里现有的文件。
+- 给仓库点一个 **Star**
+- 在 [python-mini-projects](https://github.com/Python-World/python-mini-projects) 仓库页面点击 **Fork** 按钮。
+
+- **Clone** 克隆你复制的仓库到本地,此按钮将你的URL地址。
+
+
+ 举例来说,在你的控制台运行下面的命令:
+
+ ```bash
+ git clone https://github.com//python-mini-projects.git
+ ```
+
+ **替换成 \<你自己的github名称\>!**
+
+ 学习更多关于 [分支](https://help.github.com/en/github/getting-started-with-github/fork-a-repo) and [克隆项目](https://docs.github.com/en/github/creating-cloning-and-archiving-repositories/cloning-a-repository)的知识。
+- 提交任何修改之前, [确保你的分支是同步的](https://www.freecodecamp.org/news/how-to-sync-your-fork-with-the-original-git-repository/) ,以避免冲突。
+
+ ```bash
+ git remote add upstream https://github.com/Python-World/python-mini-projects.git
+ git fetch upstream
+ git pull upstream master
+ git push
+ ```
+
+ 或者,GitHub现在也提供了同步的方式 - 点击你仓库顶部 "Code" 按钮下面的 "Fetch upstream"
+
+- 如果你陷入了 **合并冲突**,你需要解决这些冲突。有很多在线的参考指南,或者你可以试下这个[opensource.com](https://opensource.com/article/20/4/git-merge-conflict)。
+
+- 检查你的开发分支 (*根据你的issue进行分支命名*).
+
+ ```bash
+ git checkout -b
+ ```
+
+- 根据issue的名称在
+ [projects目录](https://github.com/Python-World/python-mini-projects/tree/master/projects)
+ 下创建一个文件夹。
+- 在本地编写代码并将其添加到projects目录中相应的文件夹中。
+- 不要忘记在你的文件夹中添加 `README.md` 文件,你应该根据
+ [README_TEMPLATE.](https://github.com/Python-World/python-mini-projects/blob/master/README_TEMPLATE.md)进行编写。
+- 使用 `git add`, `git commit` 提交代码 (如果可以的话,[写一个清晰的提交信息](https://chris.beams.io/posts/git-commit/)):
+
+ ```bash
+ git add -A
+ git commit -m ""
+ ```
+
+- 把你的代码推到你的仓库。
+
+ ```bash
+ git push origin
+ ```
+
+- 到你fork的仓库页面点击 **make a pull request**:
+
+ 
+
+ 在 [GitHub帮助页面](https://help.github.com/en/github/collaborating-with-issues-and-pull-requests/creating-a-pull-request)学习更多关于请求合并的内容。
+- 现在,等待我们其中的一个人 *审查你的提交*!如果有冲突的话,你会收到通知信息。
+
+## README 脚本模板
+
+[README 模板](https://github.com/Python-World/python-mini-projects/blob/master/README_TEMPLATE.md)
+
+## 在社交媒体上联系
+
+[加入 WhatsApp 小组](https://chat.whatsapp.com/Ghp25kidWLaGrAVA0G0GAa)
+
+## 贡献者 ✨
+
+序号 | 项目 | 作者
+--- | --- | ---
+1 | [Hello World](https://github.com/Python-World/python-mini-projects/tree/master/projects/Hello) | [Ravi Chavare](https://github.com/chavarera)
+2 | [JSON 转 CSV](https://github.com/Python-World/python-mini-projects/tree/master/projects/Convert_JSON_to_CSV)| [Murilo Pagliuso](https://github.com/DarkCeptor44)
+3 | [生成随机密码](https://github.com/Python-World/python-mini-projects/tree/master/projects/Random_password_generator) | [Mitesh](https://github.com/Mitesh2499)
+4 | [摘取 Instagram 概要信息](https://github.com/Python-World/python-mini-projects/tree/master/projects/Instagram_profile) | [Ravi Chavare](https://github.com/chavarera)
+5 | [文件中检索字符串](https://github.com/Python-World/python-mini-projects/tree/master/projects/String_search_from_multiple_files) | [Mitesh](https://github.com/Mitesh2499)
+6 | [获取网页链接](https://github.com/Python-World/python-mini-projects/tree/master/projects/All_links_from_given_webpage) | [Mitesh](https://github.com/Mitesh2499) & [Michael Mba](https://github.com/mikeysan)
+7 | [使用 Flask 构建一个应用](https://github.com/Python-World/python-mini-projects/tree/master/projects/Todo_app) | [Mitesh](https://github.com/Mitesh2499)
+8 | [给图片添加水印](https://github.com/Python-World/python-mini-projects/tree/master/projects/Image_watermark) | [Mitesh](https://github.com/Mitesh2499)
+9 | [使用 Django 做一个意愿清单应用](https://github.com/Python-World/python-mini-projects/tree/master/projects/WishList) | [Ravi Chavare](https://github.com/chavarera)
+10 | [将文件夹拆分为子文件夹](https://github.com/Python-World/python-mini-projects/tree/master/projects/Split_folder_into_subfolders) | [Ravi Chavare](https://github.com/chavarera)
+11 | [批量下载图片](https://github.com/Python-World/python-mini-projects/tree/master/projects/Download_images_from_website) | [Mitesh](https://github.com/Mitesh2499)
+12 | [从文件中提取一个随机字](https://github.com/Python-World/python-mini-projects/tree/master/projects/Random_word_from_list) | [Ravi Chavare](https://github.com/chavarera)
+13 | [电量提醒](https://github.com/Python-World/python-mini-projects/tree/master/projects/Battery_notification) | [Mitesh](https://github.com/Mitesh2499)
+14 | [计算年龄](https://github.com/Python-World/python-mini-projects/tree/master/projects/Calculate_age) | [Gaodong](https://github.com/xlgd)
+15 | [文件分析](https://github.com/Python-World/python-mini-projects/tree/master/projects/Textfile_analysis) | [m044de](https://github.com/m044de/)
+16 | [代码转化为代码图片](https://github.com/Python-World/python-mini-projects/tree/master/projects/Py_carbon_clips) | [ravi chavare](https://github.com/Python-World/)
+17 | [组织文件系统](https://github.com/Python-World/python-mini-projects/tree/master/projects/Organized_download_folder_with_different_categories) | [Mitesh](https://github.com/Mitesh2499)
+18 | [发送邮件](https://github.com/Python-World/python-mini-projects/tree/master/projects/Send_email_from_csv) | [Mitesh](https://github.com/Mitesh2499)
+19 | [获取网站的IP地址和主机名](https://github.com/Python-World/python-mini-projects/tree/master/projects/Find_out_hostname_and_ip_address) | [Nuh Mohammed](https://github.com/NuhMohammed)|
+20 | [使用tqdm进度条](https://github.com/Python-World/python-mini-projects/tree/master/projects/Terminal_progress_bar_with_images_resizing) | [Mitesh](https://github.com/Mitesh2499)
+21 | [获取图片元信息](https://github.com/Python-World/python-mini-projects/tree/master/projects/Get_meta_information_of_images) | [Gaodong](https://github.com/xlgd)
+22 | [从视频中捕获帧](https://github.com/Python-World/python-mini-projects/tree/master/projects/Capture_Video_Frames) | [phileinSophos](https://github.com/phileinSophos/)
+23 | [获取连接的wifi密码](https://github.com/Python-World/python-mini-projects/tree/master/projects/Get_wifi_password) | [Mitesh](https://github.com/Mitesh2499)
+24 | [保存网页截图](https://github.com/Python-World/python-mini-projects/tree/master/projects/Snapshot_of_given_website) | [m044de](https://github.com/m044de/)
+25 | [使用行数分割文件](https://github.com/Python-World/python-mini-projects/tree/master/projects/Split_File) | [phileinSophos](https://github.com/phileinSophos/)
+26 | [文件加密解密](https://github.com/Python-World/python-mini-projects/tree/master/projects/Encrypt_and_decrypt_text) | [Gaodong](https://github.com/xlgd)
+27 | [在规定的时间间隔捕获截图](https://github.com/Python-World/python-mini-projects/tree/master/projects/capture_screenshot) | [d33pc](https://github.com/d33pc/)
+28 | [创建一个hash密码](https://github.com/Python-World/python-mini-projects/tree/master/projects/Hashing_passwords) | [m044de](https://github.com/m044de/)
+29 | [文件和文件夹加密](https://github.com/Python-World/python-mini-projects/tree/master/projects/Create_a_script_to_encrypt_files_and_folder) | [Gaodong](https://github.com/xlgd)
+30 | [十进制和二进制转换](https://github.com/Python-World/python-mini-projects/tree/master/projects/Decimal_to_binary_convertor_and_vice_versa) | [Alan Anaya](https://github.com/alananayaa/)
+31 | [简单的Todo应用程序与命令行界面](https://github.com/Python-World/python-mini-projects/tree/master/projects/Cli_todo) | [Audrey Yang](https://github.com/audrey-yang)
+32 | [货币兑换应用](https://github.com/Python-World/python-mini-projects/tree/master/projects/Currency_converter) | [github-of-wone](https://github.com/github-of-wone/)
+33 | [秒表应用](https://github.com/Python-World/python-mini-projects/tree/master/projects/Create_a_simple_stopwatch) | [Gaodong](https://github.com/xlgd)
+34 | [代理测试](https://github.com/Python-World/python-mini-projects/tree/master/projects/cli_proxy_tester) | [Ingo Kleiber](https://github.com/IngoKl)
+35 | [将XML文件转成JSON文件](https://github.com/Python-World/python-mini-projects/tree/master/projects/Convert_XML_to_JSON) | [John Kirtley](https://github.com/johnkirtley)
+36 | [压缩文件和文件夹](https://github.com/Python-World/python-mini-projects/tree/master/projects/Write_script_to_compress_folder_and_files) | [Gaodong](https://github.com/xlgd)
+37 | [查看IMDB电影评级](https://github.com/Python-World/python-mini-projects/tree/master/projects/Find_imdb_rating) | [ShivSt](https://github.com/ShivSt)
+38 | [将字典转换为python对象](https://github.com/Python-World/python-mini-projects/tree/master/projects/convert_dictionary_to_python_object) | [Varun-22](https://github.com/Varun-22)
+39 | [移动文件到按字母顺序排列的文件夹](https://github.com/Python-World/python-mini-projects/tree/master/projects/Write_script_to_move_files_into_alphabetically_ordered_folder) | [Chathura Nimesh](https://github.com/kana800/)
+40 | [抓取Youtube视频评论](https://github.com/Python-World/python-mini-projects/tree/master/projects/Web_scraping_a_youtube_comment) | [Saicharan67](https://github.com/Saicharan67)
+41 | [网站摘要](https://github.com/Python-World/python-mini-projects/tree/master/projects/Web_page_summation) | [Believe Ohiozua](https://github.com/believeohiozua)
+42 | [文本转换成到语音(mp3)](https://github.com/Python-World/python-mini-projects/tree/master/projects/Text_to_speech) | [Sergej Dikun](https://github.com/Serhazor)
+43 | [图片格式转换](https://github.com/Python-World/python-mini-projects/tree/master/projects/convert_Imgs) | [Ramon Ferreira](https://github.com/ramonfsk)
+44 | [随机保存wikipedia文章](https://github.com/Python-World/python-mini-projects/tree/master/projects/Random_Wikipedia_Article) | [Rakshit Puri](https://github.com/skate1512)
+45 | [检查网络连接](https://github.com/Python-World/python-mini-projects/tree/master/projects/Check_website_connectivity) | [Shiv Thakur](https://github.com/ShivSt)
+46 | [获取城市天气信息](https://github.com/Python-World/python-mini-projects/tree/master/projects/Fetch_current_weather) | [Kushal Agrawal](https://github.com/kushal98)
+47 | [计算器](https://github.com/Python-World/python-mini-projects/tree/master/projects/Create_calculator_app) | [Gaodong](https://github.com/xlgd)
+48 | [合并Csv文件](https://github.com/Python-World/python-mini-projects/tree/master/projects/Merge_csv_files) | [Kushal Agrawal](https://github.com/kushal98)
+49 | [获取推特信息并保存在csv](https://github.com/Python-World/python-mini-projects/tree/master/projects/Fetch_and_store_tweets) | [Kushal Agrawal](https://github.com/kushal98)
+50 | [使用谷歌翻译进行翻译](https://github.com/Python-World/python-mini-projects/tree/master/projects/Language_translator) | [Ashiqur Rahman Tusher](https://github.com/ashikurt77)
+51 | [使用时间段分割视频](https://github.com/Python-World/python-mini-projects/tree/master/projects/Split_a_video_file_by_given_time_period) | [Chathura Nimesh](https://github.com/kana800/)
+52 | [从文件中获取唯一的单词](https://github.com/Python-World/python-mini-projects/tree/master/projects/Unique_words_in_a_file) | [Rakshit Puri](https://github.com/skate1512)
+53 | [语音-文本转换器](https://github.com/Python-World/python-mini-projects/tree/master/projects/Speech_to_text) | [Paulo Henrique](https://github.com/Python-World/python-mini-projects/tree/master/projects/Speech_to_text)
+54 | [设置随机壁纸](https://github.com/Python-World/python-mini-projects/tree/master/projects/Write_a_script_to_download_a_random_image_from_unsplash_and_set_it_as_wallpaper) | [Chathura Nimesh](https://github.com/kana800/)
+55 | [获取图片主要色彩](https://github.com/Python-World/python-mini-projects/tree/master/projects/Dominant_color) | [Mitesh](https://github.com/Mitesh2499)
+56 | [字符艺术](https://github.com/Python-World/python-mini-projects/tree/master/projects/Ascii_art) | [Shiny Akash](https://github.com/Shiny-Akash)
+57 | [合并Pdf文件](https://github.com/Python-World/python-mini-projects/tree/master/projects/Merge_pdfs) | [ShivSt](https://github.com/ShivSt)
+58 | [获取开放端口](https://github.com/Python-World/python-mini-projects/tree/master/projects/Fetch_open_ports) | [Kushal Agrawal](https://github.com/kushal98)
+59 | [数字转为文字](https://github.com/Python-World/python-mini-projects/tree/master/projects/Convert_numbers_to_word) | [Niraj Shrestha](https://github.com/CrestNiraj12)
+60 | [系统重启](https://github.com/Python-World/python-mini-projects/tree/master/projects/Shutdown_or_restart_your_device) | [Phillibob55](https://github.com/Phillibob55)
+61 | [使用tkinter实现的数字时钟](https://github.com/Python-World/python-mini-projects/tree/master/projects/Digital_clock) | [Aditya Jetely](https://github.com/adityaj7)
+62 | [图片转Pdf](https://github.com/Python-World/python-mini-projects/tree/master/projects/Convert_a_image_to_pdf) | [Gaodong](https://github.com/xlgd)
+63 | [将电子邮件保存为csv文件](https://github.com/Python-World/python-mini-projects/tree/master/projects/Store_emails_in_csv) | [Shiv Thakur](https://github.com/ShivSt)
+64 | [测试网络连接](https://github.com/Python-World/python-mini-projects/tree/master/projects/Internet_connection_check) | [Jacob Ogle](https://github.com/Jakeogle94)
+65 | [XKCD漫画下载](https://github.com/Python-World/python-mini-projects/tree/master/projects/XKCD_downloader)| [Aditya Jetely](https://github.com/AdityaJ7)
+66 | [网站拦截和解除拦截](https://github.com/Python-World/python-mini-projects/tree/master/projects/Website_blocker)| [Phillibob55](https://github.com/Phillibob55)
+67 | [ 获取域名Dns记录](https://github.com/Python-World/python-mini-projects/tree/master/projects/Dns_record)| [Aditya Jetely](https://github.com/AdityaJ7)
+68 | [Python自动绘制](https://github.com/Python-World/python-mini-projects/tree/master/projects/Python_auto_draw)| [Tushar Nankani](https://github.com/tusharnankani)
+69 | [新闻网站爬虫](https://github.com/Python-World/python-mini-projects/tree/master/projects/News_website_scraper)| [pratik-choudhari](https://github.com/pratik-choudhari)
+70 | [石头剪刀布游戏](https://github.com/Python-World/python-mini-projects/tree/master/projects/RockPaperScissors_Game)| [Tushar Nankani](https://github.com/tusharnankani)
+71 | [Zip文件解压](https://github.com/Python-World/python-mini-projects/tree/master/projects/Extract_zip_files)| [Aditya Jetely](https://github.com/AdityaJ7)
+72 | [生成随机密码](https://github.com/Python-World/python-mini-projects/blob/master/projects/Random_password_generator)| [Tushar Nankani](https://github.com/tusharnankani)
+73 | [地理编码脚本](https://github.com/Python-World/python-mini-projects/tree/master/projects/Geocoding)| [Aditya Jetely](https://github.com/AdityaJ7)
+74 | [Python代码转化为图片](https://github.com/Python-World/python-mini-projects/tree/master/projects/Py_carbon_clips)| [Ravishankar Chavare](https://github.com/chavarera)
+75 | [二维码生成器](https://github.com/Python-World/python-mini-projects/tree/master/projects/Qr_code_generator)| [Shiv Thakur](https://github.com/ShivSt)
+76 | [递归密码生成器](https://github.com/Python-World/python-mini-projects/tree/master/projects/Recursive_password_generator)| [Erfan Saberi](https://github.com/erfansaberi)
+77 | [井字游戏](https://github.com/Python-World/python-mini-projects/tree/master/projects/Tic_tac_toe)| [Erfan Saberi](https://github.com/erfansaberi)
+78 | [用人工智能玩井字游戏](https://github.com/Python-World/python-mini-projects/tree/master/projects/Tic_tac_toe_with_ai)| [Tushar Nankani](https://github.com/tusharnankani)
+79 | [图片漫画化](https://github.com/Python-World/python-mini-projects/tree/master/projects/Easy_cartoonify)| [Bartu Yaman](https://github.com/brtymn)
+80 | [Quote Scrapper](https://github.com/Python-World/python-mini-projects/tree/master/projects/Scrape_quotes)| [Anandha Krishnan Aji](https://github.com/anandhakrishnanaji)
+81 | [获取网站加载时间](https://github.com/Python-World/python-mini-projects/tree/master/projects/Time_to_load_website)| [Aditya Jetely](https://github.com/AdityaJ7)
+82 | [客户贷款还款预测](https://github.com/Python-World/python-mini-projects/tree/master/Notebooks/Customer_loan_repayment_problem)| [ART](https://github.com/Tomyzon1728)
+83 | [根据维基百科文章生成词云](https://github.com/Python-World/python-mini-projects/tree/master/projects/Wikipedia_search_wordcloud)| [Naman Shah](https://github.com/namanshah01)
+84 | [猜数游戏](https://github.com/Python-World/python-mini-projects/tree/master/projects/Number_guessing_game)| [Javokhirbek](https://github.com/leader2one)
+85 | [将JPEG转换为PNG](https://github.com/Python-World/python-mini-projects/tree/master/projects/Convert_JPEG_to_PNG)| [AnuragGupta](https://github.com/AnuragGupta806)
+86 | [电影信息爬虫](https://github.com/Python-World/python-mini-projects/tree/master/projects/Movie_Information_Scraper)| [Anandha Krishnan Aji](https://github.com/anandhakrishnanaji)
+87 | [获取HTTP状态码](https://github.com/Python-World/python-mini-projects/tree/master/projects/Fetch_HTTP_status_code)| [AkshataJ96](https://github.com/AkshataJ96)
+88 | [检查是否闰年](https://github.com/Python-World/python-mini-projects/tree/master/projects/Leap_Year_Checker)| [Hariom Vyas](https://github.com/Hariom1509)
+89 | [爬取Medium上的文章](https://github.com/Python-World/python-mini-projects/tree/master/projects/Scraping_Medium_Articles)| [Naman Shah](https://github.com/namanshah01)
+90 | [HackerNews网站爬虫](https://github.com/Python-World/python-mini-projects/tree/master/projects/Scrape_Hacker_News)| [Javokhirbek](https://github.com/leader2one)
+91 | [裁剪图像大小](https://github.com/Python-World/python-mini-projects/tree/master/projects/Reduce_image_file_size)| [Vipul Verma](https://github.com/VIPverma01)
+92 | [简易视频播放器](https://github.com/Python-World/python-mini-projects/tree/master/projects/EasyVideoPlayer)| [Bartu Yaman](https://github.com/brtymn)
+93 | [GeeksforGeeks网站文章下载](https://github.com/Python-World/python-mini-projects/tree/master/projects/Download_GeeksForGeeks_articles)| [Shiv Thakur](https://github.com/ShivSt)
+94 | [PDF转Text文本](https://github.com/Python-World/python-mini-projects/tree/master/projects/Convert_pdf_to_text)| [pi1814](https://github.com/pi1814)
+95 | [非结构化补充数据业务](https://github.com/Python-World/python-mini-projects/tree/master/projects/Unstructured_Supplemenrary_Service_Data)| [ART](https://github.com/Tomyzon1728)
+96 | [删除重复文件](https://github.com/Python-World/python-mini-projects/tree/master/Duplicate_files_remover)| [Anandha Krishnan Aji](https://github.com/anandhakrishnanaji)
+97 | [PNG转成ICO](https://github.com/Python-World/python-mini-projects/tree/master/projects/convert_png_images_to_ico_format)| [weicheansoo](https://github.com/weicheansoo)
+98 | [查看IMDB电影评级](https://github.com/Python-World/python-mini-projects/tree/master/projects/Find_imdb_rating)| [Utkarsh Bajaj](https://github.com/utkarshbajaj)
+99 | [终端玩猜字游戏](https://github.com/Python-World/python-mini-projects/tree/master/projects/Terminal_Based_Hangman_Game)| [neohboonyee99](https://github.com/neohboonyee99)
+100 | [Whatsapp机器人](https://github.com/Python-World/python-mini-projects/tree/master/projects/whatsapp_Bot)| [urmil89](https://github.com/urmil89)
diff --git a/README.md b/README.md
index 00310f794..a366f4f88 100644
--- a/README.md
+++ b/README.md
@@ -4,6 +4,8 @@
[](https://forthebadge.com)
[](https://forthebadge.com)
+English | [简体中文](./README-zh_CN.md)
+
# Python-Mini-Projects
[](#contributors-)
@@ -147,7 +149,7 @@ SR No | Project | Author
50 | [Language Translator using googletrans](https://github.com/Python-World/python-mini-projects/tree/master/projects/Language_translator) | [Ashiqur Rahman Tusher](https://github.com/ashikurt77)
51 | [Split video using timeperiod](https://github.com/Python-World/python-mini-projects/tree/master/projects/Split_a_video_file_by_given_time_period) | [Chathura Nimesh](https://github.com/kana800/)
52 | [Fetch unique words from file](https://github.com/Python-World/python-mini-projects/tree/master/projects/Unique_words_in_a_file) | [Rakshit Puri](https://github.com/skate1512)
-53 | [Speech to text converter](https://github.com/Python-World/python-mini-projects/tree/master/projects/Speech_to_text) | [Paulo Henrique](https://github.com/Python-World/python-mini-projects/tree/master/projects/Speech%20to%20text)
+53 | [Speech to text converter](https://github.com/Python-World/python-mini-projects/tree/master/projects/Speech_to_text) | [Paulo Henrique](https://github.com/Python-World/python-mini-projects/tree/master/projects/Speech_to_text)
54 | [Set Random Wallpaper](https://github.com/Python-World/python-mini-projects/tree/master/projects/Write_a_script_to_download_a_random_image_from_unsplash_and_set_it_as_wallpaper) | [Chathura Nimesh](https://github.com/kana800/)
55 | [Find Dominant color from image](https://github.com/Python-World/python-mini-projects/tree/master/projects/Dominant_color) | [Mitesh](https://github.com/Mitesh2499)
56 | [Ascii art](https://github.com/Python-World/python-mini-projects/tree/master/projects/Ascii_art) | [Shiny Akash](https://github.com/Shiny-Akash)
@@ -155,44 +157,43 @@ SR No | Project | Author
58 | [Fetch Open Port](https://github.com/Python-World/python-mini-projects/tree/master/projects/Fetch_open_ports) | [Kushal Agrawal](https://github.com/kushal98)
59 | [Convert Numbers To Words](https://github.com/Python-World/python-mini-projects/tree/master/projects/Convert_numbers_to_word) | [Niraj Shrestha](https://github.com/CrestNiraj12)
60 | [Restart and Shutdown System](https://github.com/Python-World/python-mini-projects/tree/master/projects/Shutdown_or_restart_your_device) | [Phillibob55](https://github.com/Phillibob55)
-61 | [Check website connectivity](https://github.com/Python-World/python-mini-projects/tree/master/projects/Check_website_connectivity) | [Shiv Thakur](https://github.com/ShivSt)
-62 | [Digital clock using tkinter](https://github.com/Python-World/python-mini-projects/tree/master/projects/Digital_clock) | [Aditya Jetely](https://github.com/adityaj7)
-63 | [Covert Image To Pdf](https://github.com/Python-World/python-mini-projects/tree/master/projects/Convert_a_image_to_pdf) | [Gaodong](https://github.com/xlgd)
-64 | [Store emails in csv file](https://github.com/Python-World/python-mini-projects/tree/master/projects/Store_emails_in_csv) | [Shiv Thakur](https://github.com/ShivSt)
-65 | [Test Internet Connection](https://github.com/Python-World/python-mini-projects/tree/master/projects/Internet_connection_check) | [Jacob Ogle](https://github.com/Jakeogle94)
-66 | [XKCD Comics Downloader](https://github.com/Python-World/python-mini-projects/tree/master/projects/XKCD_downloader)| [Aditya Jetely](https://github.com/AdityaJ7)
-67 | [Website Blocker And Unblocker](https://github.com/Python-World/python-mini-projects/tree/master/projects/Website_blocker)| [Phillibob55](https://github.com/Phillibob55)
-68 | [Fetch Domain Dns Record](https://github.com/Python-World/python-mini-projects/tree/master/projects/Dns_record)| [Aditya Jetely](https://github.com/AdityaJ7)
-69 | [Python-Auto-Draw](https://github.com/Python-World/python-mini-projects/tree/master/projects/Python_auto_draw)| [Tushar Nankani](https://github.com/tusharnankani)
-70 | [News Website Scraper](https://github.com/Python-World/python-mini-projects/tree/master/projects/News_website_scraper)| [pratik-choudhari](https://github.com/pratik-choudhari)
-71 | [Rock Paper Scissors Game](https://github.com/Python-World/python-mini-projects/tree/master/projects/RockPaperScissors_Game)| [Tushar Nankani](https://github.com/tusharnankani)
-72 | [Zip File Extractor](https://github.com/Python-World/python-mini-projects/tree/master/projects/Extract_zip_files)| [Aditya Jetely](https://github.com/AdityaJ7)
-73 | [Random Password Generator](https://github.com/Python-World/python-mini-projects/blob/master/projects/Random_password_generator)| [Tushar Nankani](https://github.com/tusharnankani)
-74 | [Script to perform Geocoding](https://github.com/Python-World/python-mini-projects/tree/master/projects/Geocoding)| [Aditya Jetely](https://github.com/AdityaJ7)
-75 | [Python Carbon Clips](https://github.com/Python-World/python-mini-projects/tree/master/projects/Py_carbon_clips)| [Ravishankar Chavare](https://github.com/chavarera)
-76 | [QR Code Generator](https://github.com/Python-World/python-mini-projects/tree/master/projects/Qr_code_generator)| [Shiv Thakur](https://github.com/ShivSt)
-77 | [Recursive Password Generator](https://github.com/Python-World/python-mini-projects/tree/master/projects/Recursive_password_generator)| [Erfan Saberi](https://github.com/erfansaberi)
-78 | [Tic Tac Toe](https://github.com/Python-World/python-mini-projects/tree/master/projects/Tic_tac_toe)| [Erfan Saberi](https://github.com/erfansaberi)
-79 | [Tic Tac Toe with AI](https://github.com/Python-World/python-mini-projects/tree/master/projects/Tic_tac_toe_with_ai)| [Tushar Nankani](https://github.com/tusharnankani)
-80 | [Cartoonify an Image](https://github.com/Python-World/python-mini-projects/tree/master/projects/Easy_cartoonify)| [Bartu Yaman](https://github.com/brtymn)
-81 | [Quote Scrapper](https://github.com/Python-World/python-mini-projects/tree/master/projects/Scrape_quotes)| [Anandha Krishnan Aji](https://github.com/anandhakrishnanaji)
-82 | [Time To Load Website](https://github.com/Python-World/python-mini-projects/tree/master/projects/Time_to_load_website)| [Aditya Jetely](https://github.com/AdityaJ7)
-83 | [Customer Loan Repayment Prediction](https://github.com/Python-World/python-mini-projects/tree/master/Notebooks/Customer_loan_repayment_problem)| [ART](https://github.com/Tomyzon1728)
-84 | [Generate Wordcloud from Wikipedia Article](https://github.com/Python-World/python-mini-projects/tree/master/projects/Wikipedia_search_wordcloud)| [Naman Shah](https://github.com/namanshah01)
-85 | [Number Guessing Game](https://github.com/Python-World/python-mini-projects/tree/master/projects/Number_guessing_game)| [Javokhirbek](https://github.com/leader2one)
-86 | [Convert JPEG to PNG](https://github.com/Python-World/python-mini-projects/tree/master/projects/Convert_JPEG_to_PNG)| [AnuragGupta](https://github.com/AnuragGupta806)
-87 | [Movie Information Scrapper](https://github.com/Python-World/python-mini-projects/tree/master/projects/Movie%20Information%20Scraper)| [Anandha Krishnan Aji](https://github.com/anandhakrishnanaji)
-88 | [Fetch HTTP Status Code](https://github.com/Python-World/python-mini-projects/tree/master/projects/Fetch%20HTTP%20status%20code)| [AkshataJ96](https://github.com/AkshataJ96)
-89 | [Check Leap Year](https://github.com/Python-World/python-mini-projects/tree/master/projects/Leap_Year_Checker)| [Hariom Vyas](https://github.com/Hariom1509)
-90 | [Scrape Medium Articles](https://github.com/Python-World/python-mini-projects/tree/master/projects/Scraping%20Medium%20Articles)| [Naman Shah](https://github.com/namanshah01)
-91 | [HackerNews Scrapper](https://github.com/Python-World/python-mini-projects/tree/master/projects/Scrape_Hacker_News)| [Javokhirbek](https://github.com/leader2one)
-92 | [Reduce Image Size](https://github.com/Python-World/python-mini-projects/tree/master/projects/Reduce_image_file_size)| [Vipul Verma](https://github.com/VIPverma01)
-93 | [Easy Video Player](https://github.com/Python-World/python-mini-projects/tree/master/projects/EasyVideoPlayer)| [Bartu Yaman](https://github.com/brtymn)
-94 | [GeeksforGeeks Article downloader](https://github.com/Python-World/python-mini-projects/tree/master/projects/download%20GeeksForGeeks%20articles)| [Shiv Thakur](https://github.com/ShivSt)
-95 | [PDF to Text](https://github.com/Python-World/python-mini-projects/tree/master/projects/convert%20pdf%20to%20text)| [pi1814](https://github.com/pi1814)
-96 | [Unstructured Supplemenrary Service Data](https://github.com/Python-World/python-mini-projects/tree/master/projects/Unstructured%20Supplemenrary%20%20Service%20Data)| [ART](https://github.com/Tomyzon1728)
-97 | [Duplicate Files remover](https://github.com/Python-World/python-mini-projects/tree/master/projects/Duplicate%20files%20remover)| [Anandha Krishnan Aji](https://github.com/anandhakrishnanaji)
-98 | [PNG to ICO converter](https://github.com/Python-World/python-mini-projects/tree/master/projects/convert_png_images_to_ico_format)| [weicheansoo](https://github.com/weicheansoo)
-99 | [Find IMDB Ratings](https://github.com/Python-World/python-mini-projects/tree/master/projects/Find_imdb_rating)| [Utkarsh Bajaj](https://github.com/utkarshbajaj)
-100 | [Terminal Based Hangman Game](https://github.com/Python-World/python-mini-projects/tree/master/projects/Terminal_Based_Hangman_Game)| [neohboonyee99](https://github.com/neohboonyee99)
-101 | [Whatsapp Bot](https://github.com/Python-World/python-mini-projects/tree/master/projects/whatsapp_Bot)| [urmil89](https://github.com/urmil89)
+61 | [Digital clock using tkinter](https://github.com/Python-World/python-mini-projects/tree/master/projects/Digital_clock) | [Aditya Jetely](https://github.com/adityaj7)
+62 | [Covert Image To Pdf](https://github.com/Python-World/python-mini-projects/tree/master/projects/Convert_a_image_to_pdf) | [Gaodong](https://github.com/xlgd)
+63 | [Store emails in csv file](https://github.com/Python-World/python-mini-projects/tree/master/projects/Store_emails_in_csv) | [Shiv Thakur](https://github.com/ShivSt)
+64 | [Test Internet Connection](https://github.com/Python-World/python-mini-projects/tree/master/projects/Internet_connection_check) | [Jacob Ogle](https://github.com/Jakeogle94)
+65 | [XKCD Comics Downloader](https://github.com/Python-World/python-mini-projects/tree/master/projects/XKCD_downloader)| [Aditya Jetely](https://github.com/AdityaJ7)
+66 | [Website Blocker And Unblocker](https://github.com/Python-World/python-mini-projects/tree/master/projects/Website_blocker)| [Phillibob55](https://github.com/Phillibob55)
+67 | [Fetch Domain Dns Record](https://github.com/Python-World/python-mini-projects/tree/master/projects/Dns_record)| [Aditya Jetely](https://github.com/AdityaJ7)
+68 | [Python-Auto-Draw](https://github.com/Python-World/python-mini-projects/tree/master/projects/Python_auto_draw)| [Tushar Nankani](https://github.com/tusharnankani)
+69 | [News Website Scraper](https://github.com/Python-World/python-mini-projects/tree/master/projects/News_website_scraper)| [pratik-choudhari](https://github.com/pratik-choudhari)
+70 | [Rock Paper Scissors Game](https://github.com/Python-World/python-mini-projects/tree/master/projects/RockPaperScissors_Game)| [Tushar Nankani](https://github.com/tusharnankani)
+71 | [Zip File Extractor](https://github.com/Python-World/python-mini-projects/tree/master/projects/Extract_zip_files)| [Aditya Jetely](https://github.com/AdityaJ7)
+72 | [Random Password Generator](https://github.com/Python-World/python-mini-projects/blob/master/projects/Random_password_generator)| [Tushar Nankani](https://github.com/tusharnankani)
+73 | [Script to perform Geocoding](https://github.com/Python-World/python-mini-projects/tree/master/projects/Geocoding)| [Aditya Jetely](https://github.com/AdityaJ7)
+74 | [Python Carbon Clips](https://github.com/Python-World/python-mini-projects/tree/master/projects/Py_carbon_clips)| [Ravishankar Chavare](https://github.com/chavarera)
+75 | [QR Code Generator](https://github.com/Python-World/python-mini-projects/tree/master/projects/Qr_code_generator)| [Shiv Thakur](https://github.com/ShivSt)
+76 | [Recursive Password Generator](https://github.com/Python-World/python-mini-projects/tree/master/projects/Recursive_password_generator)| [Erfan Saberi](https://github.com/erfansaberi)
+77 | [Tic Tac Toe](https://github.com/Python-World/python-mini-projects/tree/master/projects/Tic_tac_toe)| [Erfan Saberi](https://github.com/erfansaberi)
+78 | [Tic Tac Toe with AI](https://github.com/Python-World/python-mini-projects/tree/master/projects/Tic_tac_toe_with_ai)| [Tushar Nankani](https://github.com/tusharnankani)
+79 | [Cartoonify an Image](https://github.com/Python-World/python-mini-projects/tree/master/projects/Easy_cartoonify)| [Bartu Yaman](https://github.com/brtymn)
+80 | [Quote Scrapper](https://github.com/Python-World/python-mini-projects/tree/master/projects/Scrape_quotes)| [Anandha Krishnan Aji](https://github.com/anandhakrishnanaji)
+81 | [Time To Load Website](https://github.com/Python-World/python-mini-projects/tree/master/projects/Time_to_load_website)| [Aditya Jetely](https://github.com/AdityaJ7)
+82 | [Customer Loan Repayment Prediction](https://github.com/Python-World/python-mini-projects/tree/master/Notebooks/Customer_loan_repayment_problem)| [ART](https://github.com/Tomyzon1728)
+83 | [Generate Wordcloud from Wikipedia Article](https://github.com/Python-World/python-mini-projects/tree/master/projects/Wikipedia_search_wordcloud)| [Naman Shah](https://github.com/namanshah01)
+84 | [Number Guessing Game](https://github.com/Python-World/python-mini-projects/tree/master/projects/Number_guessing_game)| [Javokhirbek](https://github.com/leader2one)
+85 | [Convert JPEG to PNG](https://github.com/Python-World/python-mini-projects/tree/master/projects/Convert_JPEG_to_PNG)| [AnuragGupta](https://github.com/AnuragGupta806)
+86 | [Movie Information Scrapper](https://github.com/Python-World/python-mini-projects/tree/master/projects/Movie_Information_Scraper)| [Anandha Krishnan Aji](https://github.com/anandhakrishnanaji)
+87 | [Fetch HTTP Status Code](https://github.com/Python-World/python-mini-projects/tree/master/projects/Fetch_HTTP_status_code)| [AkshataJ96](https://github.com/AkshataJ96)
+88 | [Check Leap Year](https://github.com/Python-World/python-mini-projects/tree/master/projects/Leap_Year_Checker)| [Hariom Vyas](https://github.com/Hariom1509)
+89 | [Scrape Medium Articles](https://github.com/Python-World/python-mini-projects/tree/master/projects/Scraping_Medium_Articles)| [Naman Shah](https://github.com/namanshah01)
+90 | [HackerNews Scrapper](https://github.com/Python-World/python-mini-projects/tree/master/projects/Scrape_Hacker_News)| [Javokhirbek](https://github.com/leader2one)
+91 | [Reduce Image Size](https://github.com/Python-World/python-mini-projects/tree/master/projects/Reduce_image_file_size)| [Vipul Verma](https://github.com/VIPverma01)
+92 | [Easy Video Player](https://github.com/Python-World/python-mini-projects/tree/master/projects/EasyVideoPlayer)| [Bartu Yaman](https://github.com/brtymn)
+93 | [GeeksforGeeks Article downloader](https://github.com/Python-World/python-mini-projects/tree/master/projects/Download_GeeksForGeeks_articles)| [Shiv Thakur](https://github.com/ShivSt)
+94 | [PDF to Text](https://github.com/Python-World/python-mini-projects/tree/master/projects/Convert_pdf_to_text)| [pi1814](https://github.com/pi1814)
+95 | [Unstructured Supplemenrary Service Data](https://github.com/Python-World/python-mini-projects/tree/master/projects/Unstructured_Supplemenrary_Service_Data)| [ART](https://github.com/Tomyzon1728)
+96 | [Duplicate Files remover](https://github.com/Python-World/python-mini-projects/tree/master/projects/Duplicate_files_remover)| [Anandha Krishnan Aji](https://github.com/anandhakrishnanaji)
+97 | [PNG to ICO converter](https://github.com/Python-World/python-mini-projects/tree/master/projects/convert_png_images_to_ico_format)| [weicheansoo](https://github.com/weicheansoo)
+98 | [Find IMDB Ratings](https://github.com/Python-World/python-mini-projects/tree/master/projects/Find_imdb_rating)| [Utkarsh Bajaj](https://github.com/utkarshbajaj)
+99 | [Terminal Based Hangman Game](https://github.com/Python-World/python-mini-projects/tree/master/projects/Terminal_Based_Hangman_Game)| [neohboonyee99](https://github.com/neohboonyee99)
+100 | [Whatsapp Bot](https://github.com/Python-World/python-mini-projects/tree/master/projects/whatsapp_Bot)| [urmil89](https://github.com/urmil89)
diff --git a/projects/convert pdf to text/README.md b/projects/Convert_pdf_to_text/README.md
similarity index 100%
rename from projects/convert pdf to text/README.md
rename to projects/Convert_pdf_to_text/README.md
diff --git a/projects/convert pdf to text/converter1.py b/projects/Convert_pdf_to_text/converter1.py
similarity index 100%
rename from projects/convert pdf to text/converter1.py
rename to projects/Convert_pdf_to_text/converter1.py
diff --git a/projects/convert pdf to text/output.txt b/projects/Convert_pdf_to_text/output.txt
similarity index 100%
rename from projects/convert pdf to text/output.txt
rename to projects/Convert_pdf_to_text/output.txt
diff --git a/projects/convert pdf to text/samplePdf1.pdf b/projects/Convert_pdf_to_text/samplePdf1.pdf
similarity index 100%
rename from projects/convert pdf to text/samplePdf1.pdf
rename to projects/Convert_pdf_to_text/samplePdf1.pdf
diff --git a/projects/convert pdf to text/temp/samplePdf1.txt b/projects/Convert_pdf_to_text/temp/samplePdf1.txt
similarity index 100%
rename from projects/convert pdf to text/temp/samplePdf1.txt
rename to projects/Convert_pdf_to_text/temp/samplePdf1.txt
diff --git a/projects/download GeeksForGeeks articles/downloader.py b/projects/Download_GeeksForGeeks_articles/downloader.py
similarity index 100%
rename from projects/download GeeksForGeeks articles/downloader.py
rename to projects/Download_GeeksForGeeks_articles/downloader.py
diff --git a/projects/download GeeksForGeeks articles/readme.md b/projects/Download_GeeksForGeeks_articles/readme.md
similarity index 100%
rename from projects/download GeeksForGeeks articles/readme.md
rename to projects/Download_GeeksForGeeks_articles/readme.md
diff --git a/projects/download GeeksForGeeks articles/requirements.txt b/projects/Download_GeeksForGeeks_articles/requirements.txt
similarity index 100%
rename from projects/download GeeksForGeeks articles/requirements.txt
rename to projects/Download_GeeksForGeeks_articles/requirements.txt
diff --git a/projects/download GeeksForGeeks articles/screenshot.jpg b/projects/Download_GeeksForGeeks_articles/screenshot.jpg
similarity index 100%
rename from projects/download GeeksForGeeks articles/screenshot.jpg
rename to projects/Download_GeeksForGeeks_articles/screenshot.jpg
diff --git a/projects/Duplicate files remover/README.md b/projects/Duplicate_files_remover/README.md
similarity index 100%
rename from projects/Duplicate files remover/README.md
rename to projects/Duplicate_files_remover/README.md
diff --git a/projects/Duplicate files remover/Screenshot.png b/projects/Duplicate_files_remover/Screenshot.png
similarity index 100%
rename from projects/Duplicate files remover/Screenshot.png
rename to projects/Duplicate_files_remover/Screenshot.png
diff --git a/projects/Duplicate files remover/duplicatefileremover.py b/projects/Duplicate_files_remover/duplicatefileremover.py
similarity index 100%
rename from projects/Duplicate files remover/duplicatefileremover.py
rename to projects/Duplicate_files_remover/duplicatefileremover.py
diff --git a/projects/Fetch HTTP status code/README.md b/projects/Fetch_HTTP_status_code/README.md
similarity index 100%
rename from projects/Fetch HTTP status code/README.md
rename to projects/Fetch_HTTP_status_code/README.md
diff --git a/projects/Fetch HTTP status code/fetch_http_status_code.py b/projects/Fetch_HTTP_status_code/fetch_http_status_code.py
similarity index 100%
rename from projects/Fetch HTTP status code/fetch_http_status_code.py
rename to projects/Fetch_HTTP_status_code/fetch_http_status_code.py
diff --git a/projects/Fetch HTTP status code/requirements.txt b/projects/Fetch_HTTP_status_code/requirements.txt
similarity index 100%
rename from projects/Fetch HTTP status code/requirements.txt
rename to projects/Fetch_HTTP_status_code/requirements.txt
diff --git a/projects/Movie Information Scraper/README.md b/projects/Movie_Information_Scraper/README.md
similarity index 100%
rename from projects/Movie Information Scraper/README.md
rename to projects/Movie_Information_Scraper/README.md
diff --git a/projects/Movie Information Scraper/Screenshot.png b/projects/Movie_Information_Scraper/Screenshot.png
similarity index 100%
rename from projects/Movie Information Scraper/Screenshot.png
rename to projects/Movie_Information_Scraper/Screenshot.png
diff --git a/projects/Movie Information Scraper/movieInfoScraper.py b/projects/Movie_Information_Scraper/movieInfoScraper.py
similarity index 100%
rename from projects/Movie Information Scraper/movieInfoScraper.py
rename to projects/Movie_Information_Scraper/movieInfoScraper.py
diff --git a/projects/Movie Information Scraper/requirements.txt b/projects/Movie_Information_Scraper/requirements.txt
similarity index 100%
rename from projects/Movie Information Scraper/requirements.txt
rename to projects/Movie_Information_Scraper/requirements.txt
diff --git a/projects/Scraping Medium Articles/README.md b/projects/Scraping_Medium_Articles/README.md
similarity index 100%
rename from projects/Scraping Medium Articles/README.md
rename to projects/Scraping_Medium_Articles/README.md
diff --git a/projects/Scraping Medium Articles/requirements.txt b/projects/Scraping_Medium_Articles/requirements.txt
similarity index 100%
rename from projects/Scraping Medium Articles/requirements.txt
rename to projects/Scraping_Medium_Articles/requirements.txt
diff --git a/projects/Scraping Medium Articles/scraped_articles/One_month_into_the_MLH_Fellowship.txt b/projects/Scraping_Medium_Articles/scraped_articles/One_month_into_the_MLH_Fellowship.txt
similarity index 100%
rename from projects/Scraping Medium Articles/scraped_articles/One_month_into_the_MLH_Fellowship.txt
rename to projects/Scraping_Medium_Articles/scraped_articles/One_month_into_the_MLH_Fellowship.txt
diff --git a/projects/Scraping Medium Articles/scraped_articles/One_stop_guide_to_Google_Summer_of_Code.txt b/projects/Scraping_Medium_Articles/scraped_articles/One_stop_guide_to_Google_Summer_of_Code.txt
similarity index 100%
rename from projects/Scraping Medium Articles/scraped_articles/One_stop_guide_to_Google_Summer_of_Code.txt
rename to projects/Scraping_Medium_Articles/scraped_articles/One_stop_guide_to_Google_Summer_of_Code.txt
diff --git a/projects/Scraping Medium Articles/scraped_articles/The_Pros_and_Cons_of_Open_Source_Software.txt b/projects/Scraping_Medium_Articles/scraped_articles/The_Pros_and_Cons_of_Open_Source_Software.txt
similarity index 100%
rename from projects/Scraping Medium Articles/scraped_articles/The_Pros_and_Cons_of_Open_Source_Software.txt
rename to projects/Scraping_Medium_Articles/scraped_articles/The_Pros_and_Cons_of_Open_Source_Software.txt
diff --git a/projects/Scraping Medium Articles/scraping_medium.py b/projects/Scraping_Medium_Articles/scraping_medium.py
similarity index 100%
rename from projects/Scraping Medium Articles/scraping_medium.py
rename to projects/Scraping_Medium_Articles/scraping_medium.py
diff --git a/projects/Split_File/file_split/split_file1.csv b/projects/Split_File/file_split/split_file1.csv
new file mode 100644
index 000000000..44dafe186
--- /dev/null
+++ b/projects/Split_File/file_split/split_file1.csv
@@ -0,0 +1,2 @@
+# Split Files
+##### About
diff --git a/projects/Split_File/file_split/split_file2.csv b/projects/Split_File/file_split/split_file2.csv
new file mode 100644
index 000000000..922e28760
--- /dev/null
+++ b/projects/Split_File/file_split/split_file2.csv
@@ -0,0 +1,2 @@
+This accepts split index and file name than spilts it according to the index provided.
+### Prerequisites
diff --git a/projects/Split_File/file_split/split_file3.csv b/projects/Split_File/file_split/split_file3.csv
new file mode 100644
index 000000000..1a9b47d13
--- /dev/null
+++ b/projects/Split_File/file_split/split_file3.csv
@@ -0,0 +1,2 @@
+To execute this script python must be installed the host system.
+### How to run the script
diff --git a/projects/Split_File/file_split/split_file4.csv b/projects/Split_File/file_split/split_file4.csv
new file mode 100644
index 000000000..708448573
--- /dev/null
+++ b/projects/Split_File/file_split/split_file4.csv
@@ -0,0 +1,2 @@
+just type this in the terminal:-
+`python split_files.py `
diff --git a/projects/Split_File/file_split/split_file5.csv b/projects/Split_File/file_split/split_file5.csv
new file mode 100644
index 000000000..8555c752f
--- /dev/null
+++ b/projects/Split_File/file_split/split_file5.csv
@@ -0,0 +1,2 @@
+## *Author Name*
+[phileinSophos](https://github.com/phileinSophos/)
diff --git a/projects/Unstructured Supplemenrary Service Data/README.md b/projects/Unstructured_Supplemenrary_Service_Data/README.md
similarity index 100%
rename from projects/Unstructured Supplemenrary Service Data/README.md
rename to projects/Unstructured_Supplemenrary_Service_Data/README.md
diff --git a/projects/Unstructured Supplemenrary Service Data/Screenshot_20200910-134857.png b/projects/Unstructured_Supplemenrary_Service_Data/Screenshot_20200910-134857.png
similarity index 100%
rename from projects/Unstructured Supplemenrary Service Data/Screenshot_20200910-134857.png
rename to projects/Unstructured_Supplemenrary_Service_Data/Screenshot_20200910-134857.png
diff --git a/projects/Unstructured Supplemenrary Service Data/ussdtim.py b/projects/Unstructured_Supplemenrary_Service_Data/ussdtim.py
similarity index 100%
rename from projects/Unstructured Supplemenrary Service Data/ussdtim.py
rename to projects/Unstructured_Supplemenrary_Service_Data/ussdtim.py
diff --git a/projects/cli_proxy_tester/.README.md.swp b/projects/cli_proxy_tester/.README.md.swp
new file mode 100644
index 000000000..3a82dd1ce
Binary files /dev/null and b/projects/cli_proxy_tester/.README.md.swp differ