How to use Remarshal as a Python library
masterWhile Remarshal is primarily a CLI application, it can be used as a Python library. Because the library usage is not as strictly governed as the CLI, it is recommended to pin your dependency to a specific minor version to avoid breaking changes in the Python API during minor updates.
Example dependency constraint:
remarshal>=2.1,<2.2
Note that dropping support for old Python versions is not considered a breaking change and will not trigger a major version bump.
# In your requirements.txt or pyproject.toml
remarshal>=2.1,<2.2