mirror of
https://github.com/mikf/gallery-dl.git
synced 2024-11-22 10:42:34 +01:00
625e94fa7d
still not everything, but good enough for now
34 lines
914 B
Python
34 lines
914 B
Python
# -*- coding: utf-8 -*-
|
|
|
|
# This program is free software; you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License version 2 as
|
|
# published by the Free Software Foundation.
|
|
|
|
from gallery_dl.extractor import itchio
|
|
|
|
|
|
__tests__ = (
|
|
{
|
|
"#url" : "https://sirtartarus.itch.io/a-craft-of-mine",
|
|
"#category": ("", "itchio", "game"),
|
|
"#class" : itchio.ItchioGameExtractor,
|
|
"#pattern" : r"https://(dl.itch.zone|itchio-mirror.\w+.r2.cloudflarestorage.com)/upload2/game/1983311/\d+\?",
|
|
"#count" : 3,
|
|
|
|
"extension": "",
|
|
"filename" : r"re:\d+",
|
|
"game" : {
|
|
"id" : 1983311,
|
|
"noun" : "game",
|
|
"title": "A Craft Of Mine",
|
|
"url" : "https://sirtartarus.itch.io/a-craft-of-mine",
|
|
},
|
|
"user" : {
|
|
"id" : 4060052,
|
|
"name": "SirTartarus",
|
|
"url" : "https://sirtartarus.itch.io",
|
|
},
|
|
},
|
|
|
|
)
|