mirror of
https://github.com/mikf/gallery-dl.git
synced 2024-11-23 11:12:40 +01:00
34 lines
881 B
Python
34 lines
881 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://\w+\.ssl\.hwcdn\.net/upload2/game/1983311/7723751\?",
|
||
|
"#count" : 1,
|
||
|
|
||
|
"extension": "",
|
||
|
"filename" : "7723751",
|
||
|
"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",
|
||
|
},
|
||
|
},
|
||
|
|
||
|
)
|