luoshuijs

Results 22 comments of luoshuijs

I found that this issue is similar to #1896. I also found that the above steps work normally on Linux (with Ubuntu 22.1 as the system) when running tests with...

Thank you very much, @davidhewitt, for your response. However, after trying to set the `PYTHONHOME` and `PYTHONPATH` environment variables as you suggested, I'm still facing issues. Here's what I did...

> @luoshuijs did you sat `PATH` too? I think you'll still need that also. Indeed, I forgot to set the `Path`. After making the modification, it did have an effect....

It is now very difficult to test on cn because the cn api now has captcha. If the server determines any abnormal behavior on an account, most apis will be...

We currently don't know how "abnormal behavior" is defined. But we may be able to reduce the chance of running into the issue by: 1. using the latest DS_SALT and...

We cannot expect each user to install the mitm proxy and can only generate random `x-rpc-device_id` values for the user to use. https://github.com/Le-niao/Yunzai-Bot/blob/07f39c89bd2603b447ba924aea43e55c2b6d6549/plugins/genshin/model/mys/mysApi.js#L301-L307 https://github.com/y1ndan/genshinhelper2/blob/5402ffbe76885432d387e3cf04bb9d1dcefb9075/genshinhelper/core.py#L14-L29 Daily rewards require a separate DS...

Since the dev dependency, FastAPI, no longer supports Python 3.7 from version 0.104.0 onwards, will SQLModel also need to drop support for Python 3.7 in the future? If so, it...

> Since the dev dependency, FastAPI, no longer supports Python 3.7 from version 0.104.0 onwards, will SQLModel also need to drop support for Python 3.7 in the future? If so,...

As for why I'm reporting this issue, it's because I still need to use the original Data for other tasks. I hope that the original data should not be damaged...

`NetworkError` can be from the `aiohttp` base exception. ```python3 try: await do_request() except asyncio.TimeoutError as err: # aiohttp.ClientSession throws subclasses of aiohttp.ClientError on connection issues, # except for timeouts, #...