Skip to main content

PostgreSQL for novices - helps debug PostgreSQL queries

Project description

PostgreSQL for novices

📄 Documentation

This README is meant for developers of the project, and not for end users. For end users, please see the documentation linked above.

Notes for developers

Poetry

This project uses Poetry for packaging. Although one should refer to Poetry docs for a thorough introduction, here's a short summary of the intended workflow with Poetry:

  • To install all dependencies and the application, type poetry install. After installation, if the Python scripts folder is in your PATH, you should be able to invoke main.main() with pg4n.
  • To make VS Code use Poetry's virtual environment, type poetry env info, copy virtual environment executable path, press F1 and type Python: Select Interpreter > Enter interpreter path... > paste path and press <ENTER>.
  • To add/remove a dependency, type poetry add <dep>/poetry remove <dep>.
  • To execute a command from within virtual environment shell, type poetry run <cmd>.
  • To enter a shell session within the Poetry virtual environment, type poetry shell.

Versioning

You can bump the version number automatically with poetry version patch, poetry version minor, etc. See poetry version -h.

See version history here.

Imports

During development, you must run the program as a module, e.g., poetry run python -m src.pg4n.main, so that the imports work.

Running tests

Having PostgreSQL running on port 5432, do poetry run pytest.

You may need to provide environment variables that match your config:

Variable Default value Description
PGHOST 127.0.0.1 Hostname of the PostgreSQL server.
PGPORT 5432 Port to an active PostgreSQL instance.
PGUSER postgres The user that will be used to manage the test database.
PGPASSWORD Password, in case password authentication is used.
PGDBNAME test_database Database name.

For example, if PostgreSQL is on port 5433, just do PGPORT=5433 poetry run pytest (Bash syntax).

Using docker

To get a similar PostgreSQL instance as with GitHub Actions workflow:
docker run --rm -P -p 127.0.0.1:5432:5432 --name pg -e POSTGRES_PASSWORD=postgres -d postgres:14.5-alpine

You'll need to tell pytest the password: PGPASSWORD=postgres poetry run pytest.

Building documents

  1. If docs/api is not up-to-date or doesn't exist, run:
    poetry run sphinx-apidoc -f -o docs/api src/pg4n '*/test*'
  2. To generate the documentation:
    poetry run sphinx-build -b html docs docs/build

Note that the GitHub Pages site is only updated on pushes to main branch.

Linters and formatters

For linting, the following tools are used:

  • black for formatting
  • pylint for linting
  • mypy for static type checking
  • isort for sorting imports

To get a grade that the CI/CD pipeline would give you, you can do poetry run scripts/ci-grade.sh to run all the checks. The output is possibly long, so pipe it to a file perusal filter such as less to scroll through it and search for things of concern, e.g., summary to see scores.

Githooks

This project uses poetry-githooks to run automatic formatting on each commit. To set this up, run:

poetry run githooks setup

This needs to be re-run each time the [tool.githooks] section is modified in the pyproject.toml file.

One can skip pre-commit hooks by running git commit with the --no-verify flag.

Project details


Release history Release notifications | RSS feed

Download files

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

Source Distribution

pg4n-1.0.0.65.tar.gz (107.4 kB view details)

Uploaded Source

Built Distribution

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

pg4n-1.0.0.65-py3-none-any.whl (116.1 kB view details)

Uploaded Python 3

File details

Details for the file pg4n-1.0.0.65.tar.gz.

File metadata

  • Download URL: pg4n-1.0.0.65.tar.gz
  • Upload date:
  • Size: 107.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.2.2 CPython/3.10.7 Linux/5.15.0-1024-azure

File hashes

Hashes for pg4n-1.0.0.65.tar.gz
Algorithm Hash digest
SHA256 50749b3221f774de2255d4671628500728fcd14bcb4c95e81a6eb936294eadb1
MD5 5d8c22c72ea7991cf73a5604471b8473
BLAKE2b-256 41210c76906bdac0bd712f6810978c69530500d45d1e129860842b48f2386a2b

See more details on using hashes here.

File details

Details for the file pg4n-1.0.0.65-py3-none-any.whl.

File metadata

  • Download URL: pg4n-1.0.0.65-py3-none-any.whl
  • Upload date:
  • Size: 116.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.2.2 CPython/3.10.7 Linux/5.15.0-1024-azure

File hashes

Hashes for pg4n-1.0.0.65-py3-none-any.whl
Algorithm Hash digest
SHA256 2ff0488e090ab54b67e0445f7f67e6fd60839a0d3c366e652ef4bc8e71fc9a8b
MD5 3e86406072a53ee4378107de6334ef88
BLAKE2b-256 edc485a90dd30415d25ed36f5a48ce481a036e6015b7979399eb67b6bff2c183

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