File tree Expand file tree Collapse file tree 3 files changed +8
-9
lines changed Expand file tree Collapse file tree 3 files changed +8
-9
lines changed Original file line number Diff line number Diff line change @@ -7,16 +7,16 @@ maintainers = [{name="Commandcracker"}]
7
7
license = {file = " LICENSE.txt" }
8
8
readme = " README.md"
9
9
dependencies = [
10
- " textual==0.67.0" , # 0.87.1
11
- " beautifulsoup4>=4.12 .3" ,
12
- " httpx[http2]>=0.28.0 " ,
10
+ " textual==0.67.0" , # 1.0.0
11
+ " beautifulsoup4>=4.13 .3" ,
12
+ " httpx[http2]>=0.28.1 " ,
13
13
" pypresence>=4.3.0" ,
14
14
" packaging>=24.2" ,
15
15
" platformdirs>=4.3.6" ,
16
16
" toml>=0.10.2" ,
17
17
" fuzzywuzzy>=0.18.0" ,
18
18
" async_lru>=2.0.4"
19
- # "yt-dlp>=2024.11.18 ",
19
+ # "yt-dlp>=2025.1.26 ",
20
20
# "mpv>=1.0.7",
21
21
]
22
22
keywords = [
@@ -50,9 +50,9 @@ classifiers = [
50
50
[project .optional-dependencies ]
51
51
speedups = [
52
52
" levenshtein>=0.26.1" ,
53
- " orjson>=3.10.12 "
53
+ " orjson>=3.10.15 "
54
54
]
55
- socks = [" httpx[socks]>=0.28.0 " ]
55
+ socks = [" httpx[socks]>=0.28.1 " ]
56
56
57
57
[project .urls ]
58
58
Repository = " https://github.com/Commandcracker/gucken"
Original file line number Diff line number Diff line change 1
1
import warnings
2
2
warnings .filterwarnings ('ignore' , message = 'Using slow pure-python SequenceMatcher. Install python-Levenshtein to remove this warning' )
3
3
4
- __version__ = "0.2.6 "
4
+ __version__ = "0.2.7 "
Original file line number Diff line number Diff line change 4
4
from ..networking import AsyncClient
5
5
from .common import DirectLink , Hoster
6
6
7
-
8
- REDIRECT_PATTERN = re_compile ("https?://[^\s'\" <>]+" )
7
+ REDIRECT_PATTERN = re_compile ("https?://[^'\" <>]+" )
9
8
EXTRACT_VEO_HLS_PATTERN = re_compile (r"'hls': '(?P<hls>.*)'" )
10
9
11
10
You can’t perform that action at this time.
0 commit comments