kaparker / tutorials

Python tutorials and examples

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Tutorials

This repo contains tutorials

Setup environment

  1. Create virtual environment using conda
    conda create -n tutorials python=3.9 
    
  2. Activate environment
    conda activate tutorials 
    
  3. Install poetry and follow instructions to add Poetry's bin directory to your PATH environment variable.
    curl -sSL https://install.python-poetry.org | python3 -
    
  4. Install packages via poetry
    poetry install
    
  5. Run the scripts
    poetry run python scriptname.py
    

Scripts and articles

pythonscraper

Note that these tutorials are not maintained.

  1. Web scraping using python - websitescrapefasttrack.py
  2. Web scraping javascript using python - websitescrapeJS

penguin-analysis

Data Analysis: Getting started with pandas

data-viz

Comparison of matplotlib, altair and plotly.

About

Python tutorials and examples


Languages

Language:Jupyter Notebook 98.8%Language:Python 1.2%