wolfswolke / aniworld_scraper

Aniworld.to mp4 scraper for animes.
MIT License
49 stars 16 forks source link

[BUG] A bunch of error messages #17

Closed Monokuma11 closed 11 months ago

Monokuma11 commented 11 months ago

Describe the bug: A bunch of error messages and I don't know, if my fresh installed python (3.11.4) is the problem or the program

Steps to Reproduce the bug: Just use any anime and start the program "start_app.py"

Expected behavior: It should begin with scraping and functioning properly

Screenshots

Unbenannt

Additional Info I did add python to my PATH

wolfswolke commented 11 months ago

@Monokuma11 please make sure you are connected to the internet. The error message implies that a network error has occurred. This can either be a problem with no network, a vpn, proxy,...

Monokuma11 commented 11 months ago

I am connected to the internet, which is why I am confused

wolfswolke commented 11 months ago

@Monokuma11 can you please send me the command you used?

Monokuma11 commented 11 months ago

py start_app.py

wolfswolke commented 11 months ago

@Monokuma11 please read the readme File. You are missing every parameter. (Anime or series, name,...)

Monokuma11 commented 11 months ago

It's not enough anymore to edit the file itself? On a previous release I only had to enter the name in the file.

wolfswolke commented 11 months ago

I don't know from the top of my head. I can take a look when I'm home. Until then you can either try with parameters or in the code set the logging level from info to debug.

Monokuma11 commented 11 months ago

Thanks a lot! I will tinker with it on occasion.

Monokuma11 commented 11 months ago

Little other issue I found

manuel not working
speedyconzales commented 11 months ago

This is completely network related as wolfswolke said. Did you try it again? What are your network configurations? Especially when you mentioned that the script was working before: what did you change? Using a VPN, proxy? Do you have the possibility to check if the error persists if you e.g. connect to the hotspot of your mobile phone?

Monokuma11 commented 11 months ago

It somehow worked after a while, thanks guys! Now it is just the manuel_episode_download.py thing, that bothers me

speedyconzales commented 11 months ago

It somehow worked after a while, thanks guys! Now it is just the manuel_episode_download.py thing, that bothers me

this script is not compatible with the latest version.

if you just want to download one specific episode there are only two lines of code needed in start_app.py to achieve this:

add those after this line of code of start_app.py

if episode != <DESIRED_EPISODE_NUMBER>:
    continue
Monokuma11 commented 11 months ago

I assume DESIRED_EPISODE_NUMBER is just for me to replace it with a number?

speedyconzales commented 11 months ago

yes