Euiseo Cha 852a09137c chore: update dependency | 1 سال پیش | |
---|---|---|
.github | 2 سال پیش | |
nso_bridge | 2 سال پیش | |
scripts | 2 سال پیش | |
tests | 2 سال پیش | |
.flake8 | 2 سال پیش | |
.gitignore | 2 سال پیش | |
.isort.cfg | 2 سال پیش | |
LICENSE | 2 سال پیش | |
README.md | 2 سال پیش | |
pyproject.toml | 1 سال پیش |
Nintendo Switch Online API bridge (for Nintendo Switch Online API wrapper)
Nintendo Switch Online API Bridge is a simple wrapper. It allows you to easily access the API and get the data you need.
pip install nso-bridge
pip install git+https://github.com/zeroday0619/Nintendo_Switch_Online_API_Bridge.git
Get information of My Nintendo Switch Account.
import json
import keyring
from nso_bridge.nsa import NintendoSwitchAccount
from nso_bridge.nso import NintendoSwitchOnlineAPI
import logging
logging.basicConfig(level=logging.DEBUG, format='%(asctime)s - %(levelname)s - %(message)s')
app = NintendoSwitchAccount()
# override the nso_app_version
app.nso_app_version = app.get_nso_app_version()
session_token = keyring.get_password("nso-bridge", "session_token")
nso_res = NintendoSwitchOnlineAPI(
nso_app_version=app.nso_app_version,
session_token=session_token,
)
nso_res.sync_login()
print(json.dumps(nso_res.getCurrentUser(), indent=4, ensure_ascii=False))
Get information of friends registered to Nintendo Switch account.
import json
import keyring
from nso_bridge.nsa import NintendoSwitchAccount
from nso_bridge.nso import NintendoSwitchOnlineAPI
import logging
logging.basicConfig(level=logging.DEBUG, format='%(asctime)s - %(levelname)s - %(message)s')
app = NintendoSwitchAccount()
# override the nso_app_version
app.nso_app_version = app.get_nso_app_version()
session_token = keyring.get_password("nso-bridge", "session_token")
nso_res = NintendoSwitchOnlineAPI(
nso_app_version=app.nso_app_version,
session_token=session_token,
)
nso_res.sync_login()
print(json.dumps(nso_res.getFriends(), indent=4, ensure_ascii=False))