• Stars
    star
    126
  • Rank 284,543 (Top 6 %)
  • Language
    Jupyter Notebook
  • Created over 6 years ago
  • Updated over 1 year ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Python tutorials and examples

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.