mirror of
https://github.com/mikf/gallery-dl.git
synced 2024-11-22 10:42:34 +01:00
131 lines
3.6 KiB
Python
131 lines
3.6 KiB
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 pornhub
|
|
from gallery_dl import exception
|
|
|
|
|
|
__tests__ = (
|
|
{
|
|
"#url" : "https://www.pornhub.com/album/19289801",
|
|
"#category": ("", "pornhub", "gallery"),
|
|
"#class" : pornhub.PornhubGalleryExtractor,
|
|
"#pattern" : r"https://\w+.phncdn.com/pics/albums/\d+/\d+/\d+/\d+/",
|
|
"#count" : ">= 300",
|
|
|
|
"id" : int,
|
|
"num" : int,
|
|
"score" : int,
|
|
"views" : int,
|
|
"caption": str,
|
|
"user" : "Danika Mori",
|
|
"gallery": {
|
|
"id" : 19289801,
|
|
"score": int,
|
|
"views": int,
|
|
"tags" : list,
|
|
"title": "Danika Mori Best Moments",
|
|
},
|
|
},
|
|
|
|
{
|
|
"#url" : "https://www.pornhub.com/album/69040172",
|
|
"#category": ("", "pornhub", "gallery"),
|
|
"#class" : pornhub.PornhubGalleryExtractor,
|
|
"#exception": exception.AuthorizationError,
|
|
},
|
|
|
|
{
|
|
"#url" : "https://www.pornhub.com/gif/43726891",
|
|
"#category": ("", "pornhub", "gif"),
|
|
"#class" : pornhub.PornhubGifExtractor,
|
|
"#pattern" : r"https://\w+\.phncdn\.com/pics/gifs/043/726/891/43726891a\.webm",
|
|
|
|
"date" : "dt:2023-04-20 00:00:00",
|
|
"extension": "webm",
|
|
"filename" : "43726891a",
|
|
"id" : "43726891",
|
|
"tags" : [
|
|
"sloppy deepthroat",
|
|
"perfect body",
|
|
"petite brunette",
|
|
"mouth fuck",
|
|
"big dick",
|
|
"natural big tits",
|
|
"deepthroat swallow",
|
|
"amateur couple",
|
|
"homemade",
|
|
"girls wanking boys",
|
|
"hardcore sex",
|
|
"babes 18 year",
|
|
],
|
|
"timestamp": "5:07",
|
|
"title" : "Intense sloppy blowjob of Danika Mori",
|
|
"url" : "https://el.phncdn.com/pics/gifs/043/726/891/43726891a.webm",
|
|
"user" : "Danika Mori",
|
|
"viewkey" : "64367c8c78a4a",
|
|
},
|
|
|
|
{
|
|
"#url" : "https://www.pornhub.com/pornstar/danika-mori",
|
|
"#category": ("", "pornhub", "user"),
|
|
"#class" : pornhub.PornhubUserExtractor,
|
|
},
|
|
|
|
{
|
|
"#url" : "https://www.pornhub.com/pornstar/danika-mori/photos",
|
|
"#category": ("", "pornhub", "photos"),
|
|
"#class" : pornhub.PornhubPhotosExtractor,
|
|
"#pattern" : pornhub.PornhubGalleryExtractor.pattern,
|
|
"#count" : ">= 6",
|
|
},
|
|
|
|
{
|
|
"#url" : "https://www.pornhub.com/users/flyings0l0/photos/public",
|
|
"#category": ("", "pornhub", "photos"),
|
|
"#class" : pornhub.PornhubPhotosExtractor,
|
|
},
|
|
|
|
{
|
|
"#url" : "https://www.pornhub.com/users/flyings0l0/photos/private",
|
|
"#category": ("", "pornhub", "photos"),
|
|
"#class" : pornhub.PornhubPhotosExtractor,
|
|
},
|
|
|
|
{
|
|
"#url" : "https://www.pornhub.com/users/flyings0l0/photos/favorites",
|
|
"#category": ("", "pornhub", "photos"),
|
|
"#class" : pornhub.PornhubPhotosExtractor,
|
|
},
|
|
|
|
{
|
|
"#url" : "https://www.pornhub.com/model/bossgirl/photos",
|
|
"#category": ("", "pornhub", "photos"),
|
|
"#class" : pornhub.PornhubPhotosExtractor,
|
|
},
|
|
|
|
{
|
|
"#url" : "https://www.pornhub.com/pornstar/danika-mori/gifs",
|
|
"#category": ("", "pornhub", "gifs"),
|
|
"#class" : pornhub.PornhubGifsExtractor,
|
|
"#pattern" : pornhub.PornhubGifExtractor.pattern,
|
|
"#count" : ">= 42",
|
|
},
|
|
|
|
{
|
|
"#url" : "https://www.pornhub.com/users/flyings0l0/gifs",
|
|
"#category": ("", "pornhub", "gifs"),
|
|
"#class" : pornhub.PornhubGifsExtractor,
|
|
},
|
|
|
|
{
|
|
"#url" : "https://www.pornhub.com/model/bossgirl/gifs/video",
|
|
"#category": ("", "pornhub", "gifs"),
|
|
"#class" : pornhub.PornhubGifsExtractor,
|
|
},
|
|
|
|
)
|