This Python library enables the use of the MapleStory OpenAPI of Nexon.
Project description
MapleStory OpenAPI Python Library
넥슨의 MapleStory OpenAPI를 Python 환경에서 사용할 수 있게 해주는 라이브러리입니다.
다른 언어로 작성된 패키지는 여기에서 확인할 수 있습니다.
(English document is HERE)
Installation
python 기반 프로젝트에 아래 정보를 입력하여 패키지를 추가하세요:
pip install maplestory-openapi
Usage
API Key
라이브러리를 사용하기 전에 Nexon Open API 콘솔에서 애플리케이션을 등록하고 api key를 발급 받으세요.
Sample Code
아래 코드는 닉네임을 바탕으로 특정 캐릭터의 식별자를 조회한 후 캐릭터의 기본 정보를 조회하는 예시입니다.
from maplestory_openapi import MapleStoryApi
from maplestory_openapi.api.maplestory_api_error import MapleStoryApiException
api_key = '{Your API Key}'
api = MapleStoryApi(api_key=api_key)
# run your code
try:
character = api.get_character_id('{Your Character Name}')
character_basic = api.get_character_basic(ocid=character.ocid)
print(character_basic)
# exception handling
except MapleStoryApiException as e:
# handle MapleStoryApiException
더 많은 예시는 아래 링크의 테스트 케이스에서 확인할 수 있습니다.
Exception Handling
MapleStory OpenAPI 가이드에 서술된 에러 사유를 MapleStoryApiException
를 통해 예외 처리 해야합니다.
MapleStoryApi
는 특정 상태의 예외를 발생시키지 않도록 설계되었으나, 라이브러리를 사용하는 개발자의 실수로 인해 여전히 일부 상태의 예외가 발생할 수 있습니다.
따라서 아래 표에 설명된 error code 목록을 기반으로 MapleStoryApiException
를 예외 처리하시기 바랍니다.
ErrorCode | Description |
---|---|
OPENAPI00001 | 서버 내부 오류 |
OPENAPI00002 | 권한이 없는 경우 |
OPENAPI00003 | 유효하지 않은 식별자 |
OPENAPI00004 | 파라미터 누락 또는 유효하지 않음 |
OPENAPI00005 | 유효하지 않은 API KEY |
OPENAPI00006 | 유효하지 않은 API PATH |
OPENAPI00007 | API 호출량 초과 |
OPENAPI00009 | 데이터 준비 중 |
OPENAPI00010 | 게임 점검 중 |
OPENAPI00011 | API 점검 중 |
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
Built Distribution
File details
Details for the file maplestory_openapi-2.7.2.tar.gz
.
File metadata
- Download URL: maplestory_openapi-2.7.2.tar.gz
- Upload date:
- Size: 23.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.10.15
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 93a62fbb4c8b85f61b062ac1a85eaa68fbeddae82c9b54e5b45e77bae47f7773 |
|
MD5 | 5792284368213101161ea4e9a2f400d7 |
|
BLAKE2b-256 | 0a77fbd636cf07c9a45a33c78cde067e368fe6dfdc1c81aef40406fb43b59413 |
File details
Details for the file maplestory_openapi-2.7.2-py3-none-any.whl
.
File metadata
- Download URL: maplestory_openapi-2.7.2-py3-none-any.whl
- Upload date:
- Size: 43.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.10.15
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 368e298bab251c5e4a3cd95ac97635f6fe1bc2614fef64842cd2cadfbff9ff7c |
|
MD5 | c10e13679caec0174e8d665171cfe391 |
|
BLAKE2b-256 | a758371e3240404e2312bd214e1607ed32f07ee3318e992592392f9b600d1238 |