slidemovie 0.2.0__tar.gz → 0.2.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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: slidemovie
3
- Version: 0.2.0
3
+ Version: 0.2.1
4
4
  Summary: Markdown and PowerPoint to narration video generator
5
5
  Author: Katsutoshi Seki
6
6
  License-Expression: MIT
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "slidemovie"
7
- version = "0.2.0"
7
+ version = "0.2.1"
8
8
  description = "Markdown and PowerPoint to narration video generator"
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.8"
@@ -122,6 +122,8 @@ def main():
122
122
  if args.debug:
123
123
  movie.ffmpeg_loglevel = 'info'
124
124
  movie.show_skip = True
125
+ logging.getLogger("google_genai").setLevel(logging.DEBUG)
126
+ logging.getLogger("httpx").setLevel(logging.DEBUG)
125
127
  logger.setLevel(logging.DEBUG)
126
128
  logger.info("Debug mode enabled.")
127
129
 
@@ -41,6 +41,8 @@ class Movie():
41
41
  """
42
42
  self._check_external_tools()
43
43
  self._load_settings()
44
+ logging.getLogger("google_genai").setLevel(logging.WARNING)
45
+ logging.getLogger("httpx").setLevel(logging.WARNING)
44
46
 
45
47
  def _check_external_tools(self):
46
48
  """
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: slidemovie
3
- Version: 0.2.0
3
+ Version: 0.2.1
4
4
  Summary: Markdown and PowerPoint to narration video generator
5
5
  Author: Katsutoshi Seki
6
6
  License-Expression: MIT
File without changes
File without changes
File without changes
File without changes
File without changes