Metadata-Version: 2.1
Name: pg4n
Version: 0.1.2.16
Summary: PostgreSQL for novices - helps debug PostgreSQL queries
Author: Jesper Niemelä
Author-email: jesper.niemela@tuni.fi
Requires-Python: >=3.10,<4.0
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Requires-Dist: myst-parser (>=0.18.1,<0.19.0)
Requires-Dist: pexpect (>=4.8.0,<5.0.0)
Requires-Dist: psycopg[binary] (>=3.1.3,<4.0.0)
Requires-Dist: pyparsing (>=3.0.9,<4.0.0)
Requires-Dist: pyte (>=0.8.1,<0.9.0)
Requires-Dist: pytest (>=7.1.3,<8.0.0)
Requires-Dist: pytest-postgresql (>=4.1.1,<5.0.0)
Requires-Dist: sphinx (>=5.2.3,<6.0.0)
Requires-Dist: sphinx-autodoc-typehints (>=1.19.4,<2.0.0)
Requires-Dist: sphinx-rtd-theme (>=1.0.0,<2.0.0)
Requires-Dist: sqlglot (>=6.3.2,<7.0.0)
Description-Content-Type: text/markdown

# PostgreSQL for novices

[📄 Documentation](https://project-c-sql.github.io/)

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

- [PostgreSQL for novices](#postgresql-for-novices)
  - [Notes for developers](#notes-for-developers)
    - [Poetry](#poetry)
      - [Versioning](#versioning)
    - [Imports](#imports)
    - [Running tests](#running-tests)
      - [Using docker](#using-docker)
    - [Building documents](#building-documents)
    - [Linting](#linting)

## Notes for developers

### Poetry

This project uses [Poetry](https://python-poetry.org/) for packaging. Although one should refer to [Poetry docs](https://python-poetry.org/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](https://pypi.org/project/pg4n/#history).

### 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:<br>
`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:<br>`poetry run sphinx-apidoc -f -o docs/api src/pg4n '*/test*'`
2. To generate the documentation:<br>`poetry run sphinx-build -b html docs docs/build`

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

### Linting

For linting, you need the CI tools: `poetry install --with=ci`. The tools used are:
- `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.

