Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion pixivpy3/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,11 @@
from .aapi import AppPixivAPI
from .bapi import ByPassSniApi
from .utils import PixivError
from .webapi import WebPixivAPI # Import the new class

__all__ = ("AppPixivAPI", "ByPassSniApi", "PixivError")
__all__ = (
"AppPixivAPI",
"ByPassSniApi",
"PixivError",
"WebPixivAPI",
) # Add the new class to __all__
Loading