# PDF Generation in Python

Testing whether it's possible/simple to generate a PDF document using Python.

## Usage

_(Optional)_ Create and activate a virtual environment:

```shell
python -m venv env
source env/bin/activate
```

Install the requirements:

```shell
pip install -r requirements.txt
```

Run the `main.py` script to create a `document.pdf` file with the example contents:

```shell
python main.py
```

Alternatively you can pass in a filename as the first parameter and it will create the file there:

```shell
python main.py my_file.pdf
```
