Sergei Zharkov

Results 242 comments of Sergei Zharkov

> https://file.io/fRKvro 404 Not Found Please use github. It allows you to attach files to the response. ([empty.zip](https://github.com/yuru-yuri/manga-py/files/3475663/empty.zip)) The first time you sent the link, it didn’t work either. :-(

Oh! I understood my mistake. Thank! ... or not ... Please, install this: ``` pip install manga-py==1.8.3.1rc1 ``` This version will sprinkle with logs. Please send logs here. Run this...

P.S. in the directory from which manga-py will be launched, the debug-viz directory will be created. Please send her too. To get the log to the file, you can use...

Please make an archive for the debug-viz directory Or was there only 1 file of zero size? --- Ok... Try it ``` pip install manga-py==1.8.4rc2 ``` Run: ``` manga-py https://www.viz.com/shonenjump/chapters/dr-stone...

Ohh... The site changed the storage of cookies. Please do the same with the version `pip install manga-py==1.8.5rc1`

@mugenZebra There is no connection with you. If your problem is resolved, please close issue. If not, I'm still waiting for an answer.

Hey. I will try to check it Unfortunately, from my country there is no access to this section.

See it https://github.com/manga-py/manga-py/blob/stable_1.x/manga_py/cli/args.py#L50 https://github.com/manga-py/manga-py/blob/stable_1.x/manga_py/parser.py#L20 You don't need a argparse.Namespace , but an ArgumentParser (you can also overload the method if needed)

manga-py requires many different parameters to work (even if they are not explicitly passed) You can see all the parameters if you look here: https://github.com/manga-py/manga-py/tree/stable_1.x/manga_py/cli Example "url" param: https://github.com/manga-py/manga-py/blob/stable_1.x/manga_py/cli/_args_general.py#L7 You...

Example: ```python import manga_py.parser class MyParser(Parser): def _add_params(self, params: ArgumentParser = None): self.params = { "url": "http://manga/url", "cookies": [ "key=value", "key2=value2", ... ]} # and other keys ```