Skip to main content

Python library for communicating with non-public Webtoon API.

Project description

Webtoon python API

A python library for communicating with non-public Webtoon API.

Usage example

from webtoon_api import WebtoonApi

api = WebtoonApi()

episode = api.episodeInfo(
    titleNo=2702,
    episodeNo=1,
    serviceZone="GLOBAL",
    language="en",
    platform="APP_ANDROID"
)

with open("image.jpg", "wb") as file:
    file.write(
        api.get_static_content(episode["episodeInfo"]["imageInfo"][0]["url"])
    )

The general API call looks like

api.<methodName>(<args>)

Installation

Using pip

pip install webtoon-api

Using poetry directly from repository

pip install poetry
poetry install

API reference

See API.md in docs.

How we got here

If you are interested in how this library was created, have a look at Reverse-engineering.md in docs

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

webtoon-api-0.1.0.tar.gz (2.6 kB view hashes)

Uploaded Source

Built Distribution

webtoon_api-0.1.0-py3-none-any.whl (3.0 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