-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Squashed commit of the following: commit 3350d7e Author: Roberto Bochet <[email protected]> Date: Fri Jun 28 19:40:39 2024 +0200 Update gitignore commit 0b4b1ec Author: Roberto Bochet <[email protected]> Date: Fri Jun 28 19:40:14 2024 +0200 Add verbosity argument commit 1513647 Author: Roberto Bochet <[email protected]> Date: Fri Jun 28 19:29:58 2024 +0200 Improve log readability commit bc3d862 Author: Roberto Bochet <[email protected]> Date: Fri Jun 28 19:29:36 2024 +0200 Fix bug and improve logging commit 11d31ba Author: Roberto Bochet <[email protected]> Date: Fri Jun 28 19:21:28 2024 +0200 Minor change in readme commit a125031 Author: Roberto Bochet <[email protected]> Date: Fri Jun 28 19:21:06 2024 +0200 Minor improve in docker build
- Loading branch information
1 parent
5d76a5e
commit f16ab1f
Showing
10 changed files
with
54 additions
and
26 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 |
---|---|---|
|
@@ -2,3 +2,4 @@ | |
/.venv | ||
/dist | ||
/build | ||
/config.yaml |
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
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,10 +1,6 @@ | ||
class ScraperError(Exception): | ||
class ScraperTaskError(Exception): | ||
pass | ||
|
||
|
||
class NoTargetFound(ScraperError): | ||
pass | ||
|
||
|
||
class RequestError(ScraperError): | ||
class TargetScriptError(ScraperTaskError): | ||
pass |
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