No project description provided
Project description
Nexon OpenAPI Python library
Nexon Python 라이브러리는 넥슨에서 제공하는 OpenAPI에 대한 python 인터페이스를 제공합니다.
Requirements
Python 3.7 버전 이상
Install
pip install nexon_openapi
Features
Nexon OpeanAPI Python 라이브러리에서 지원하는 기능들은 다음과 같습니다.
- 넥슨 OpenAPI에 대한 동기 및 비동기 클라이언트 지원
- 요청/응답에 대한 강력한 타입 힌트 지원
- 일시적인 오류에 대한 자동 재시도 (
408
,409
,429
,500
)
Supported APIs
현재까지 지원되는 API 목록은 다음과 같습니다.
- 바람의나라
- 바람의나라:연
- 메이플스토리
- 메이플스토리M
- 마비노기 영웅전
- 크레이지아케이드
- 히트2
- V4
- 카트라이더 러쉬플러스
- FC 온라인
Usage
API 호출 예제는 여기에서 확인하실 수 있습니다.
import os
from nexon_openapi import NexonOpenAPI
client = NexonOpenAPI(
api_key=os.environ.get("NEXON_OPENAPI_API_KEY") # api_key 값이 주어지지 않은 경우, 기본적으로 환경 변수(`NEXON_OPEN_API_KEY`)를 파싱합니다.
)
ocid = client.maplestory.get_ocid(character_name="")
character_basic = client.maplestory.get_character_basic(ocid=ocid)
Async usage
API 호출 예제는 여기에서 확인하실 수 있습니다.
import asyncio
import os
from nexon_openapi import NexonOpenAPIAsync
client = NexonOpenAPIAsync(
api_key=os.environ.get("NEXON_OPENAPI_API_KEY") # api_key 값이 주어지지 않은 경우, 기본적으로 환경 변수(`NEXON_OPEN_API_KEY`)를 파싱합니다.
)
async def main() -> None:
ocid = await client.maplestory.get_ocid(character_name="")
character_basic = await client.maplestory.get_character_basic(ocid=ocid)
asyncio.run(main())
Examples
API 호출 예제는 여기에서 확인하실 수 있습니다.
Retries
API 요청 중에 오류가 발생한 경우, 특저 오류는 2번의 재시도를 하도록 기본적으로 설정되어 있습니다. 네트워크 연결 오류, 408
(Request Timeout), 409
(Conflict), 429
(Rate Limit), 그리고 >=500
(Internal Server Error)에 해당하는 오류들은 기본적으로 모두 재시도됩니다.
max_retries
옵션을 사용하여 재시도 설정을 구성하거나 비활성화할 수 있습니다:"
from nexon_openapi import NexonOpenAPI
client = NexonOpenAPI(max_retries=0) # 기본 값은 2입니다.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
nexon_openapi-0.0.5.tar.gz
(49.1 kB
view details)
Built Distribution
File details
Details for the file nexon_openapi-0.0.5.tar.gz
.
File metadata
- Download URL: nexon_openapi-0.0.5.tar.gz
- Upload date:
- Size: 49.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.7.1 CPython/3.11.5 Darwin/21.1.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f95c511282f26a611627985e16fab1b8ba4894981331549bfaa92113191b80ed |
|
MD5 | 0913555be453aee4b6f9e62a02fc2b51 |
|
BLAKE2b-256 | f5af1f85288d62057e193da9c484c9a15bc98356b4c18602b86e27f21dc0b555 |
File details
Details for the file nexon_openapi-0.0.5-py3-none-any.whl
.
File metadata
- Download URL: nexon_openapi-0.0.5-py3-none-any.whl
- Upload date:
- Size: 62.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.7.1 CPython/3.11.5 Darwin/21.1.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 039b5c49e70c61b01184d0a4a0f281f7e9c54af8198956c61c8d4757c42df9fd |
|
MD5 | fea37442baa46bec86078294c2ea6650 |
|
BLAKE2b-256 | 3c80a32458158039b41b2b3db97a59693522995d38d6a152be3d1719f97fd60e |