nbsync 0.3.2__py3-none-any.whl → 0.3.3__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.
nbsync/sync.py CHANGED
@@ -47,9 +47,9 @@ class Synchronizer:
47
47
  continue
48
48
 
49
49
  path = ".md" if url == ".md" else self.store.find_path(url)
50
- logger.info(f"Executing notebook: {path}...")
50
+ logger.info(f"Executing notebook: {path}")
51
51
  if elapsed := notebook.execute():
52
- logger.info(f"{Path(path).name!r} executed in {elapsed} seconds")
52
+ logger.info(f"{Path(path).name!r} executed in {elapsed:.2f} seconds")
53
53
 
54
54
  def convert(self, text: str) -> Iterator[str | Cell]:
55
55
  elems = list(self.parse(text))
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: nbsync
3
- Version: 0.3.2
3
+ Version: 0.3.3
4
4
  Summary: A core library to synchronize Jupyter notebooks and Markdown documents, enabling seamless integration and dynamic content execution
5
5
  Project-URL: Documentation, https://daizutabi.github.io/nbsync/
6
6
  Project-URL: Source, https://github.com/daizutabi/nbsync
@@ -4,8 +4,8 @@ nbsync/logger.py,sha256=snNRqi9xESj4B-Z9GQffCBlgqeVujvuXuBveWAebIWM,736
4
4
  nbsync/markdown.py,sha256=xcPhQKWpFDyVQ_xtZCpFrnR0QED_hYs4PAyaT7dF3t4,3830
5
5
  nbsync/notebook.py,sha256=4F3V1KDHfJnIR5ZSb1xWdN9JGiC6mWUVimXXK1BFsbc,1450
6
6
  nbsync/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
7
- nbsync/sync.py,sha256=jI32mYA3hr_69-cejqH9B0JxYLFAMpuDDNYbpjJFazE,3989
8
- nbsync-0.3.2.dist-info/METADATA,sha256=eeNhOG9xc0vS-69AtPEq13C2dCVBVDdWtSMl85qiJd8,6552
9
- nbsync-0.3.2.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
10
- nbsync-0.3.2.dist-info/licenses/LICENSE,sha256=wy1pqn52upuo_qYwY-epWmspwE-3UWJso0xodciGXYc,1062
11
- nbsync-0.3.2.dist-info/RECORD,,
7
+ nbsync/sync.py,sha256=vISzn8D_Dae-jdJABRnvvD02aL35bYIWx52OinAORVo,3990
8
+ nbsync-0.3.3.dist-info/METADATA,sha256=d4Qp0dekZlvGHU797Q8NuZdEdl07FTXxh2lUbmveB9Q,6552
9
+ nbsync-0.3.3.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
10
+ nbsync-0.3.3.dist-info/licenses/LICENSE,sha256=wy1pqn52upuo_qYwY-epWmspwE-3UWJso0xodciGXYc,1062
11
+ nbsync-0.3.3.dist-info/RECORD,,
File without changes