-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Atom support Parser renamed to RSSParser Better datetime parsing Small file changes
- Loading branch information
Showing
4 changed files
with
17 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
[tool.poetry] | ||
name = "rss-parser" | ||
version = "1.2.1" | ||
description = "Typed pythonic RSS parser" | ||
version = "2.0.0-alpha" | ||
description = "Typed pythonic RSS/Atom parser" | ||
authors = ["dhvcc <[email protected]>"] | ||
license = "GPL-3.0" | ||
readme = "README.md" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
from ._parser import AtomParser, BaseParser, Parser, RSSParser | ||
from ._parser import AtomParser, BaseParser, RSSParser | ||
|
||
__all__ = ("BaseParser", "Parser", "AtomParser", "RSSParser") | ||
__all__ = ("BaseParser", "AtomParser", "RSSParser") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters