Skip to content

Instantly share code, notes, and snippets.

@aashishrbhandari
Last active June 26, 2020 07:08
Show Gist options
  • Save aashishrbhandari/da64a673e1728e765aef7e79b60363ac to your computer and use it in GitHub Desktop.
Save aashishrbhandari/da64a673e1728e765aef7e79b60363ac to your computer and use it in GitHub Desktop.
Simple Encryption/Decryption Lib for Python
--------------------------------------------
https://github.com/andrewcooke/simple-crypt
https://github.com/Ayrx/python-aead
Simple Python Mailer
---------------------
https://github.com/gerold-penz/python-simplemail
Install python Packages inside python Script using pip
----------------------------------------------------------
Way 1:
========
import subprocess
import sys
def install(package):
subprocess.check_call([sys.executable, "-m", "pip", "install", package])
Article & Doc
---------------
https://stackoverflow.com/questions/12332975/installing-python-module-within-code
Way 2:
========
import pip
pip.main(['install', 'BeautifulSoup4']);
## It is an older way but works very well
Quick Google Search
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment