mirror of
https://github.com/nexus-stc/hyperboria
synced 2024-12-21 09:07:46 +01:00
7389f85ef2
- Move fancy naming to Hub - Adopt translations - Fix long authors list in bot - Support CJK in scitech - Fixed pylon bug with decoding improper unicode ch... GitOrigin-RevId: 74f73c44f749a71cb65dd5ddd3416f32a83d329f
20 lines
370 B
Python
20 lines
370 B
Python
from .base import BaseSource
|
|
from .libgen_doi import LibgenDoiSource
|
|
from .libgen_md5 import LibgenMd5Source
|
|
from .libgen_new import (
|
|
LibraryLolSource,
|
|
)
|
|
from .scihub import (
|
|
SciHubSeSource,
|
|
SciHubTwSource,
|
|
)
|
|
|
|
__all__ = [
|
|
'BaseSource',
|
|
'LibgenDoiSource',
|
|
'LibgenMd5Source',
|
|
'LibraryLolSource',
|
|
'SciHubSeSource',
|
|
'SciHubTwSource',
|
|
]
|