financeager.period uses the schematics package to perform validation of data (i.e. standard and recurrent entries).
There are a couple of issues with the library:
When running tests (e.g. python -m test.test_period) a bunch of warnings is emitted about deprecated functionality of library (however the functionality complained about is used internally (?), not at the API level). See schematics/schematics#571.
The schematics project has not seen a release in over a year, and the activity on the repository is little.
It could be considered to replace the usage of schematics with e.g.
marshmallow. 4.2k stars, last release in Nov 2019, 141 contributors.
pydantic which does validation via type annotations (Python >= 3.6 only). 1.7k stars, last release in Nov 2019, 85 contributors
voluptuous. 1.5k stars, last release in Aug 2019, 61 contributors.
cerberus 1.9k stars, last release in Oct 2019, 52 contributors.
schema 1.9k stars, last release in Sep 2019, 50 contributors.
It has to be estimated how much effort the migration would be (probably little since only to Schemas are used).
financeager.period
uses theschematics
package to perform validation of data (i.e. standard and recurrent entries). There are a couple of issues with the library:python -m test.test_period
) a bunch of warnings is emitted about deprecated functionality of library (however the functionality complained about is used internally (?), not at the API level). See schematics/schematics#571.It could be considered to replace the usage of schematics with e.g.
marshmallow
. 4.2k stars, last release in Nov 2019, 141 contributors.pydantic
which does validation via type annotations (Python >= 3.6 only). 1.7k stars, last release in Nov 2019, 85 contributorsvoluptuous
. 1.5k stars, last release in Aug 2019, 61 contributors.cerberus
1.9k stars, last release in Oct 2019, 52 contributors.schema
1.9k stars, last release in Sep 2019, 50 contributors. It has to be estimated how much effort the migration would be (probably little since only to Schemas are used).