├── .gitignore ├── LICENSE ├── README.md ├── add_cookie.py ├── id2name.json ├── requirements.txt ├── ys_UserInfoGet.py └── ys_api ├── __init__.py ├── cookie_set.py ├── main.py ├── mys_cookies.db ├── settings.py └── structs.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Womsxd/YuanShen_User_Info/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Womsxd/YuanShen_User_Info/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Womsxd/YuanShen_User_Info/HEAD/README.md -------------------------------------------------------------------------------- /add_cookie.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Womsxd/YuanShen_User_Info/HEAD/add_cookie.py -------------------------------------------------------------------------------- /id2name.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Womsxd/YuanShen_User_Info/HEAD/id2name.json -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | requests~=2.26.0 2 | pydantic~=1.8.2 3 | -------------------------------------------------------------------------------- /ys_UserInfoGet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Womsxd/YuanShen_User_Info/HEAD/ys_UserInfoGet.py -------------------------------------------------------------------------------- /ys_api/__init__.py: -------------------------------------------------------------------------------- 1 | from .main import * 2 | -------------------------------------------------------------------------------- /ys_api/cookie_set.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Womsxd/YuanShen_User_Info/HEAD/ys_api/cookie_set.py -------------------------------------------------------------------------------- /ys_api/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Womsxd/YuanShen_User_Info/HEAD/ys_api/main.py -------------------------------------------------------------------------------- /ys_api/mys_cookies.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Womsxd/YuanShen_User_Info/HEAD/ys_api/mys_cookies.db -------------------------------------------------------------------------------- /ys_api/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Womsxd/YuanShen_User_Info/HEAD/ys_api/settings.py -------------------------------------------------------------------------------- /ys_api/structs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Womsxd/YuanShen_User_Info/HEAD/ys_api/structs.py --------------------------------------------------------------------------------