fades

Automatically handle virtualenvs for Python scripts

brewmacoslinux
Try with needOr install directly
Source

About

Automatically handle virtualenvs for python scripts

Commands

fades

Examples

Run a Python script with automatic dependency handling$ fades script.py
Execute Python code with specified dependencies inline$ fades -d requests -d beautifulsoup4 -x 'import requests; print(requests.get("https://example.com").status_code)'
Run a script specifying Python version and dependencies$ fades -p 3.9 -d django==3.2 manage.py runserver