You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+2Lines changed: 2 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -50,6 +50,8 @@ You can use one of the parsers to obtain information about your project or envir
50
50
| Parser | Class / Import | Description |
51
51
| ------- | ------ | ------ |
52
52
| Environment |`from cyclonedx.parser.environment import EnvironmentParser`| Looks at the packaged installed in your current Python environment. |
53
+
| PipEnvParser |`from cyclonedx.parser.pipenv import PipEnvParser`| Parses `Pipfile.lock` content passed in as a string. |
54
+
| PipEnvFileParser |`from cyclonedx.parser.pipenv import PipEnvFileParser`| Parses the `Pipfile.lock` file at the supplied path. |
53
55
| PoetryParser |`from cyclonedx.parser.poetry import PoetryParser`| Parses `poetry.lock` content passed in as a string. |
54
56
| PoetryFileParser |`from cyclonedx.parser.poetry import PoetryFileParser`| Parses the `poetry.lock` file at the supplied path. |
55
57
| RequirementsParser |`from cyclonedx.parser.requirements import RequirementsParser`| Parses a multiline string that you provide that conforms to the `requirements.txt`[PEP-508](https://www.python.org/dev/peps/pep-0508/) standard. |
0 commit comments