basic mangadex integration (untested)

This commit is contained in:
franchioping 2024-07-22 22:05:38 +01:00
parent 3a212188d3
commit 38c6bef6e9
9 changed files with 97 additions and 0 deletions

8
.idea/.gitignore vendored Normal file
View File

@ -0,0 +1,8 @@
# Default ignored files
/shelf/
/workspace.xml
# Editor-based HTTP Client requests
/httpRequests/
# Datasource local storage ignored files
/dataSources/
/dataSources.local.xml

10
.idea/MangaBot.iml Normal file
View File

@ -0,0 +1,10 @@
<?xml version="1.0" encoding="UTF-8"?>
<module type="PYTHON_MODULE" version="4">
<component name="NewModuleRootManager">
<content url="file://$MODULE_DIR$">
<excludeFolder url="file://$MODULE_DIR$/.venv" />
</content>
<orderEntry type="jdk" jdkName="Python 3.12 (MangaBot)" jdkType="Python SDK" />
<orderEntry type="sourceFolder" forTests="false" />
</component>
</module>

View File

@ -0,0 +1,23 @@
<component name="InspectionProjectProfileManager">
<profile version="1.0">
<option name="myName" value="Project Default" />
<inspection_tool class="PyCompatibilityInspection" enabled="false" level="WARNING" enabled_by_default="false">
<option name="ourVersions">
<value>
<list size="1">
<item index="0" class="java.lang.String" itemvalue="3.13" />
</list>
</value>
</option>
</inspection_tool>
<inspection_tool class="PyPackageRequirementsInspection" enabled="true" level="WARNING" enabled_by_default="true">
<option name="ignoredPackages">
<value>
<list size="1">
<item index="0" class="java.lang.String" itemvalue="typing_extensions" />
</list>
</value>
</option>
</inspection_tool>
</profile>
</component>

View File

@ -0,0 +1,6 @@
<component name="InspectionProjectProfileManager">
<settings>
<option name="USE_PROJECT_PROFILE" value="false" />
<version value="1.0" />
</settings>
</component>

7
.idea/misc.xml Normal file
View File

@ -0,0 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="Black">
<option name="sdkName" value="Python 3.11" />
</component>
<component name="ProjectRootManager" version="2" project-jdk-name="Python 3.12 (MangaBot)" project-jdk-type="Python SDK" />
</project>

8
.idea/modules.xml Normal file
View File

@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="ProjectModuleManager">
<modules>
<module fileurl="file://$PROJECT_DIR$/.idea/MangaBot.iml" filepath="$PROJECT_DIR$/.idea/MangaBot.iml" />
</modules>
</component>
</project>

6
.idea/vcs.xml Normal file
View File

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="VcsDirectoryMappings">
<mapping directory="" vcs="Git" />
</component>
</project>

1
main.py Normal file
View File

@ -0,0 +1 @@
sada

28
manga.py Normal file
View File

@ -0,0 +1,28 @@
import mangadex as md
import os
from dotenv import load_dotenv
load_dotenv()
class MangaWrapper:
def __init__(self):
self.auth = md.auth.Auth()
self.auth.login(os.environ.get("MANGADEX_USR"),
os.environ.get("MANGADEX_PSWD"),
os.environ.get("MANGADEX_CLIENT"),
os.environ.get("MANGADEX_TOKEN")
)
self.manga = md.series.Manga(auth=self.auth)
self.chapter = md.series.Chapter(auth=self.auth)
def search(self, title: str, limit: int = 10) -> list[md.series.Manga]:
return self.manga.get_manga_list(title=title)
def get_chapters(self, manga: md.series.Manga):
return self.chapter.get_manga_volumes_and_chapters(manga_id=manga.manga_id)
if __name__ == "__main__":
mw = MangaWrapper()
print(mw.search("I Turned off the Pain Perception Setting!")[0])