Skip to content

TheRobBrennan/explore-python-and-jupyter

Repository files navigation

Welcome

This project aims to explore working with Python and Jupyter notebooks.

Screenshot of a Jupyter notebook in VS Code

Getting started

Assuming your development environment meets the prerequisites below, to get started with this project you will want to:

  • Run npm run setup to create the Python virtual environment and install all of the dependencies from requirements.txt
  • Run source .venv/bin/activate to activate your newly created Python virtual environment
  • Select the Python interpreter for VS Code

Screenshot of being prompted to select a Python interpreter for VS Code Screenshot of selecting the Python interpreter at ./.venv/bin/python for VS Code

  • Run deactivate when you're ready to leave the Python virtual environment
  • OPTIONAL: If you want to delete your virtual environment completely, you can run the npm run destroy script

Additional resources

Please see Jupyter Notebooks in VS Code for an excellent introduction to Jupyter Notebooks.

Screenshot of the Jupyter Notebooks in VS Code guide

Prerequisites

Please make sure that you have the following installed on your development environment:

This code base was initially developed and tested on:

  • 2021 14" MacBook Pro
    • Apple M1 Max
    • 64 GB memory
    • 2 TB SSD
    • macOS Sonoma 14.6.1
      • Node.js v20.11.1
      • npm 10.8.1
      • Python 3.11.1

Scripts

This project includes several scripts to get you up and running with your local development environment using npm (e.g., npm run setup`):

  • setup

    • This script checks to see if a Python virtual environment exists at .venv - or creates a new Python virtual environment - and installs dependencies from requirements.txt
  • start

    • This script uses the Python virtual environment at .venv to run the application locally
  • test

    • This script uses the Python virtual environment at .venv and runs the unit tests for our application
  • test:coverage

    • This script uses the Python virtual environment at .venv, runs the unit tests for our application, and generates an HTML coverage report at ./htmlcov/index.html that will automatically open in the default web browser on macOS.
  • destroy

    • This script removes the Python virtual environment at .venv

Python cheat sheet

If you're just getting started with Python, here are snippets of commands that you may find helpful to get you up and running in no time.

# Verify that you have Python installed on your machine
% python3 --version
Python 3.11.1

# Create a new virtual environment for the project
% python3 -m venv .venv

# Select your new environment by using the Python: Select Interpreter command in VS Code
#   - Enter the path: ./.venv/bin/python

# Activate your virtual environment
% source .venv/bin/activate
(.venv) %

# PREFERRED: Install the packages from requirements.txt
(.venv) % pip install -r requirements.txt

# Install Python packages in a virtual environment
# (.venv) % pip install <package_name>

# Install Python testing packages
# (.venv) % pip install pytest pytest-asyncio
# (.venv) % pip install pytest-cov

# When you are ready to generate a requirements.txt file
# (.venv) % pip freeze > requirements.txt

# Uninstall the package from your virtual environment
# (.venv) % pip uninstall simplejson

# Remove the dependency from requirements.txt if it exists
# (.venv) % pip uninstall -r requirements.txt

# To run unit tests:
# (.venv) % pytest

# To run unit tests and automatically view the HTML coverage report on macOS:
# (.venv) % pytest --cov=. --cov-report=html && open htmlcov/index.html

# To run a single unit test
# (.venv) % pytest test_something.py

# Deactivate your virtual environment
(.venv) % deactivate
% 

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published