-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* ♻️ refactor design * 🗑️ Deprecated selectolax * ♻️ improved contracts and base design * ✅ add rocketry serve test * 🦺 Update AioHttpEngine `cookies` and `proxy` type * ✅ Add engine test for attrs * 🎨 Update pre-commit and `pyproject.toml` and `setup.cfg` * 🎨 Apply format with conf on all project * 🔧 update config files * 🚨 fix mypy type errors * 🎨 improve core adaptor * ✅ Update tests * 👷 Update req-dev * 👷 Update tox.ini * 🎨 Improved and centralized protos * ⚡️ Update `_get_cookie` and add a test for non-setuped engine --------- Co-authored-by: Sadegh Yazdani
- Loading branch information
1 parent
4d9459e
commit 7009996
Showing
51 changed files
with
624 additions
and
343 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 +1 @@ | ||
# fastcrawler | ||
# fastcrawler |
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 |
---|---|---|
|
@@ -2,5 +2,5 @@ | |
from fastcrawler import FastCrawler | ||
|
||
app = FastCrawler( | ||
crawlers=wiki_spider | ||
crawlers=wiki_spider, | ||
) |
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
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 |
---|---|---|
|
@@ -5,5 +5,5 @@ | |
__all__ = [ | ||
"Crawler", | ||
"Spider", | ||
"FastCrawler" | ||
"FastCrawler", | ||
] |
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
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,8 +1,8 @@ | ||
from .aio import AioHTTP | ||
from .base import ProxySetting, SetCookieParam | ||
from .aio import AioHttpEngine | ||
from .contracts import ProxySetting, SetCookieParam | ||
|
||
__all__ = [ | ||
"ProxySetting", | ||
"SetCookieParam", | ||
"AioHTTP", | ||
"AioHttpEngine", | ||
] |
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
Empty file.
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
Oops, something went wrong.