Skip to content

Instantly share code, notes, and snippets.

@FrancisVarga
Last active May 25, 2021 11:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save FrancisVarga/653c258823119a16c394493dcb41c380 to your computer and use it in GitHub Desktop.
Save FrancisVarga/653c258823119a16c394493dcb41c380 to your computer and use it in GitHub Desktop.
init python projects stuff...
APScheduler==3.6.3
boto3==1.17.79
botocore==1.20.79
certifi==2020.12.5
chardet==4.0.0
elasticsearch==7.12.1
greenlet==1.1.0
idna==2.10
jmespath==0.10.0
mysql-connector-python==8.0.25
numpy==1.20.3
pandas==1.2.4
protobuf==3.17.1
python-dateutil==2.8.1
python-dotenv==0.17.1
python-telegram-bot==13.5
pytz==2021.1
requests==2.25.1
s3transfer==0.4.2
six==1.16.0
SQLAlchemy==1.4.15
tornado==6.1
tzlocal==2.1
urllib3==1.26.4
#!/usr/bin/env bash
echo "Create Folders and env"
mkdir src
virtualenv .venv
source .venv/bin/activate
echo "dummy files for .env"
touch .env.example
echo "install standard python stuff"
curl 'https://gist.githubusercontent.com/FrancisVarga/653c258823119a16c394493dcb41c380/raw/d0e983d1f5ca10859edf235f426ff4fd24486ccd/gistfile1.txt' > requirements.txt
pip install -r requirements.txt
echo "Done."
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment