Skip to content

jsparraq/python-tricks

Repository files navigation

Python tricks

Exercises of Python tricks the book https://www.amazon.com/-/es/Dan-Bader/dp/1775093301 I'm using Python 3.7.7

Most important modules

Important modules

Recommendations

  1. Install virtualenv library

    pip install virtualenv
    
  2. Create virtualenv

    virtualenv venv
    
  3. Activate virtualenv

    Mac/Linux

    source venv/bin/activate
    
  4. Install dependencies

    pip install -r requirements.txt
    

Execute

You can see this tricks with jupyter notebooks with some browser or vs code

Jupyter notebooks

Activate environment or install environment on system and execute the following commands

jupyter notebook

VS code

Install python plugin and configure python environment on vscode