Package genshin

Modern API wrapper for Genshin Impact & Honkai Impact 3rd built on asyncio and pydantic.

Documentation: https://thesadru.github.io/genshin.py

API Reference: https://thesadru.github.io/genshin.py/pdoc/genshin

Source Code: https://github.com/thesadru/genshin.py

Expand source code
"""Modern API wrapper for Genshin Impact & Honkai Impact 3rd built on asyncio and pydantic.

Documentation: https://thesadru.github.io/genshin.py

API Reference: https://thesadru.github.io/genshin.py/pdoc/genshin

Source Code: https://github.com/thesadru/genshin.py
"""

from . import models, utility
from .client import *
from .constants import *
from .errors import *
from .types import *

__version__ = "1.0.0"

Sub-modules

genshin.client

Default client implementation.

genshin.constants

Constants hardcoded for optimizations.

genshin.errors

Errors received from the API.

genshin.models

API models.

genshin.paginators

Fancy paginators with a large amount of useful methods.

genshin.types

Types used in the library.

genshin.utility

Utilities for genshin.py.