Skip to main content

A library of various tools for common python tasks

Project description

linkedin github pypi vimeo alexgbraun

Introduction

A library of various tools for common python tasks

See documentation for details.

Installation for Developers

Docker

  1. Install docker-desktop
  2. Ensure docker-desktop has at least 4 GB of memory allocated to it.
  3. git clone git@github.com:theNewFlesh/lunchbox.git
  4. cd lunchbox
  5. chmod +x bin/lunchbox
  6. bin/lunchbox docker-start
    • If building on a silicon Mac change the value of the PLATFORM variable in the cli.py module to linux/arm64.

The service should take a few minutes to start up.

Run bin/lunchbox --help for more help on the command line tool.

ZSH Setup

  1. bin/lunchbox must be run from this repository's top level directory.

  2. Therefore, if using zsh, it is recommended that you paste the following line in your ~/.zshrc file:

    • alias lunchbox="cd [parent dir]/lunchbox; bin/lunchbox"
    • Replace [parent dir] with the parent directory of this repository
  3. Consider adding the following line to your ~/.zshrc if you are using a silicon Mac:

    • export DOCKER_DEFAULT_PLATFORM=linux/arm64
  4. Running the zsh-complete command will enable tab completions of the cli commands, in the next shell session.

    For example:

    • lunchbox [tab] will show you all the cli options, which you can press tab to cycle through
    • lunchbox docker-[tab] will show you only the cli options that begin with "docker-"

Installation for Production

Python

pip install lunchbox

Please see the prod.dockerfile for an official example of how to build a docker image with lunchbox.

Docker

  1. Install docker-desktop
  2. docker pull theNewFlesh/lunchbox:[mode]-[version]

Quickstart Guide

This repository contains a suite commands for the whole development process. This includes everything from testing, to documentation generation and publishing pip packages.

These commands can be accessed through:

  • The VSCode task runner
  • The VSCode task runner side bar
  • A terminal running on the host OS
  • A terminal within this repositories docker container

Running the zsh-complete command will enable tab completions of the CLI. See the zsh setup section for more information.

Command Groups

Development commands are grouped by one of 10 prefixes:

Command Description
build Commands for building packages for testing and pip publishing
docker Common docker commands such as build, start and stop
docs Commands for generating documentation and code metrics
library Commands for managing python package dependencies
session Commands for starting interactive sessions such as jupyter lab and python
state Command to display the current state of the repo and container
test Commands for running tests, linter and type annotations
version Commands for bumping project versions
quickstart Display this quickstart guide
zsh Commands for running a zsh session in the container and generating zsh completions

Common Commands

Here are some frequently used commands to get you started:

Command Description
docker-restart Restart container
docker-start Start container
docker-stop Stop container
docs-full Generate documentation, coverage report, diagram and code metrics
library-add Add a given package to a given dependency group
library-graph-dev Graph dependencies in dev environment
library-remove Remove a given package from a given dependency group
library-search Search for pip packages
library-update Update dev dependencies
session-lab Run jupyter lab server
state State of
test-dev Run all tests
test-lint Run linting and type checking
zsh Run ZSH session inside container
zsh-complete Generate ZSH completion script

Development CLI

bin/lunchbox is a command line interface (defined in cli.py) that works with any version of python 2.7 and above, as it has no dependencies. Commands generally do not expect any arguments or flags.

Its usage pattern is: bin/lunchbox COMMAND [-a --args]=ARGS [-h --help] [--dryrun]

Commands

The following is a complete list of all available development commands:

Command Description
build-edit-prod-dockerfile Edit prod.dockefile to use local package
build-local-package Generate local pip package in docker/dist
build-package Generate pip package of repo
build-prod Build production version of repo for publishing
build-publish Run production tests first then publish pip package of repo to PyPi
build-publish-test Run tests and then publish pip package of repo to test PyPi
build-test Build test version of repo for prod testing
docker-build Build development image
docker-build-from-cache Build development image from registry cache
docker-build-no-cache Build development image without cache
docker-build-prod Build production image
docker-build-prod-no-cache Build production image without cache
docker-container Display the Docker container id
docker-destroy Shutdown container and destroy its image
docker-destroy-prod Shutdown production container and destroy its image
docker-image Display the Docker image id
docker-prod Start production container
docker-pull-dev Pull development image from Docker registry
docker-pull-prod Pull production image from Docker registry
docker-push-dev Push development image to Docker registry
docker-push-dev-latest Push development image to Docker registry with dev-latest tag
docker-push-prod Push production image to Docker registry
docker-push-prod-latest Push production image to Docker registry with prod-latest tag
docker-remove Remove Docker container
docker-restart Restart container
docker-start Start container
docker-stop Stop container
docs Generate sphinx documentation
docs-architecture Generate architecture.svg diagram from all import statements
docs-full Generate documentation, coverage report, diagram and code metrics
docs-metrics Generate code metrics report, plots and tables
docs-sphinx Generate sphinx rst files
library-add Add a given package to a given dependency group
library-graph-dev Graph dependencies in dev environment
library-graph-prod Graph dependencies in prod environment
library-install-dev Install all dependencies into dev environment
library-install-prod Install all dependencies into prod environment
library-list-dev List packages in dev environment
library-list-prod List packages in prod environment
library-lock-dev Resolve dev.lock file
library-lock-prod Resolve prod.lock file
library-remove Remove a given package from a given dependency group
library-search Search for pip packages
library-sync-dev Sync dev environment with packages listed in dev.lock
library-sync-prod Sync prod environment with packages listed in prod.lock
library-update Update dev dependencies
library-update-pdm Update PDM
quickstart Display quickstart guide
session-lab Run jupyter lab server
session-python Run python session with dev dependencies
state State of repository and Docker container
test-coverage Generate test coverage report
test-dev Run all tests
test-fast Test all code excepts tests marked with SKIP_SLOW_TESTS decorator
test-format Format all python files
test-lint Run linting and type checking
test-prod Run tests across all support python versions
version Full resolution of repo: dependencies, linting, tests, docs, etc
version-bump Bump repo's patch version up to x.x.20, then bump minor version
version-bump-major Bump pyproject major version
version-bump-minor Bump pyproject minor version
version-bump-patch Bump pyproject patch version
version-commit Tag with version and commit changes to master
zsh Run ZSH session inside Docker container
zsh-complete Generate oh-my-zsh completions
zsh-root Run ZSH session as root inside Docker container

Flags

Short Long Description
-a --args Additional arguments, this can generally be ignored
-h --help Prints command help message to stdout
--dryrun Prints command that would otherwise be run to stdout

Production CLI

lunchbox comes with a command line interface defined in command.py.

Its usage pattern is: lunchbox COMMAND [ARGS] [FLAGS] [-h --help]

Commands


bash-completion

Prints BASH completion code to be written to a _lunchbox completion file

Usage: lunchbox bash-completion


slack

Posts a slack message to a given channel

Usage: lunchbox slack URL CHANNEL MESSAGE

Argument Description
url https://hooks.slack.com/services URL
channel slack channel name
message message to be posted

zsh-completion

Prints ZSH completion code to be written to a _lunchbox completion file

Usage: lunchbox zsh-completion

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

lunchbox-0.10.3.tar.gz (27.1 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

lunchbox-0.10.3-py3-none-any.whl (26.0 kB view details)

Uploaded Python 3

File details

Details for the file lunchbox-0.10.3.tar.gz.

File metadata

  • Download URL: lunchbox-0.10.3.tar.gz
  • Upload date:
  • Size: 27.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: pdm/2.26.6 CPython/3.13.12 Linux/6.14.0-1017-azure

File hashes

Hashes for lunchbox-0.10.3.tar.gz
Algorithm Hash digest
SHA256 e3b00fa72555e349bb21220fafd13377b840212f916ae6e65a5310ce7013001a
MD5 002fd1c5b47cbd0041e35af9aa9a4069
BLAKE2b-256 64e57e6c89f8a474a59187e9d341698b155b343c17e9164460fb190ee82856a4

See more details on using hashes here.

File details

Details for the file lunchbox-0.10.3-py3-none-any.whl.

File metadata

  • Download URL: lunchbox-0.10.3-py3-none-any.whl
  • Upload date:
  • Size: 26.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: pdm/2.26.6 CPython/3.13.12 Linux/6.14.0-1017-azure

File hashes

Hashes for lunchbox-0.10.3-py3-none-any.whl
Algorithm Hash digest
SHA256 9aba7154e002608b1e7b486a1c346cffde2fdd8b4a5a1bd4620dea7e4fa46c25
MD5 eedfb5e519bb9f2affa4ea684ccb789a
BLAKE2b-256 0fa13072a86e93f91e227660b166b76e403ce0496973de167d2c4bb205eb388c

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page