PyCatFile 0.19.6__tar.gz → 0.19.10__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.
- {pycatfile-0.19.6 → pycatfile-0.19.10}/PKG-INFO +1 -1
- {pycatfile-0.19.6 → pycatfile-0.19.10}/PyCatFile.egg-info/PKG-INFO +1 -1
- {pycatfile-0.19.6 → pycatfile-0.19.10}/pycatfile.py +6 -6
- {pycatfile-0.19.6 → pycatfile-0.19.10}/pyproject.toml +1 -1
- {pycatfile-0.19.6 → pycatfile-0.19.10}/LICENSE +0 -0
- {pycatfile-0.19.6 → pycatfile-0.19.10}/PyCatFile.egg-info/SOURCES.txt +0 -0
- {pycatfile-0.19.6 → pycatfile-0.19.10}/PyCatFile.egg-info/dependency_links.txt +0 -0
- {pycatfile-0.19.6 → pycatfile-0.19.10}/PyCatFile.egg-info/top_level.txt +0 -0
- {pycatfile-0.19.6 → pycatfile-0.19.10}/PyCatFile.egg-info/zip-safe +0 -0
- {pycatfile-0.19.6 → pycatfile-0.19.10}/README.md +0 -0
- {pycatfile-0.19.6 → pycatfile-0.19.10}/catfile.py +0 -0
- {pycatfile-0.19.6 → pycatfile-0.19.10}/neocatfile.py +0 -0
- {pycatfile-0.19.6 → pycatfile-0.19.10}/setup.cfg +0 -0
- {pycatfile-0.19.6 → pycatfile-0.19.10}/setup.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: PyCatFile
|
|
3
|
-
Version: 0.19.
|
|
3
|
+
Version: 0.19.10
|
|
4
4
|
Summary: A tar like file format name catfile after unix cat command (concatenate files) .
|
|
5
5
|
Home-page: https://github.com/GameMaker2k/PyCatFile
|
|
6
6
|
Download-URL: https://github.com/GameMaker2k/PyCatFile/archive/master.tar.gz
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: PyCatFile
|
|
3
|
-
Version: 0.19.
|
|
3
|
+
Version: 0.19.10
|
|
4
4
|
Summary: A tar like file format name catfile after unix cat command (concatenate files) .
|
|
5
5
|
Home-page: https://github.com/GameMaker2k/PyCatFile
|
|
6
6
|
Download-URL: https://github.com/GameMaker2k/PyCatFile/archive/master.tar.gz
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
Copyright 2018-2024 Game Maker 2k - http://intdb.sourceforge.net/
|
|
15
15
|
Copyright 2018-2024 Kazuki Przyborowski - https://github.com/KazukiPrzyborowski
|
|
16
16
|
|
|
17
|
-
$FileInfo: pycatfile.py - Last Update: 8/14/2025 Ver. 0.19.
|
|
17
|
+
$FileInfo: pycatfile.py - Last Update: 8/14/2025 Ver. 0.19.8 RC 1 - Author: cooldude2k $
|
|
18
18
|
'''
|
|
19
19
|
|
|
20
20
|
from __future__ import absolute_import, division, print_function, unicode_literals, generators, with_statement, nested_scopes
|
|
@@ -353,12 +353,12 @@ __file_format_extension__ = __file_format_multi_dict__[__file_format_default__][
|
|
|
353
353
|
__file_format_dict__ = __file_format_multi_dict__[__file_format_default__]
|
|
354
354
|
__project__ = __program_name__
|
|
355
355
|
__project_url__ = "https://github.com/GameMaker2k/PyCatFile"
|
|
356
|
-
__version_info__ = (0, 19,
|
|
357
|
-
__version_date_info__ = (2025, 8,
|
|
356
|
+
__version_info__ = (0, 19, 10, "RC 1", 1)
|
|
357
|
+
__version_date_info__ = (2025, 8, 15, "RC 1", 1)
|
|
358
358
|
__version_date__ = str(__version_date_info__[0]) + "." + str(
|
|
359
359
|
__version_date_info__[1]).zfill(2) + "." + str(__version_date_info__[2]).zfill(2)
|
|
360
360
|
__revision__ = __version_info__[3]
|
|
361
|
-
__revision_id__ = "$Id:
|
|
361
|
+
__revision_id__ = "$Id: 9080fdf754c661acf00c9cba6df0e7b65d3c417a $"
|
|
362
362
|
if(__version_info__[4] is not None):
|
|
363
363
|
__version_date_plusrc__ = __version_date__ + \
|
|
364
364
|
"-" + str(__version_date_info__[4])
|
|
@@ -9314,10 +9314,10 @@ def download_file_from_http_file(url, headers=None, usehttp=__use_http_lib__):
|
|
|
9314
9314
|
if usehttp == 'requests' and haverequests:
|
|
9315
9315
|
if username and password:
|
|
9316
9316
|
response = requests.get(
|
|
9317
|
-
rebuilt_url, headers=headers, auth=(username, password), stream=True
|
|
9317
|
+
rebuilt_url, headers=headers, auth=(username, password), timeout=(5, 30), stream=True
|
|
9318
9318
|
)
|
|
9319
9319
|
else:
|
|
9320
|
-
response = requests.get(rebuilt_url, headers=headers, stream=True)
|
|
9320
|
+
response = requests.get(rebuilt_url, headers=headers, timeout=(5, 30), stream=True)
|
|
9321
9321
|
response.raw.decode_content = True
|
|
9322
9322
|
shutil.copyfileobj(response.raw, httpfile)
|
|
9323
9323
|
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|