-
Notifications
You must be signed in to change notification settings - Fork 345
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Add BeautifulSoupParser type alias (#674)
To avoid repeating same Literal definitions.
- Loading branch information
Showing
2 changed files
with
5 additions
and
3 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
try: | ||
from ._beautifulsoup_crawler import BeautifulSoupCrawler | ||
from ._beautifulsoup_crawler import BeautifulSoupCrawler, BeautifulSoupParser | ||
from ._beautifulsoup_crawling_context import BeautifulSoupCrawlingContext | ||
except ImportError as exc: | ||
raise ImportError( | ||
"To import anything from this subpackage, you need to install the 'beautifulsoup' extra." | ||
"For example, if you use pip, run `pip install 'crawlee[beautifulsoup]'`.", | ||
) from exc | ||
|
||
__all__ = ['BeautifulSoupCrawler', 'BeautifulSoupCrawlingContext'] | ||
__all__ = ['BeautifulSoupCrawler', 'BeautifulSoupCrawlingContext', 'BeautifulSoupParser'] |
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