pgstac icon indicating copy to clipboard operation
pgstac copied to clipboard

Special characters in password

Open drnextgis opened this issue 1 year ago • 0 comments

If the database password contains special characters then it is not possible just to copy-paste it to the terminal as part of the --dsn while using pypgstac load.

To overcome the issue we have to do something like:

from urllib.parse import quote
print(quote(password))

It would be nice to add support of configuring DSN via env vars.

drnextgis avatar Aug 09 '22 09:08 drnextgis