Steven van de Graaf
Steven van de Graaf
Hi! I just installed your ffprobe wrapper directly from [PyPi](https://pypi.org/project/ffprobe/), but when I tried to use it (as per the example), I get the following error: ```python >>> from ffprobe...
It might be worthwhile to replace `sphinx-click` with [cog](https://nedbatchelder.com/code/cog) in order to automatically generate CLI docs (and possibly also generate documentation in other places). For a reference implementation, see [this...
Add support for configuration using `pyproject.toml`, as specified in [PEP 518](https://www.python.org/dev/peps/pep-0518/). Inspired by both [`isort`](https://github.com/PyCQA/isort/blob/b06a000a730e5b7036bc1eef3c760f2df9359353/isort/settings.py#L772-L779) and [`mypy`](https://github.com/python/mypy/blob/aede3aefd75332f3911a43bb4a6a98baacce785a/mypy/config_parser.py#L170-L179), I have resorted to the [`tomli`](https://github.com/hukkin/tomli) package for parsing TOML files. As such,...
Hi! Let me firstly say that I am a big fan of your work -- I follow your tweets and blog posts with great interest 😄. Now onto the matter...
Added option for selecting tables to copy by a (regex) pattern. Closes #40.
Besides just `--all` to select all tables, `--table` to select specific table, or `--sql` to run a custom SQL query, it would be nice to be able to select table...
Rename `tile_server` to `tile_provider` and `TileServer` to `TileProvider`. After reading and thinking about this some more, I feel like `TileProvider` is a better representation of the thing it is supposed...
Add support for using multiple tile servers. This feature will allow users to combine a base map tile server (these are already included in PaperMap) with one ore more [overlay...
Add support for rendering features (i.e. shapes such as lines and polygons). PaperMap uses [Pillow](https://pillow.readthedocs.io/en/stable/) for the rendering of the map image. Pillow's [ImageDraw](https://pillow.readthedocs.io/en/stable/reference/ImageDraw.html) module provides all the methods we...
Add support for rendering text(s). PaperMap uses [fpdf2](https://pyfpdf.github.io/fpdf2/) for the generating of the paper map PDF document in general, and its [`.cell()`](https://pyfpdf.github.io/fpdf2/Text.html#cell) method to add the attribution, scale and coordinate...