[cleanup] Misc (#11216)

- Add Python 3.13 to CI, finalize 3.13 support
- Remove Python 3.8 from CI in preparation for removing 3.8 support
- Document that PyPy3.8 and PyPy3.9 are no longer supported
- Usual documentation fixes and code cleanup

Closes #8248, Closes #11146, Closes #11149, Closes #11211
Authored by: Grub4K, grqz, DTrombett, KarboniteKream, bashonly, mikkovedru, seproDev

Co-authored-by: N/Ame <[email protected]>
Co-authored-by: DTrombett <[email protected]>
Co-authored-by: =?UTF-8?q?Klemen=20Ko=C5=A1ir?= <[email protected]>
Co-authored-by: bashonly <[email protected]>
Co-authored-by: Mikko Vedru <[email protected]>
Co-authored-by: sepro <[email protected]>
This commit is contained in:
Simon Sawicki
2024-10-22 04:50:35 +00:00
committed by GitHub
co-authored by N/Ame DTrombett Klemen Košir bashonly Mikko Vedru sepro
parent a886cf3e90
commit 67adeb7bab
17 changed files with 118 additions and 114 deletions
+1 -1
View File
@@ -371,7 +371,7 @@ class NexxIE(InfoExtractor):
# not all videos work via arc, e.g. nexx:741:1269984
if not video:
# Reverse engineered from JS code (see getDeviceID function)
device_id = f'{random.randint(1, 4)}:{int(time.time())}:{random.randint(1e4, 99999)}{random.randint(1, 9)}'
device_id = f'{random.randint(1, 4)}:{int(time.time())}:{random.randint(10000, 99999)}{random.randint(1, 9)}'
result = self._call_api(domain_id, 'session/init', video_id, data={
'nxp_devh': device_id,