mkv-episode-matcher 0.9.3__py3-none-any.whl → 0.9.5__py3-none-any.whl

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.

Potentially problematic release.


This version of mkv-episode-matcher might be problematic. Click here for more details.

@@ -43,7 +43,7 @@ def set_config(
43
43
  Returns:
44
44
  None
45
45
  """
46
- config = configparser.ConfigParser()
46
+ config = configparser.ConfigParser(interpolation=None)
47
47
  config["Config"] = {
48
48
  "tmdb_api_key": str(tmdb_api_key),
49
49
  "show_dir": show_dir,
@@ -56,7 +56,7 @@ def set_config(
56
56
  logger.info(
57
57
  f"Setting config with API:{tmdb_api_key}, show_dir: {show_dir}, and max_threads: {MAX_THREADS}"
58
58
  )
59
- with open(file, "w") as configfile:
59
+ with open(file, "w", encoding="utf-8") as configfile:
60
60
  config.write(configfile)
61
61
 
62
62
 
@@ -72,8 +72,8 @@ def get_config(file):
72
72
 
73
73
  """
74
74
  logger.info(f"Loading config from {file}")
75
- config = configparser.ConfigParser()
75
+ config = configparser.ConfigParser(interpolation=None)
76
76
  if Path(file).exists():
77
- config.read(file)
77
+ config.read(file, encoding="utf-8")
78
78
  return config["Config"] if "Config" in config else None
79
79
  return {}
@@ -1,11 +1,31 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: mkv-episode-matcher
3
- Version: 0.9.3
3
+ Version: 0.9.5
4
4
  Summary: The MKV Episode Matcher is a tool for identifying TV series episodes from MKV files and renaming the files accordingly.
5
5
  Home-page: https://github.com/Jsakkos/mkv-episode-matcher
6
6
  Author: Jonathan Sakkos
7
7
  Author-email: Jsakkos <jonathansakkos@gmail.com>
8
- License: MIT
8
+ License: MIT License
9
+
10
+ Copyright (c) 2025 Jonathan Sakkos
11
+
12
+ Permission is hereby granted, free of charge, to any person obtaining a copy
13
+ of this software and associated documentation files (the "Software"), to deal
14
+ in the Software without restriction, including without limitation the rights
15
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
16
+ copies of the Software, and to permit persons to whom the Software is
17
+ furnished to do so, subject to the following conditions:
18
+
19
+ The above copyright notice and this permission notice shall be included in all
20
+ copies or substantial portions of the Software.
21
+
22
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
23
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
24
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
25
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
26
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
27
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
28
+ SOFTWARE.
9
29
  Project-URL: Documentation, https://github.com/Jsakkos/mkv-episode-matcher#readme
10
30
  Project-URL: Issues, https://github.com/Jsakkos/mkv-episode-matcher/issues
11
31
  Project-URL: Source, https://github.com/Jsakkos/mkv-episode-matcher
@@ -16,6 +36,8 @@ Classifier: Programming Language :: Python :: Implementation :: CPython
16
36
  Classifier: Programming Language :: Python :: Implementation :: PyPy
17
37
  Requires-Python: <3.13,>=3.9
18
38
  Description-Content-Type: text/markdown
39
+ License-File: LICENSE
40
+ Requires-Dist: chardet>=5.2.0
19
41
  Requires-Dist: configparser>=7.1.0
20
42
  Requires-Dist: ffmpeg>=1.4
21
43
  Requires-Dist: loguru>=0.7.2
@@ -28,6 +50,7 @@ Requires-Dist: tmdb-client>=0.0.1
28
50
  Requires-Dist: torch>=2.5.1
29
51
  Requires-Dist: torchaudio>=2.5.1
30
52
  Requires-Dist: torchvision>=0.20.1
53
+ Dynamic: license-file
31
54
 
32
55
  # MKV Episode Matcher
33
56
 
@@ -1,14 +1,15 @@
1
1
  mkv_episode_matcher/.gitattributes,sha256=Gh2-F2vCM7SZ01pX23UT8pQcmauXWfF3gwyRSb6ZAFs,66
2
2
  mkv_episode_matcher/__init__.py,sha256=u3yZcpuK0ICeUjxYKePvW-zS61E5ss5q2AvqnSHuz9E,240
3
3
  mkv_episode_matcher/__main__.py,sha256=iYuO2xWt1Xf_MXxJd_XKCrEgpicawE8LlZWtIq9dk90,12380
4
- mkv_episode_matcher/config.py,sha256=KuKxvKuOrmpCZ80mjykT6oZeD3uArsq6XPioMBrAxuU,2279
4
+ mkv_episode_matcher/config.py,sha256=2UUdhVZ3uMXPenPlwvpgRujointbQItrcj46GW_nnfY,2351
5
5
  mkv_episode_matcher/episode_identification.py,sha256=YwkH3cmd79I6zFh4nIuv19Kh4N9vXcP8HnZlmUQTA7c,16953
6
6
  mkv_episode_matcher/episode_matcher.py,sha256=r6A9K4g4a8yU5aJ42n2yWuVgu5azBRE9FY3kDcdfe3w,6545
7
7
  mkv_episode_matcher/subtitle_utils.py,sha256=z4eYTMAoI8BVzdCNeqHu-9mkhwG8RzxE5BbNjWUJwCg,2552
8
8
  mkv_episode_matcher/tmdb_client.py,sha256=LbMCgjmp7sCbrQo_CDlpcnryKPz5S7inE24YY9Pyjk4,4172
9
9
  mkv_episode_matcher/utils.py,sha256=Q9XFA-EIbMAsUKRtK5z23G1zgJKtxTcD-TkaHQKYIK8,17956
10
- mkv_episode_matcher-0.9.3.dist-info/METADATA,sha256=lF6Y5I3N17CWo2KkfJelo2cF7syZWtJGwm0_aQ_ZFk0,6362
11
- mkv_episode_matcher-0.9.3.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
12
- mkv_episode_matcher-0.9.3.dist-info/entry_points.txt,sha256=IglJ43SuCZq2eQ3shMFILCkmQASJHnDCI3ogohW2Hn4,64
13
- mkv_episode_matcher-0.9.3.dist-info/top_level.txt,sha256=XRLbd93HUaedeWLtkyTvQjFcE5QcBRYa3V-CfHrq-OI,20
14
- mkv_episode_matcher-0.9.3.dist-info/RECORD,,
10
+ mkv_episode_matcher-0.9.5.dist-info/licenses/LICENSE,sha256=ScBvQ_sUEpaRMDYp01qmMDELT1nTknFP2w-VRAS54TY,1071
11
+ mkv_episode_matcher-0.9.5.dist-info/METADATA,sha256=dzkpkYFv5Xe9OPKXp1vLigmRRtQMUcqh0mW05RxpY90,7664
12
+ mkv_episode_matcher-0.9.5.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
13
+ mkv_episode_matcher-0.9.5.dist-info/entry_points.txt,sha256=IglJ43SuCZq2eQ3shMFILCkmQASJHnDCI3ogohW2Hn4,64
14
+ mkv_episode_matcher-0.9.5.dist-info/top_level.txt,sha256=XRLbd93HUaedeWLtkyTvQjFcE5QcBRYa3V-CfHrq-OI,20
15
+ mkv_episode_matcher-0.9.5.dist-info/RECORD,,
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2025 Jonathan Sakkos
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.