Added
- Added ability to pipe output to/from pynonymizer from stdout, using `-` in place of the input/output arguments. This functionality is available for mysql and postgres providers.
This means you can now use pynonymizer as part of a pipeline with other tools, e.g.
mysqldump [...] | pynonymizer -i - -o - | aws s3 cp - s3://bucket/aws-test.tar.gz
Changed
- Changed default logging output to stderr. This is to facilitate stdin/out being used for data.
Removed
- Removed production logging feature in favour of stderr/out logging. Logging to files will no longer by considered pynonymizer's concern.