hotdreams 0.0.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- hotdreams-0.0.1/LICENSE +29 -0
- hotdreams-0.0.1/PKG-INFO +649 -0
- hotdreams-0.0.1/README.md +620 -0
- hotdreams-0.0.1/hotdreams/__init__.py +26 -0
- hotdreams-0.0.1/hotdreams/sites/__init__.py +0 -0
- hotdreams-0.0.1/hotdreams/sites/noodlemagazine/__init__.py +3 -0
- hotdreams-0.0.1/hotdreams/sites/noodlemagazine/embed.py +61 -0
- hotdreams-0.0.1/hotdreams/sites/noodlemagazine/search_porn.py +42 -0
- hotdreams-0.0.1/hotdreams/sites/noodlemagazine/utils.py +77 -0
- hotdreams-0.0.1/hotdreams/sites/only/__init__.py +0 -0
- hotdreams-0.0.1/hotdreams/sites/only/nudes7/__init__.py +1 -0
- hotdreams-0.0.1/hotdreams/sites/only/nudes7/nudes7.py +72 -0
- hotdreams-0.0.1/hotdreams/sites/only/viralpornhub/__init__.py +1 -0
- hotdreams-0.0.1/hotdreams/sites/only/viralpornhub/viralpornhub.py +58 -0
- hotdreams-0.0.1/hotdreams/sites/playvids/__init__.py +1 -0
- hotdreams-0.0.1/hotdreams/sites/playvids/playvids.py +49 -0
- hotdreams-0.0.1/hotdreams/sites/pornhub/__init__.py +3 -0
- hotdreams-0.0.1/hotdreams/sites/pornhub/embed.py +65 -0
- hotdreams-0.0.1/hotdreams/sites/pornhub/search_porn.py +47 -0
- hotdreams-0.0.1/hotdreams/sites/pornhub/utils.py +47 -0
- hotdreams-0.0.1/hotdreams/sites/pornone/__init__.py +1 -0
- hotdreams-0.0.1/hotdreams/sites/pornone/pornone.py +206 -0
- hotdreams-0.0.1/hotdreams/sites/spankbang/__init__.py +3 -0
- hotdreams-0.0.1/hotdreams/sites/spankbang/embed.py +65 -0
- hotdreams-0.0.1/hotdreams/sites/spankbang/schoolbag.py +71 -0
- hotdreams-0.0.1/hotdreams/sites/spankbang/search_porn.py +80 -0
- hotdreams-0.0.1/hotdreams/sites/spankbang/spankbang.py +42 -0
- hotdreams-0.0.1/hotdreams/sites/tnaflix/__init__.py +2 -0
- hotdreams-0.0.1/hotdreams/sites/tnaflix/embed.py +96 -0
- hotdreams-0.0.1/hotdreams/sites/tnaflix/search_porn.py +130 -0
- hotdreams-0.0.1/hotdreams/sites/ukdevilz/__init__.py +1 -0
- hotdreams-0.0.1/hotdreams/sites/ukdevilz/ukdevilz.py +115 -0
- hotdreams-0.0.1/hotdreams/sites/xvideos/__init__.py +3 -0
- hotdreams-0.0.1/hotdreams/sites/xvideos/embed.py +53 -0
- hotdreams-0.0.1/hotdreams/sites/xvideos/search_porn.py +45 -0
- hotdreams-0.0.1/hotdreams/sites/xvideos/utils.py +59 -0
- hotdreams-0.0.1/hotdreams/utils/__init__.py +0 -0
- hotdreams-0.0.1/hotdreams/utils/objects.py +134 -0
- hotdreams-0.0.1/hotdreams/utils/settings.py +153 -0
- hotdreams-0.0.1/hotdreams.egg-info/PKG-INFO +649 -0
- hotdreams-0.0.1/hotdreams.egg-info/SOURCES.txt +68 -0
- hotdreams-0.0.1/hotdreams.egg-info/dependency_links.txt +1 -0
- hotdreams-0.0.1/hotdreams.egg-info/requires.txt +7 -0
- hotdreams-0.0.1/hotdreams.egg-info/top_level.txt +2 -0
- hotdreams-0.0.1/setup.cfg +4 -0
- hotdreams-0.0.1/setup.py +19 -0
- hotdreams-0.0.1/tests/__init__.py +0 -0
- hotdreams-0.0.1/tests/integration/__init__.py +0 -0
- hotdreams-0.0.1/tests/integration/embed/__init__.py +0 -0
- hotdreams-0.0.1/tests/integration/embed/test_nd.py +7 -0
- hotdreams-0.0.1/tests/integration/embed/test_ph.py +7 -0
- hotdreams-0.0.1/tests/integration/embed/test_sb.py +8 -0
- hotdreams-0.0.1/tests/integration/embed/test_tn.py +7 -0
- hotdreams-0.0.1/tests/integration/search_porn/__init__.py +0 -0
- hotdreams-0.0.1/tests/integration/search_porn/test_nd.py +26 -0
- hotdreams-0.0.1/tests/integration/search_porn/test_ph.py +30 -0
- hotdreams-0.0.1/tests/integration/search_porn/test_pn.py +30 -0
- hotdreams-0.0.1/tests/integration/search_porn/test_sb.py +34 -0
- hotdreams-0.0.1/tests/integration/search_porn/test_tn.py +31 -0
- hotdreams-0.0.1/tests/integration/search_porn/test_uk.py +29 -0
- hotdreams-0.0.1/tests/integration/search_porn/test_unit_nudes7.py +10 -0
- hotdreams-0.0.1/tests/integration/search_porn/test_unit_viralpornhub.py +9 -0
- hotdreams-0.0.1/tests/integration/search_porn/test_xv.py +30 -0
- hotdreams-0.0.1/tests/unit/__init__.py +0 -0
- hotdreams-0.0.1/tests/unit/test_custom_user_agent_proxies.py +59 -0
- hotdreams-0.0.1/tests/unit/test_noodlemagazine_utils.py +28 -0
- hotdreams-0.0.1/tests/unit/test_objects.py +47 -0
- hotdreams-0.0.1/tests/unit/test_pornhub_utils.py +35 -0
- hotdreams-0.0.1/tests/unit/test_settings.py +67 -0
- hotdreams-0.0.1/tests/unit/test_tnaflix_embed.py +50 -0
hotdreams-0.0.1/LICENSE
ADDED
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
BSD 3-Clause License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2022, Reinan Br.
|
|
4
|
+
All rights reserved.
|
|
5
|
+
|
|
6
|
+
Redistribution and use in source and binary forms, with or without
|
|
7
|
+
modification, are permitted provided that the following conditions are met:
|
|
8
|
+
|
|
9
|
+
1. Redistributions of source code must retain the above copyright notice, this
|
|
10
|
+
list of conditions and the following disclaimer.
|
|
11
|
+
|
|
12
|
+
2. Redistributions in binary form must reproduce the above copyright notice,
|
|
13
|
+
this list of conditions and the following disclaimer in the documentation
|
|
14
|
+
and/or other materials provided with the distribution.
|
|
15
|
+
|
|
16
|
+
3. Neither the name of the copyright holder nor the names of its
|
|
17
|
+
contributors may be used to endorse or promote products derived from
|
|
18
|
+
this software without specific prior written permission.
|
|
19
|
+
|
|
20
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
21
|
+
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
22
|
+
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
23
|
+
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
|
|
24
|
+
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
25
|
+
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
26
|
+
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
|
27
|
+
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
28
|
+
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
29
|
+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
hotdreams-0.0.1/PKG-INFO
ADDED
|
@@ -0,0 +1,649 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: hotdreams
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Library for getting educative url video's
|
|
5
|
+
Home-page: https://github.com/reinanbr/dreams
|
|
6
|
+
Author: Reinan Br
|
|
7
|
+
Author-email: slimchatuba@gmail.com
|
|
8
|
+
License: BSD v3
|
|
9
|
+
Keywords: video link api porn
|
|
10
|
+
Description-Content-Type: text/markdown
|
|
11
|
+
License-File: LICENSE
|
|
12
|
+
Requires-Dist: requests
|
|
13
|
+
Requires-Dist: mechanicalsoup
|
|
14
|
+
Requires-Dist: bs4
|
|
15
|
+
Requires-Dist: requests-html
|
|
16
|
+
Requires-Dist: lxml-html-clean
|
|
17
|
+
Requires-Dist: kitano>=0.0.8.5
|
|
18
|
+
Requires-Dist: cloudscraper
|
|
19
|
+
Dynamic: author
|
|
20
|
+
Dynamic: author-email
|
|
21
|
+
Dynamic: description
|
|
22
|
+
Dynamic: description-content-type
|
|
23
|
+
Dynamic: home-page
|
|
24
|
+
Dynamic: keywords
|
|
25
|
+
Dynamic: license
|
|
26
|
+
Dynamic: license-file
|
|
27
|
+
Dynamic: requires-dist
|
|
28
|
+
Dynamic: summary
|
|
29
|
+
|
|
30
|
+
<div align='center'>
|
|
31
|
+
|
|
32
|
+
<img height='200px' width='460px' src='https://raw.githubusercontent.com/reinanbr/dreams/main/img/logo.jpeg'>
|
|
33
|
+
|
|
34
|
+
<h1>Hot Dreams</h1>
|
|
35
|
+
|
|
36
|
+
<p> a beautiful lib, for getting educative video's 🍑 (video's porn)</p>
|
|
37
|
+
<a href='#'><img alt="CodeFactor Grade" src="https://img.shields.io/codefactor/grade/github/reinanbr/dreams?logo=codefactor">
|
|
38
|
+
</a><img alt="CircleCI" src="https://img.shields.io/circleci/build/github/reinanbr/dreams">
|
|
39
|
+
<img alt="Code Climate maintainability" src="https://img.shields.io/codeclimate/maintainability-percentage/reinanbr/dreams">
|
|
40
|
+
|
|
41
|
+
<br/>
|
|
42
|
+
<a href='https://pypi.org/project/hotdreams/'><img src='https://img.shields.io/pypi/v/hotdreams'></a>
|
|
43
|
+
<a href='#'><img alt="PyPI - Downloads" src="https://img.shields.io/pypi/dm/hotdreams"></a>
|
|
44
|
+
<br/>
|
|
45
|
+
<img alt="PyPI - License" src="https://img.shields.io/pypi/l/hotdreams?color=orange">
|
|
46
|
+
<img alt="GitHub Pipenv locked Python version" src="https://img.shields.io/github/pipenv/locked/python-version/reinanbr/dreams">
|
|
47
|
+
|
|
48
|
+
|
|
49
|
+
<!-- redes sociais -->
|
|
50
|
+
<br/>
|
|
51
|
+
<a href='https://instagram.com/reysofts/'><img src='https://shields.io/badge/insta-reysofts-darkviolet?logo=instagram&style=flat'></a>
|
|
52
|
+
</div>
|
|
53
|
+
|
|
54
|
+
<br>
|
|
55
|
+
|
|
56
|
+
<a href="https://www.buymeacoffee.com/ReinanBr" target="_blank"><img height='30px' widht='100px' src="https://cdn.buymeacoffee.com/buttons/v2/default-yellow.png" alt="Buy Me A Coffee" style="height: 30px !important;width: 100px !important;" ></a>
|
|
57
|
+
|
|
58
|
+
<hr>
|
|
59
|
+
|
|
60
|
+
The initial idea from this lib, is create a API as lib for getting video's porn data from the best sites*, for working it in site's, bot's, app's, API's and other service's.
|
|
61
|
+
<br>
|
|
62
|
+
The SpankBang site was blocked request with cloudfare. <br>
|
|
63
|
+
In the present moment (Mar 10, 14:42 UTC-3, 2023), I added the following work's:
|
|
64
|
+
|
|
65
|
+
| site | data video | preview | embed url video | sugest. embed url's video | videos per page's |
|
|
66
|
+
|--------------|:----------:|:-------:|:---------------:|:--------------------------:|:----------------:|
|
|
67
|
+
|<a href='#pornone'>pornone</a> | ✅ | x | ✅ | | 36 |
|
|
68
|
+
|~~spankbang~~ (blocked) | ✅ | ✅ | ✅ | ✅ | 98 |
|
|
69
|
+
|<a href='#noodlemagazine'>noodlemagazine</a>| ✅ | ✅ | ✅ | ✅ | 24 |
|
|
70
|
+
|<a href='#ukdevilz'> ukdevilz </a> | ✅ | x | ✅ | | 15 |
|
|
71
|
+
|<a href='#tnaflix'>tnaflix </a> | ✅ | ✅ | ✅ | ✅ | 60 |
|
|
72
|
+
|playvids | | | | | |
|
|
73
|
+
|<a href='#xvideos'>xvideos</a> | ✅ | x | ✅ | x | 27 |
|
|
74
|
+
|<a href='#pornhub'>pornhub</a> | ✅ | ✅ | ✅ | ✅ | 22 |
|
|
75
|
+
|ma6tube | | | | | |
|
|
76
|
+
|eponer | | | | | |
|
|
77
|
+
|upornia | | | | | |
|
|
78
|
+
|
|
79
|
+
And sites from <b>onlyfans</b> video's
|
|
80
|
+
|
|
81
|
+
| site | data video | preview |
|
|
82
|
+
|--------------|:----------:|:-------:|
|
|
83
|
+
| <a href='#nudes7'>nudes7</a> | ✅ | x |
|
|
84
|
+
|<a href='#viralpornhub'>viralpornhub </a>| ✅ | ✅ |
|
|
85
|
+
|
|
86
|
+
|
|
87
|
+
<img src='https://getdatausers.000webhostapp.com/index.php?file=views_hotdreams'>
|
|
88
|
+
|
|
89
|
+
<br>
|
|
90
|
+
Please, <a href="https://github.com/reinanbr/dreams" alt="github hotdreams">fork-me</a>.
|
|
91
|
+
|
|
92
|
+
<br>
|
|
93
|
+
<br>
|
|
94
|
+
<b><a href='https://github.com/reinanbr/dreams/blob/main/fixed.md' title='list of versions and you fix on'> version's fix</a></b>
|
|
95
|
+
|
|
96
|
+
<hr>
|
|
97
|
+
|
|
98
|
+
## Custom User-Agent and proxies
|
|
99
|
+
|
|
100
|
+
By default every site module ships with its own working headers. If you need to override the
|
|
101
|
+
User-Agent (e.g. to look like a different browser) or route requests through a proxy (e.g. to
|
|
102
|
+
avoid IP-based rate limiting), call these once, before or after importing the site modules you
|
|
103
|
+
plan to use — they apply to every site the lib supports:
|
|
104
|
+
|
|
105
|
+
```py
|
|
106
|
+
import hotdreams
|
|
107
|
+
|
|
108
|
+
hotdreams.set_user_agent('Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36')
|
|
109
|
+
|
|
110
|
+
hotdreams.set_proxies(http='http://user:pass@host:port', https='http://user:pass@host:port')
|
|
111
|
+
|
|
112
|
+
# ... use the lib normally
|
|
113
|
+
from hotdreams import pornhub as ph
|
|
114
|
+
ph.search_porn('lorena aquino')
|
|
115
|
+
|
|
116
|
+
# to stop using the proxy
|
|
117
|
+
hotdreams.clear_proxies()
|
|
118
|
+
```
|
|
119
|
+
|
|
120
|
+
`set_user_agent`/`set_proxies` retroactively update sites already imported, and also apply to any
|
|
121
|
+
site module imported afterwards, so the order of imports doesn't matter.
|
|
122
|
+
|
|
123
|
+
<hr>
|
|
124
|
+
|
|
125
|
+
# Examples
|
|
126
|
+
|
|
127
|
+
<!-- ### SpankBang
|
|
128
|
+
```py
|
|
129
|
+
|
|
130
|
+
>>> from hotdreams import spankbang as sb
|
|
131
|
+
|
|
132
|
+
>>> vds = sb.search_porn('lorena aquino')
|
|
133
|
+
|
|
134
|
+
>>> vds
|
|
135
|
+
|
|
136
|
+
SpankBang(
|
|
137
|
+
sucess="True",
|
|
138
|
+
query="lorena%20aquino",
|
|
139
|
+
len_videos=195,
|
|
140
|
+
len_pages=2,
|
|
141
|
+
videos_per_pages=97,
|
|
142
|
+
ping=3.68935227394104,
|
|
143
|
+
url_base="https://spankbang.com",
|
|
144
|
+
url_search="https://spankbang.com/s/lorena%20aquino/1/?o=trending",
|
|
145
|
+
videos=[
|
|
146
|
+
spankbang_video(
|
|
147
|
+
site_name="SpankBang",
|
|
148
|
+
title="lorena aquino slave los monsta bbc",
|
|
149
|
+
time="358 min",
|
|
150
|
+
page_number=1,
|
|
151
|
+
url="https://spankbang.com/6971t/video/lorena+aquino+slave+los+monsta+bbc",
|
|
152
|
+
url_font="https://spankbang.com/s/lorena%20aquino/1/?o=trending",
|
|
153
|
+
thumbnail="https://tbi.sb-cd.com/t/10506737/1/0/w:800/t1-enh/lorena-aquino-slave-los-monsta.jpg",
|
|
154
|
+
views="150K",
|
|
155
|
+
views_int=150000,
|
|
156
|
+
rating="99%",
|
|
157
|
+
rating_int=99,
|
|
158
|
+
date_upload="1 year",
|
|
159
|
+
date_upload_seconds=1645519768.9531095,
|
|
160
|
+
duration_seconds=21480,
|
|
161
|
+
preview="https://tbv.sb-cd.com/t/10506737/1/0/td.mp4",
|
|
162
|
+
indice=0),
|
|
163
|
+
...
|
|
164
|
+
```
|
|
165
|
+
|
|
166
|
+
<hr>
|
|
167
|
+
-->
|
|
168
|
+
|
|
169
|
+
## pornhub
|
|
170
|
+
|
|
171
|
+
### search
|
|
172
|
+
|
|
173
|
+
```py
|
|
174
|
+
|
|
175
|
+
>>> from hotdreams import pornhub as ph
|
|
176
|
+
|
|
177
|
+
>>> ph.search_porn('milf big ass',page_limit=8)
|
|
178
|
+
|
|
179
|
+
PornHub(
|
|
180
|
+
sucess=True,
|
|
181
|
+
query="milf%20big%20ass",
|
|
182
|
+
len_videos=404,
|
|
183
|
+
len_pages=8,
|
|
184
|
+
videos_per_pages=50,
|
|
185
|
+
ping=22.36020064353943,
|
|
186
|
+
url_base="https://pornhub.com",
|
|
187
|
+
url_search="https://pornhub.com/video/search?search=milf%20big%20ass&page=1",
|
|
188
|
+
videos=[
|
|
189
|
+
pornhub_video(
|
|
190
|
+
title="College Classmate Came to my Room to do Homework",
|
|
191
|
+
time="12:37",
|
|
192
|
+
url="https://pornhub.com/view_video.php?viewkey=63dd8219f21c4",
|
|
193
|
+
url_font="https://www.pornhub.com/video/search?search=milf+big+ass&page=1",
|
|
194
|
+
thumbnail="https://di.phncdn.com/videos/202302/03/424743701/original/(m=eafTGgaaaa)(mh=EkAOT4sQQJxduqfM)12.jpg",
|
|
195
|
+
site_name="PornHub",
|
|
196
|
+
page_number=1,
|
|
197
|
+
views="14.7M views",
|
|
198
|
+
rating="89%",
|
|
199
|
+
date_upload="6 days ago",
|
|
200
|
+
preview="https://dw.phncdn.com/videos/202302/03/424743701/180P_225K_424743701.webm?ttl=1678145366&ri=256000&rs=1000&ipa=177.107.51.78&hash=faba555e5dbad0e12209740f1d6eba36",
|
|
201
|
+
indice=0),
|
|
202
|
+
|
|
203
|
+
```
|
|
204
|
+
|
|
205
|
+
### Embed
|
|
206
|
+
|
|
207
|
+
|
|
208
|
+
```py
|
|
209
|
+
>>> from hotdreams import pornhub as ph
|
|
210
|
+
|
|
211
|
+
>>> ph.get_video_embed('https://pt.pornhub.com/view_video.php?viewkey=ph62d65cfe4d0f0')
|
|
212
|
+
|
|
213
|
+
|
|
214
|
+
EmbedVideoPornHub(
|
|
215
|
+
title="(Watch This) Thick Ass Teacher Makes Student CUM IN HER! | Jessica Jax Fucks Young Guy",
|
|
216
|
+
time="None",
|
|
217
|
+
url="https://pt.pornhub.com/embed/ph62d65cfe4d0f0",
|
|
218
|
+
thumbnail="https://di.phncdn.com/videos/202207/19/412021581/thumbs_62/(m=eaAaGwObaaaa)(mh=gyLTsR8eonGxy24f)12.jpg",
|
|
219
|
+
views="3.5M Visualiz.",
|
|
220
|
+
time_published="None",
|
|
221
|
+
rating="91%",
|
|
222
|
+
duration_seconds=1280,
|
|
223
|
+
likes=None,
|
|
224
|
+
upload_date="7 meses atrás",
|
|
225
|
+
person="None",
|
|
226
|
+
len_videos_sugestions=50,
|
|
227
|
+
videos_sugestions=[
|
|
228
|
+
pornhub_video(
|
|
229
|
+
title="Eu e minha amiga da faculdade fazendo um trabalho de casa diferenciado.",
|
|
230
|
+
time="12:37",
|
|
231
|
+
url="https://pornhub.com/view_video.php?viewkey=63dd8219f21c4",
|
|
232
|
+
url_font="https://pt.pornhub.com/view_video.php?viewkey=ph62d65cfe4d0f0",
|
|
233
|
+
thumbnail="https://di.phncdn.com/videos/202302/03/424743701/original/(m=eafTGgaaaa)(mh=EkAOT4sQQJxduqfM)12.jpg",
|
|
234
|
+
site_name="PornHub",
|
|
235
|
+
page_number=0,
|
|
236
|
+
views="14.8M Visualiz.",
|
|
237
|
+
rating="89%",
|
|
238
|
+
date_upload="6 dias atrás",
|
|
239
|
+
preview="https://dw.phncdn.com/videos/202302/03/424743701/180P_225K_424743701.webm?ttl=1678149883&ri=256000&rs=1000&ipa=191.185.78.35&hash=0ad33ce746a369b243fd0451fec4dbb4",
|
|
240
|
+
indice=0),
|
|
241
|
+
```
|
|
242
|
+
|
|
243
|
+
<hr/>
|
|
244
|
+
|
|
245
|
+
|
|
246
|
+
|
|
247
|
+
## pornone
|
|
248
|
+
|
|
249
|
+
|
|
250
|
+
### search
|
|
251
|
+
|
|
252
|
+
```py
|
|
253
|
+
>>> from hotdreams import pornone as pn
|
|
254
|
+
|
|
255
|
+
>>> vds = pn.search_porn('lorena aquino',page_limit=2)
|
|
256
|
+
|
|
257
|
+
>>> vds
|
|
258
|
+
|
|
259
|
+
pornone(
|
|
260
|
+
query="lorena+aquino",
|
|
261
|
+
len_videos=72,
|
|
262
|
+
len_pages=2,
|
|
263
|
+
videos_per_pages=36,
|
|
264
|
+
ping=3.0705974102020264,
|
|
265
|
+
url_base="https://pornone.com",
|
|
266
|
+
url_search="https://pornone.com/search/?q=lorena+aquino&sort=relevance&filter=&page=1",
|
|
267
|
+
videos=[
|
|
268
|
+
pornone_video(
|
|
269
|
+
site_name="pornone",
|
|
270
|
+
title="Lorena Aquino Anal Total!",
|
|
271
|
+
time="25:17",
|
|
272
|
+
page_number=1,
|
|
273
|
+
url="https://pornone.com/brazilian/lorena-aquino-anal-total/276822039/",
|
|
274
|
+
url_font="https://pornone.com/search/?q=lorena+aquino&sort=relevance&filter=&page=1",
|
|
275
|
+
thumbnail="https://th-eu4.pornone.com/t/39/276822039/d48.jpg",
|
|
276
|
+
stats=" 12,780 38mo ago 100% ",
|
|
277
|
+
duration=1517,
|
|
278
|
+
indice=0),
|
|
279
|
+
...
|
|
280
|
+
|
|
281
|
+
```
|
|
282
|
+
|
|
283
|
+
<hr/>
|
|
284
|
+
|
|
285
|
+
## XVideos
|
|
286
|
+
|
|
287
|
+
### search
|
|
288
|
+
|
|
289
|
+
```py
|
|
290
|
+
>>> from hotdreams import xvideos as xv
|
|
291
|
+
|
|
292
|
+
>>> xv.search_porn('lorena aquino',page_limit=2)
|
|
293
|
+
|
|
294
|
+
|
|
295
|
+
XVideos(
|
|
296
|
+
sucess=True,
|
|
297
|
+
query="lorena%20aquino",
|
|
298
|
+
len_videos=54,
|
|
299
|
+
len_pages=2,
|
|
300
|
+
videos_per_pages=27,
|
|
301
|
+
ping=2.265279531478882,
|
|
302
|
+
url_base="https://www.xvideos.com",
|
|
303
|
+
url_search="https://www.xvideos.com/?k=lorena%20aquino&p=1",
|
|
304
|
+
videos=[
|
|
305
|
+
xvideos_video(
|
|
306
|
+
title="Delicious busty loves blowjob and asshole 11 min",
|
|
307
|
+
time="11 min",
|
|
308
|
+
url="https://www.xvideos.com/video64901459/delicious_busty_loves_blowjob_and_asshole",
|
|
309
|
+
url_font="https://www.xvideos.com/?k=lorena%20aquino&p=1",
|
|
310
|
+
thumbnail="https://img-cf.xvideos-cdn.com/videos/thumbs169ll/04/fd/48/04fd48c36a72dd911b19bfe31b61876b-1/04fd48c36a72dd911b19bfe31b61876b.23.jpg",
|
|
311
|
+
site_name="XVideos",
|
|
312
|
+
page_number=1,
|
|
313
|
+
indice=0),
|
|
314
|
+
...
|
|
315
|
+
```
|
|
316
|
+
|
|
317
|
+
### embed
|
|
318
|
+
|
|
319
|
+
```py
|
|
320
|
+
>>> from hotdreams import xvideos as xv
|
|
321
|
+
|
|
322
|
+
>>> xv.get_video_embed('https://www.xvideos.com/video58733211/gali_diva_hot_sex_with_her_boyfriend')
|
|
323
|
+
|
|
324
|
+
EmbedVideoXVideos(
|
|
325
|
+
title="Gali Diva hot sex with her boyfriend",
|
|
326
|
+
time="None",
|
|
327
|
+
url="https://www.xvideos.com/embedframe/58733211",
|
|
328
|
+
thumbnail="https://img-cf.xvideos-cdn.com/videos/thumbs169ll/56/b5/73/56b573929854d1fca43884c894292d29/56b573929854d1fca43884c894292d29.28.jpg",
|
|
329
|
+
views="None",
|
|
330
|
+
time_published="None",
|
|
331
|
+
duration_seconds=664,
|
|
332
|
+
likes=None,
|
|
333
|
+
person="None",
|
|
334
|
+
len_videos_sugestions=0,
|
|
335
|
+
videos_sugestions=None)
|
|
336
|
+
|
|
337
|
+
|
|
338
|
+
|
|
339
|
+
```
|
|
340
|
+
|
|
341
|
+
<hr/>
|
|
342
|
+
|
|
343
|
+
|
|
344
|
+
## ukdevilz
|
|
345
|
+
|
|
346
|
+
### search
|
|
347
|
+
|
|
348
|
+
```py
|
|
349
|
+
>>> from hotdreams import ukdevilz as uk
|
|
350
|
+
|
|
351
|
+
>>> vds = uk.search_porn('lorena aquino',page_limit=2)
|
|
352
|
+
|
|
353
|
+
>>> vds
|
|
354
|
+
|
|
355
|
+
|
|
356
|
+
ukdevilz(
|
|
357
|
+
query="lorena+aquino",
|
|
358
|
+
len_videos=30,
|
|
359
|
+
len_pages=2,
|
|
360
|
+
videos_per_pages=15,
|
|
361
|
+
ping=2.1073954105377197,
|
|
362
|
+
url_base="https://ukdevilz.com",
|
|
363
|
+
url_search="https://ukdevilz.com/video/lorena+aquino?p=1",
|
|
364
|
+
videos=[
|
|
365
|
+
ukdevilz_video(
|
|
366
|
+
site_name="ukdevilz",
|
|
367
|
+
title="Lorena aquino white bubble butt sluts 2 ai enhanced video",
|
|
368
|
+
time=" 27:40",
|
|
369
|
+
page_number=1,
|
|
370
|
+
url="https://ukdevilz.com/watch/-209942790_456240637",
|
|
371
|
+
url_font="https://ukdevilz.com/video/lorena+aquino?p=1",
|
|
372
|
+
thumbnail="https://i.mycdn.me/getVideoPreview?id=2684034943497&idx=10&type=39&tkn=CzOYkDH_q-ldERSRuTGCyLKm85c&fn=vid_l&c_uniq_tag=ItwI2ATuwsYFuaz3EQKbLK2v4ueO-rHoABJMWYSudaM",
|
|
373
|
+
stats=" 1.11K",
|
|
374
|
+
duration=1660,
|
|
375
|
+
indice=0),
|
|
376
|
+
...
|
|
377
|
+
```
|
|
378
|
+
|
|
379
|
+
<hr>
|
|
380
|
+
|
|
381
|
+
## tnaflix
|
|
382
|
+
|
|
383
|
+
### search
|
|
384
|
+
|
|
385
|
+
```py
|
|
386
|
+
>>> from hotdreams import ukdevilz as uk
|
|
387
|
+
|
|
388
|
+
>>> vds = uk.search_porn('lorena aquino',page_limit=2)
|
|
389
|
+
|
|
390
|
+
>>> vds
|
|
391
|
+
|
|
392
|
+
tnaflix(
|
|
393
|
+
query="lorena+aquino",
|
|
394
|
+
len_videos=120,
|
|
395
|
+
len_pages=2,
|
|
396
|
+
videos_per_pages=60,
|
|
397
|
+
ping=5.709991693496704,
|
|
398
|
+
url_base="https://tnaflix.com",
|
|
399
|
+
url_search="https://www.tnaflix.com/search.php?tab=videos&what=lorena+aquino&category=&sb=relevance&su=anytime&sd=all&dir=desc&page=1",
|
|
400
|
+
videos=[
|
|
401
|
+
tnaflix_video(
|
|
402
|
+
site_name="tnaflix",
|
|
403
|
+
title="Lorena Aquino and Marcelinha Moraes Hot part4",
|
|
404
|
+
time="6:07",
|
|
405
|
+
page_number=1,
|
|
406
|
+
url="https://tnaflix.com/babe-videos/Lorena-Aquino-and-Marcelinha-Moraes-Hot-part4/video1430774",
|
|
407
|
+
url_font="https://www.tnaflix.com/search.php?tab=videos&what=lorena+aquino&category=&sb=relevance&su=anytime&sd=all&dir=desc&page=1",
|
|
408
|
+
thumbnail="https://img.tnastatic.com/a16:8q80w300/205/14/30/1430774/thumbs/5.jpg",
|
|
409
|
+
views="6,132",
|
|
410
|
+
rating="88%",
|
|
411
|
+
date_upload="8.8 year's ago",
|
|
412
|
+
duration=367,
|
|
413
|
+
preview="https://sl205.tnaflix.com/14/30/1430774/trailer.mp4?secure=074fe97a886337701b912",
|
|
414
|
+
indice=0),
|
|
415
|
+
...
|
|
416
|
+
|
|
417
|
+
```
|
|
418
|
+
|
|
419
|
+
### Embed
|
|
420
|
+
|
|
421
|
+
|
|
422
|
+
|
|
423
|
+
```py
|
|
424
|
+
|
|
425
|
+
>>> from hotdreams import tnaflix as tn
|
|
426
|
+
|
|
427
|
+
>>> embed_data = tn.get_video_embed('https://www.tnaflix.com/big-boobs/MILG-LATINA-ESPERTA-Gali-Diva/video7957213')
|
|
428
|
+
|
|
429
|
+
>>> embed_data
|
|
430
|
+
|
|
431
|
+
EmbedVideotnaflix(
|
|
432
|
+
title=" MILG LATINA ESPERTA - Gali Diva",
|
|
433
|
+
time="None",
|
|
434
|
+
url="https://player.tnaflix.com/video/7957213",
|
|
435
|
+
thumbnail="https://img.tnastatic.com/a16:8q80w300/206/15/76/1576707/thumbs/5.jpg",
|
|
436
|
+
views="1,736",
|
|
437
|
+
time_published="None",
|
|
438
|
+
len_videos_sugestions=16,
|
|
439
|
+
videos_sugestions=[
|
|
440
|
+
tnaflix_video(
|
|
441
|
+
title="MILG LATINA ESPERTA - Gali Diva",
|
|
442
|
+
time="31:41",
|
|
443
|
+
url="https://tnaflix.com/big-boobs/MILG-LATINA-ESPERTA-Gali-Diva/video7957213",
|
|
444
|
+
url_font="https://www.tnaflix.com/big-boobs/MILG-LATINA-ESPERTA-Gali-Diva/video7957213&autoPlay=1",
|
|
445
|
+
thumbnail="https://img.tnastatic.com/a16:8q80w300/104/79/57/7957213/thumbs/10.jpg",
|
|
446
|
+
site_name="tnaflix",
|
|
447
|
+
page_number=0,
|
|
448
|
+
views="4,108",
|
|
449
|
+
rating="94%",
|
|
450
|
+
date_upload="4.3 month's ago",
|
|
451
|
+
duration=1901,
|
|
452
|
+
duration_seconds=1901,
|
|
453
|
+
preview="https://sh104.tnaflix.com/79/57/7957213/trailer.mp4?se=1678117333&ss=5c439028a3f8b6c4e1bc9fec65a4a079",
|
|
454
|
+
indice=0),
|
|
455
|
+
```
|
|
456
|
+
|
|
457
|
+
|
|
458
|
+
|
|
459
|
+
<hr>
|
|
460
|
+
|
|
461
|
+
|
|
462
|
+
<!--
|
|
463
|
+
### spankbang
|
|
464
|
+
|
|
465
|
+
```py
|
|
466
|
+
>>> from hotdreams import spankbang as sb
|
|
467
|
+
|
|
468
|
+
>>> embed_data = sb.get_video_embed('https://spankbang.com/4b5uc/video/lorena+aquino')
|
|
469
|
+
|
|
470
|
+
>>> embed_data
|
|
471
|
+
|
|
472
|
+
EmbedVideoSpankBang(
|
|
473
|
+
title=Lorena aquino,
|
|
474
|
+
time=26:07,
|
|
475
|
+
url=https://vdownload-14.sb-cd.com/7/2/7239252-480p.mp4?secure=jzztPrBpX-BWs59AyiV_vw,1674891264&m=14&d=3&_tid=7239252,
|
|
476
|
+
thumbnail=https://tbi.sb-cd.com/t/7239252/7/2/w:300/t6-enh/lorena-aquino.jpg,
|
|
477
|
+
views=16,713 visualizações,
|
|
478
|
+
time_published=2 years,
|
|
479
|
+
len_videos_sugestions=48,
|
|
480
|
+
videos_sugestions=[
|
|
481
|
+
spankbang_video(
|
|
482
|
+
site_name="SpankBang",
|
|
483
|
+
title="Jenna Presley hot girl",
|
|
484
|
+
time="2 min",
|
|
485
|
+
page_number=None,
|
|
486
|
+
url="https://spankbang.com/dlju/video/jenna+presley+hot+girl",
|
|
487
|
+
url_font="https://spankbang.com/4b5uc/video/lorena+aquino",
|
|
488
|
+
thumbnail="https://tbi.sb-cd.com/t/634458/6/3/w:800/t6-enh/jenna-presley-hot-girl.jpg",
|
|
489
|
+
stats=" 5.4K 93% 6 years ",
|
|
490
|
+
duration=120,
|
|
491
|
+
indice=0),
|
|
492
|
+
...
|
|
493
|
+
|
|
494
|
+
|
|
495
|
+
``` -->
|
|
496
|
+
|
|
497
|
+
|
|
498
|
+
## noodlemagazine
|
|
499
|
+
|
|
500
|
+
### search
|
|
501
|
+
|
|
502
|
+
```py
|
|
503
|
+
>>> from hotdreams import noodlemagazine as nd
|
|
504
|
+
|
|
505
|
+
>>> nd.search_porn('lorena aquino',page_limit=2)
|
|
506
|
+
|
|
507
|
+
|
|
508
|
+
NoodleMagazine(
|
|
509
|
+
sucess=True,
|
|
510
|
+
query="lorena%20aquino",
|
|
511
|
+
len_videos=48,
|
|
512
|
+
len_pages=2,
|
|
513
|
+
videos_per_pages=24,
|
|
514
|
+
ping=1.6482410430908203,
|
|
515
|
+
url_base="https://noodlemagazine.com",
|
|
516
|
+
url_search="https://noodlemagazine.com/video/lorena%20aquino?p=1",
|
|
517
|
+
videos=[
|
|
518
|
+
noodlemagazine_video(
|
|
519
|
+
title="Cafetão brasileirinhas naiara, anytha red, july paiva, lorena aquino, tati rio, sheila brown, carol sampaio",
|
|
520
|
+
time=" 32:50",
|
|
521
|
+
url="https://noodlemagazine.com/watch/-208980412_456239263",
|
|
522
|
+
url_font="https://noodlemagazine.com/video/lorena%20aquino?p=1",
|
|
523
|
+
thumbnail="https://i.mycdn.me/getVideoPreview?id=2878899423824&idx=9&type=39&tkn=OO1Mraql-P2Gzq7lsHFB2sOUcA0&fn=vid_l&c_uniq_tag=IYbYvPydm8Ul5Ev2C4-0jsRoDmLauRvXLmYxu-GotXU",
|
|
524
|
+
site_name="NoodleMagazine",
|
|
525
|
+
page_number=1,
|
|
526
|
+
views=" 1.89K",
|
|
527
|
+
duration_seconds=1970,
|
|
528
|
+
indice=0),
|
|
529
|
+
...
|
|
530
|
+
```
|
|
531
|
+
|
|
532
|
+
### embed
|
|
533
|
+
|
|
534
|
+
```py
|
|
535
|
+
>>> from hotdreams import noodlemagazine as nd
|
|
536
|
+
|
|
537
|
+
>>> nd.get_video_embed('https://noodlemagazine.com/watch/-190558927_456239092')
|
|
538
|
+
|
|
539
|
+
EmbedVideoNoodleMagazine(
|
|
540
|
+
title="[sexmex] gali diva hot milf (newporn, latin, big tits, ass, blowjob, spanish, teen, milf, mother, sister, anal, porn)",
|
|
541
|
+
time="None",
|
|
542
|
+
url="https://nmcorp.video/player/-190558927_456239092?m=af3f0f69ad1abf20d97587c170515f2f",
|
|
543
|
+
thumbnail="https://p2-86.pvvstream.pro/preview/eAivkKcZHl8ke9AGgtxoNw/-190558927_456239092/sun9-17.userapi.com/z12glz2pKg1psV3kfe3pbNRRIAynap8g6OdHNA/jQxKqgm02N0.jpg",
|
|
544
|
+
views="None",
|
|
545
|
+
time_published="None",
|
|
546
|
+
views_int=217289,
|
|
547
|
+
duration_seconds=2554,
|
|
548
|
+
likes=1500,
|
|
549
|
+
upload_date="2020-01-11",
|
|
550
|
+
person="Gali Diva",
|
|
551
|
+
tags="anal, ass, big, big tits, blowjob, brazzers, diva, gali, hot, latin, milf, mother, newporn, sexmex, sister, spanish, teen, tits",
|
|
552
|
+
len_videos_sugestions=24,
|
|
553
|
+
videos_sugestions=[
|
|
554
|
+
noodlemagazine_video(
|
|
555
|
+
title="Sexmex gali diva",
|
|
556
|
+
time=" 27:09",
|
|
557
|
+
url="https://noodlemagazine.com/watch/-172454327_456260979",
|
|
558
|
+
url_font="https://noodlemagazine.com/watch/-190558927_456239092",
|
|
559
|
+
thumbnail="https://i.mycdn.me/getVideoPreview?id=1786320652880&idx=14&type=39&tkn=67jVd9PgvdjmOg4HIGXNxRaMVTs&fn=vid_t&c_uniq_tag=1WKQjJgtNSNWBmBli-cZkWrC-_FTxsPXUg5049thwok",
|
|
560
|
+
site_name="NoodleMagazine",
|
|
561
|
+
page_number=0,
|
|
562
|
+
views=" 36.47K",
|
|
563
|
+
duration_seconds=1629,
|
|
564
|
+
indice=0),
|
|
565
|
+
...
|
|
566
|
+
|
|
567
|
+
```
|
|
568
|
+
|
|
569
|
+
<hr/>
|
|
570
|
+
|
|
571
|
+
|
|
572
|
+
## onlyfans sites
|
|
573
|
+
|
|
574
|
+
### viralpornhub
|
|
575
|
+
|
|
576
|
+
```py
|
|
577
|
+
|
|
578
|
+
>>> from hotdreams.sites.only import viralpornhub as vp
|
|
579
|
+
|
|
580
|
+
>>> vp.search_porn('mia monroe')
|
|
581
|
+
|
|
582
|
+
```
|
|
583
|
+
|
|
584
|
+
|
|
585
|
+
```py
|
|
586
|
+
|
|
587
|
+
viralpornhub@only(
|
|
588
|
+
sucess="True",
|
|
589
|
+
query="mia%20monroe",
|
|
590
|
+
len_videos=24,
|
|
591
|
+
len_pages=1,
|
|
592
|
+
videos_per_pages=24,
|
|
593
|
+
ping=2.7153677940368652,
|
|
594
|
+
url_base="https://viralpornhub.com",
|
|
595
|
+
url_search="https://viralpornhub.com/search/mia%20monroe",
|
|
596
|
+
videos=[
|
|
597
|
+
viralpornhub@only_video(
|
|
598
|
+
title="Mia Monroe Velma Porn Video",
|
|
599
|
+
time="9:22",
|
|
600
|
+
url="https://viralpornhub.com/videos/45100/mia-monroe-velma-porn-video/",
|
|
601
|
+
url_font="https://viralpornhub.com/search/mia%20monroe/",
|
|
602
|
+
thumbnail="https://viralpornhub.com/contents/videos_screenshots/45000/45100/336x189/3.jpg",
|
|
603
|
+
site_name="viralpornhub@only",
|
|
604
|
+
page_number=1,
|
|
605
|
+
views="208",
|
|
606
|
+
rating="100%",
|
|
607
|
+
date_upload="22 hours ago",
|
|
608
|
+
preview="https://viralpornhub.com/get_file/3/952f0963d1d49fcd8c2ea2e297d89f6afc1eec1005/45000/45100/45100_preview.mp4/",
|
|
609
|
+
indice=0),
|
|
610
|
+
...
|
|
611
|
+
```
|
|
612
|
+
|
|
613
|
+
### nudes7
|
|
614
|
+
|
|
615
|
+
> nudes7.com now permanently redirects to `shareanynudes.com` (same content, new domain and markup); the lib follows this automatically.
|
|
616
|
+
|
|
617
|
+
```py
|
|
618
|
+
|
|
619
|
+
>>> from hotdreams.sites.only import nudes7
|
|
620
|
+
|
|
621
|
+
>>> nudes7.search_porn('mia monroe')
|
|
622
|
+
```
|
|
623
|
+
|
|
624
|
+
```py
|
|
625
|
+
|
|
626
|
+
nudes7@only(
|
|
627
|
+
sucess=True,
|
|
628
|
+
query="mia%20monroe",
|
|
629
|
+
len_videos=20,
|
|
630
|
+
len_pages=None,
|
|
631
|
+
videos_per_pages=20,
|
|
632
|
+
ping=0.9403104782104492,
|
|
633
|
+
url_base="https://shareanynudes.com/",
|
|
634
|
+
url_search="https://shareanynudes.com/search/mia%20monroe/",
|
|
635
|
+
videos=[
|
|
636
|
+
nudes7@only_video(
|
|
637
|
+
title="Mia Monroe Sucks Then Gets Stuffed Onlyfans Video Leaked",
|
|
638
|
+
time="10:03",
|
|
639
|
+
url="https://shareanynudes.com/video/mia-monroe-sucks-then-gets-stuffed/",
|
|
640
|
+
url_font="https://shareanynudes.com/search/mia%20monroe/",
|
|
641
|
+
thumbnail="https://shareanynudes.com/contents/videos_screenshots/18000/18881/320x180/1.jpg",
|
|
642
|
+
site_name="nudes7@only",
|
|
643
|
+
page_number=1,
|
|
644
|
+
views="2.0K",
|
|
645
|
+
indice=0),
|
|
646
|
+
...
|
|
647
|
+
```
|
|
648
|
+
|
|
649
|
+
<img src='https://reysofts.com.br/apis/engine/libs/analisys_lib.php?lib_name=hotdreams'>
|