Poetry.lock -
For more detailed information on how to manage these files, you can refer to the official Poetry Documentation .
: Contains the specific filenames and SHA256 hashes for the wheels or source distributions. This ensures that the downloaded content has not been tampered with. poetry.lock
Are you trying to in your lock file or just looking for a template to build one? For more detailed information on how to manage
[[package]] name = "requests" version = "2.31.0" description = "Python HTTP for Humans." optional = false python-versions = ">=3.7" files = [ {file = "requests-2.31.0-py3-none-any.whl", hash = "sha256:58cd214ed97e345e17303e1d873b1d211d0ce566a0add2d4f28d147729146a16"}, {file = "requests-2.31.0.tar.gz", hash = "sha256:942c5a758f98d75727181c00223126f5926c483a992451f28b43f11409f87522"}, ] [package.dependencies] certifi = ">=2017.4.17" charset-normalizer = ">=2.0.0, =2.5, =1.21.1, =1.5.6,!=1.5.7)"] use_chardet_on_py3 = ["chardet (>=3.0.2, Use code with caution. Copied to clipboard Key Components of a poetry.lock File Are you trying to in your lock file
: Each dependency and sub-dependency is listed in its own block to ensure a consistent environment across different machines.