Man-go
Work in progress, currently arround 50% until 1.0 release
|
GetMangas |
GetMangaPage |
GetChapter |
In Manga |
✅ |
✅ |
✅ |
Nyaa |
✅ |
✅ |
❌ |
Manga Oni |
✅ |
❌ |
❌ |
Run in Docker-compose
version: '3.8'
services:
man-go:
image: man-go
ports:
- "7070:7070"
Clone and run the repository
- Clone the repository
git clone https://github.com/la-lo-go/man-go
- Create a new .env file in the root of the repository with the following scheme:
# API
API_IP="0.0.0.0"
API_PORT="7070"
# DB
DB_NAME="mango.sqlite3"
- Compile and run
API responses
Search
Query
/busqueda?search=[search_string]&max=[int (optional)]
Response
Example: /busqueda?search=jujutsu&max=1
[
{
"name": "jujutsu-kaisen",
"site": "InManga",
"link": "https://inmanga.com/ver/manga/Jujutsu-Kaisen/d88692a5-c341-47fc-8e39-da11a8fdee82",
"chapters_number": 0,
"cover": "https://pack-yak.intomanga.com/thumbnails/manga/Jujutsu-Kaisen/d88692a5-c341-47fc-8e39-da11a8fdee82"
},
{
"name": "jujutsu-kaisen",
"site": "Nyaa",
"link": "https://manganyaa.com/jujutsu-kaisen/leer-online-gratis-espanol",
"chapters_number": 99,
"cover": "https://content.manganyaa.com/file/mnyaaa/jujutsu-kaisen/description/1.jpg"
},
{
"name": "jujutsu-kaisen",
"site": "TuManga.net",
"link": "https://tumanga.net/manga/jujutsu-kaisen",
"chapters_number": 99,
"cover": ""
}
]
Manga Page
Query
/manga/[site]/[manga_name]
Response
Example: /manga/jujutsu-kaisen/nyaa
{
"name": "Jujutsu Kaisen",
"site": "Nyaa",
"cover": "https://content.manganyaa.com/file/mnyaaa/jujutsu-kaisen/description/1.jpg",
"chaptersNumber": 186,
"chaptersListed": [
{
"number": 186,
"linkOriginal": "https://manganyaa.com/jujutsu-kaisen/leer-online-gratis-espanol/capitulo/186"
},
{
"number": 185,
"linkOriginal": "https://manganyaa.com/jujutsu-kaisen/leer-online-gratis-espanol/capitulo/185"
},
...
{
"number": 2,
"linkOriginal": "https://manganyaa.com/jujutsu-kaisen/leer-online-gratis-espanol/capitulo/2"
},
{
"number": 1,
"linkOriginal": "https://manganyaa.com/jujutsu-kaisen/leer-online-gratis-espanol/capitulo/1"
}
]
}
Cache
File structure
man-go
├───endpoints <- endpoints functions
├───gorm <- gorm database functions
├───general_functions <- handy custom functions
├───json <- cached information
├───models <- api's structs
├───routers <- gin-gonic router
└───sites <- sites using the interface
├───inManga
├───mangaMx
├───nyaa
└───tuMangaNet
License
Mozilla Public License 2.0