-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixed issue with crashing while logging in
- Fixed issue with crashing while logging in due to a TypeError caused by the use of unary "+" operator on a string. The issue was resolved by removing the "+" signs from lines 95 and 101 of the AO3_Scraper.py file. The corrected lines now correctly print whether the login was successful or failed using the Fore.GREEN and Fore.RESET variables. - updated requirements - closure statement was updated to exit after displaying the closing message
- Loading branch information
1 parent
5bb77ca
commit 912fdeb
Showing
2 changed files
with
14 additions
and
12 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,3 +1,4 @@ | ||
requests~=2.28.2 | ||
beautifulsoup4~=4.11.1 | ||
tqdm~=4.64.1 | ||
beautifulsoup4==4.12.0 | ||
tqdm==4.65.0 | ||
colorama~=0.4.6 |