Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

> This only supports Python 3.

A simple pure-python module to parse RFC822-like Debain data formats.
A simple pure-python module to parse RFC822-like Debian data formats.

This can include:

Expand Down Expand Up @@ -79,7 +79,7 @@ from debian_parser import PackagesParser

sample_packages_file = open("Packages", "r").read()

parser = PackagesParser(sample_pacakges_file)
parser = PackagesParser(sample_packages_file)
data = parser.parse()
```

Expand Down Expand Up @@ -251,7 +251,7 @@ data = parser.parse()

It depends, if you need an a simple module to *read* and act upon RFC822-like Debain data formats, this might be a good alternative as compared to ``python-debian`` pacakge.

If you need manuiplate the data, or need more extensibility. It's probably best not to use this.
If you need manipulate the data, or need more extensibility. It's probably best not to use this.

This module will **not** "verify" if the file provided is valid. Meaning it can fail catastrophically if invalid. Please ensure verification of the data before..
***
Expand Down