pydocmaker 2.2.1__tar.gz → 2.2.2__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.
- {pydocmaker-2.2.1/src/pydocmaker.egg-info → pydocmaker-2.2.2}/PKG-INFO +1 -1
- {pydocmaker-2.2.1 → pydocmaker-2.2.2}/src/pydocmaker/__init__.py +1 -1
- {pydocmaker-2.2.1 → pydocmaker-2.2.2}/src/pydocmaker/core.py +1 -1
- {pydocmaker-2.2.1 → pydocmaker-2.2.2/src/pydocmaker.egg-info}/PKG-INFO +1 -1
- {pydocmaker-2.2.1 → pydocmaker-2.2.2}/LICENSE +0 -0
- {pydocmaker-2.2.1 → pydocmaker-2.2.2}/README.md +0 -0
- {pydocmaker-2.2.1 → pydocmaker-2.2.2}/setup.cfg +0 -0
- {pydocmaker-2.2.1 → pydocmaker-2.2.2}/setup.py +0 -0
- {pydocmaker-2.2.1 → pydocmaker-2.2.2}/src/pydocmaker/backend/__init__.py +0 -0
- {pydocmaker-2.2.1 → pydocmaker-2.2.2}/src/pydocmaker/backend/baseformatter.py +0 -0
- {pydocmaker-2.2.1 → pydocmaker-2.2.2}/src/pydocmaker/backend/ex_docx.py +0 -0
- {pydocmaker-2.2.1 → pydocmaker-2.2.2}/src/pydocmaker/backend/ex_html.py +0 -0
- {pydocmaker-2.2.1 → pydocmaker-2.2.2}/src/pydocmaker/backend/ex_ipynb.py +0 -0
- {pydocmaker-2.2.1 → pydocmaker-2.2.2}/src/pydocmaker/backend/ex_markdown.py +0 -0
- {pydocmaker-2.2.1 → pydocmaker-2.2.2}/src/pydocmaker/backend/ex_redmine.py +0 -0
- {pydocmaker-2.2.1 → pydocmaker-2.2.2}/src/pydocmaker/backend/ex_tex.py +0 -0
- {pydocmaker-2.2.1 → pydocmaker-2.2.2}/src/pydocmaker/backend/mdx_latex.py +0 -0
- {pydocmaker-2.2.1 → pydocmaker-2.2.2}/src/pydocmaker/backend/pandoc_api.py +0 -0
- {pydocmaker-2.2.1 → pydocmaker-2.2.2}/src/pydocmaker/backend/pdf_maker.py +0 -0
- {pydocmaker-2.2.1 → pydocmaker-2.2.2}/src/pydocmaker/templating.py +0 -0
- {pydocmaker-2.2.1 → pydocmaker-2.2.2}/src/pydocmaker/util.py +0 -0
- {pydocmaker-2.2.1 → pydocmaker-2.2.2}/src/pydocmaker.egg-info/SOURCES.txt +0 -0
- {pydocmaker-2.2.1 → pydocmaker-2.2.2}/src/pydocmaker.egg-info/dependency_links.txt +0 -0
- {pydocmaker-2.2.1 → pydocmaker-2.2.2}/src/pydocmaker.egg-info/requires.txt +0 -0
- {pydocmaker-2.2.1 → pydocmaker-2.2.2}/src/pydocmaker.egg-info/top_level.txt +0 -0
- {pydocmaker-2.2.1 → pydocmaker-2.2.2}/tests/test_backend_pandoc.py +0 -0
- {pydocmaker-2.2.1 → pydocmaker-2.2.2}/tests/test_convert_all.py +0 -0
- {pydocmaker-2.2.1 → pydocmaker-2.2.2}/tests/test_core.py +0 -0
- {pydocmaker-2.2.1 → pydocmaker-2.2.2}/tests/test_ex_html.py +0 -0
- {pydocmaker-2.2.1 → pydocmaker-2.2.2}/tests/test_util.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: pydocmaker
|
|
3
|
-
Version: 2.2.
|
|
3
|
+
Version: 2.2.2
|
|
4
4
|
Summary: a minimal document maker to make docx, markdown, html, textile, redmine, and tex documents from python. Written in pure python.
|
|
5
5
|
Home-page: https://github.com/TobiasGlaubach/pydocmaker
|
|
6
6
|
Author: Tobias Glaubach
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
__version__ = '2.2.
|
|
1
|
+
__version__ = '2.2.2'
|
|
2
2
|
|
|
3
3
|
from pydocmaker.core import DocBuilder, construct, constr, buildingblocks, print_to_pdf, get_latex_compiler, set_latex_compiler, make_pdf_from_tex, show_pdf
|
|
4
4
|
from pydocmaker.util import upload_report_to_redmine, bcolors, txtcolor, colors_dc
|
|
@@ -51,7 +51,7 @@ def is_notebook() -> bool:
|
|
|
51
51
|
return False # Probably standard Python interpreter
|
|
52
52
|
|
|
53
53
|
|
|
54
|
-
def show_pdf(pdf_bytes:
|
|
54
|
+
def show_pdf(pdf_bytes:bytes, width=1000, height=1200):
|
|
55
55
|
"""
|
|
56
56
|
Display a PDF file within an IPython environment.
|
|
57
57
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: pydocmaker
|
|
3
|
-
Version: 2.2.
|
|
3
|
+
Version: 2.2.2
|
|
4
4
|
Summary: a minimal document maker to make docx, markdown, html, textile, redmine, and tex documents from python. Written in pure python.
|
|
5
5
|
Home-page: https://github.com/TobiasGlaubach/pydocmaker
|
|
6
6
|
Author: Tobias Glaubach
|
|
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
|
|
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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|