-
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.
Rewrite entire requests backend with rust using the PyO3 binding.
- Add a SessionRs struct/class to efficiently handle requests. - Add a HttpResponse struct/class to store response data and handle decompression Additional Updates - Remove ip scanning functions - Move all tor related functions to the tor module for more intuitive library structure - Remove autosession functionality as it provided less impressive performence improvement compared to rust
- Loading branch information
Showing
10 changed files
with
860 additions
and
504 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,3 +1,5 @@ | ||
/pygrab/tester.* | ||
/pygrab/test.* | ||
/pygrab/unit-tester.* | ||
/pygrab/unit-tester.* | ||
/pygrab/rust_dependencies/*.dll | ||
/pygrab/rust_dependencies/*.so |
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,2 @@ | ||
from .pygrab import * | ||
from .pygrab import * | ||
from pygrab.rust_dependencies.rust_lib import SessionRs, HttpResponse |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.