Skip to content

jpacostar/docs

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 

Repository files navigation

docs

Personal notes on developing tools and programming languages.

Python

  1. Installing python:

    1. Usually good to search for "Setting up python development environment in [Mac/Windows]" and follow instructions.
  2. Set-up with virtual environments:

    1. Create a folder for your project.
    2. Open the folder in Visual Studio Code (VS).
    3. Open the terminal in VS and run the following. This step only needs to happen once per project.
    python3 -m venv .venv
    source .venv/bin/activate
    pip install --upgrade pip
    
    1. Search for "Select Python Interpreter" VS and select .venv. This will ensure you don't mess with the baseline python installation in your computer.
    2. To install packages, run pip install ... from the terminal in VS. Make sure the virtual environment is active before: there should be a (.venv) in the terminal.
  3. The Python Tutorial:

    1. Getting started: Chapters 3, 4 and 5.
    2. Really useful afterwards: 8 and 9.
  4. Data handling: Pandas User Guide.

    1. Worth going through the 10 minutes to pandas chapter.
    2. Otherwise, browse as needed.
  5. Useful libraries and tools:

    1. os to look for folders, environment variables and manage files.
    2. requests to interact with webpages and APIs.
    3. altair for charts and plots in python (docs)
    4. streamlit for interactive dashboards (docs)
    5. String formatting: https://docs.python.org/3/tutorial/inputoutput.html

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published