For more detailed information on how to manage these files, you can refer to the official Poetry Documentation .
Are you trying to in your lock file or just looking for a template to build one? poetry.lock
: Each dependency and sub-dependency is listed in its own block to ensure a consistent environment across different machines. For more detailed information on how to manage
: Lists the specific versions of other packages that this package requires to function. poetry.lock
: Contains the specific filenames and SHA256 hashes for the wheels or source distributions. This ensures that the downloaded content has not been tampered with.
: Pins the exact version of the package that was resolved.
TOP