alan-turing-institute / sqlsynthgen

Synthetic data for SQL databases
MIT License
11 stars 1 forks source link

Finance tutorial #129

Closed Iain-S closed 1 year ago

Iain-S commented 1 year ago

Summary

Finishes the loans dataset tutorial.

I have not used story generators but have covered the other features (including the fact that we now have a SNS workaround for MariaDB).

Other Changes

1

Removes reference in readthedocs config to docs/requirements.txt, which no longer exists.

2

Uses yaml.load() rather than yaml.safe_load() as we are not using the safe dumper in download_table(). The alternative would be to use the safe version in both. The "unsafe" version gives us vocab export files that can look a bit like this, with the data type included when its literal value is not enough to fully define it:

- A10: !!python/object/apply:decimal.Decimal
  - '100'
  A11: 12541
Iain-S commented 1 year ago

Thanks @cptanalatriste

Changes made and branch merged.