Skip to content

akashksinghal/Python_Ciphers

Repository files navigation

Python Ciphers

What is Python Ciphers ?

This repository is compilation of various Python Ciphers which somehow automate the usual tasks and make it easy.

Projects

Project Name Contributor
Text Regonition Akash Kumar Singhal
Phone_Number_and_Email_Extractor randy1369
Vigenère Cipher Atharva Kadlag
News Scaper Mayank Sharma
Caesar Cipher Jay Bhatia
Image to ASCII Akash Rawat
Youtube downloader Dikshit kapoor
Affine Cipher Prachi Gandhi

How to use :

  • Clone/Download the directory and navigate to each folder. Or...

  • Simply navigate to the folder and download/copy the scripts! It's that simple and easy.

  • Setup virtual environment for that scripts:

    • python -m venv env
    • source env\bin\activate
    • pip install -r requirements.txt
  • Run the script :)

Remember to star the repo if you love the scripts~ 😉

Contribution Guidelines :

  • Make a separate folder for your script.

  • There shouldn't be any spaces between the names of the script. (Use underscore or dash Symbol)

    • ✔️ Script_One
    • ✔️ Script-One
  • The Folder should contain the followings -

    • Main Python Script,
    • Supporting files for the Script (If any)
    • A separate README.md File with proper documentation.
    • requirements.txt file for any required library.
    • How to create requirements.txt file - cd <your_script_dir> - Activate your local virtual environment - source env\bin\activate - pip freeze > requirements.txt
  • Please add your script in the Project's list above.