Skip to main content

This Python library enables the use of the MapleStory OpenAPI of Nexon.

Project description

MapleStory OpenAPI Python Library

PyPi Python

넥슨의 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


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

maplestory_openapi-2.7.0.tar.gz (23.5 kB view hashes)

Uploaded Source

Built Distribution

maplestory_openapi-2.7.0-py3-none-any.whl (42.7 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page