Compare commits

...

2 Commits
V0.4 ... master

Author SHA1 Message Date
Bertrand Benjamin fdb43cc18f Feat: reorganisation in feed 2022-02-02 14:48:32 +01:00
Bertrand Benjamin 7bbaf1132d Feat: add example 2020-08-14 15:46:10 +02:00
4 changed files with 68 additions and 19 deletions

View File

@ -2,6 +2,12 @@
Pytex is a simple package which make a bridge between Latex and Python.
## Installation
``` bash
pip install mypytex
```
## texenv: Bring Python inside latex
*texenv* is a jinja2 environment which allow to use python commands inside latex.
@ -9,6 +15,30 @@ Pytex is a simple package which make a bridge between Latex and Python.
- **\Block{#}** is the equivalent of **{% block #%}** in Jinja2. Every python's commands will be run like in a script. **%-** is also available for line statement.
- **\Var{#}** is the equivalent of **{{#}}** which print the statment.
Use the environment with a string template.
``` python
>>> from pytex import texenv
>>> text = "Hello"
>>> template = """\
\Var{text}
\Block{set a = 2}
%-set b = 3
\Var{a}
\Var{b}
"""
>>> template = texenv.from_string(template)
>>> print(template.render(text = text)
Hello
2
3
```
## feed: converting template into tex files

View File

@ -40,33 +40,51 @@ def update_export_dict(new_dict):
"""
EXPORT_DICT.update(new_dict)
def run_python(template:str, data:dict):
""" Runs python commands using data
:param template: string containing python commands
:param data: dictionary with variables needed to run commands
def feed(template, data, output="", force=0):
""" Feed template with data to output
"""
jinja_template = texenv.from_string(template)
return jinja_template.render(**data)
:param template: jinja2 template with texenv environment
:param data: Data dictionnary
def build_output(filename):
""" Replace tpl with a number in filename and insure that this file does not exists """
num = 1
output_p = Path(filename.replace('tpl', f'{num:02d}'))
while output_p.exists():
logger.debug(f"{output_p} exists. Try next one")
num += 1
output_p = Path(filename.replace('tpl', f'{num:02d}'))
return output_p
def feed(template_filename, data, output="", force=0):
""" Feed template_filename with data and write it to output
:param template_filename: jinja2 template with texenv environment
:param data: Data dictionary
:param output: name of the output file
(by default: tpl is replaced by a 2 digits number)
:param force: Override is the output already exists
:return: name of fed template
:return: output filename
"""
logger.info(f"Getting template {template}")
tpl = texenv.get_template(str(template))
logger.info(f"Getting template_filename {template_filename}")
with open(template_filename, "r") as f:
fed = run_python("".join(f.readlines()), data)
if not output:
num = 1
output_p = Path(template.replace('tpl', f'{num:02d}'))
while output_p.exists() and not force:
logger.debug(f"{output_p} exists. Try next one")
num += 1
output_p = Path(template.replace('tpl', f'{num:02d}'))
output_p = build_output(template_filename)
else:
output_p = Path(output)
if not force and output_p.exists():
logger.error(f"{output} exists. Use force=1 do override it")
raise ValueError(f"{output} exists. Use force=1 do override it")
if not force and output_p.exists():
logger.error(f"{output} exists. Use force=1 do override it")
raise ValueError(f"{output} exists. Use force=1 do override it")
output_dir = output_p.parent
if output_dir and not output_dir.exists():
@ -74,8 +92,9 @@ def feed(template, data, output="", force=0):
output_dir.mkdir(exist_ok=True)
with open(output_p, "w") as output_f:
output_f.write(tpl.render(**EXPORT_DICT, **data))
logger.info(f"{template} has been rendered to {output}.")
output_f.write(fed)
logger.info(f"{template_filename} has been rendered to {output}.")
return output_p
@ -93,7 +112,7 @@ def pdflatex(tex_filename, output_dir=""):
os.chdir(output_dir)
compilation = subprocess.Popen(
[
"pdflatex",
"lualatex",
f"-output-directory={output_dir}",
# "-halt-on-error",
"-interaction=nonstopmode",

0
tests/__init__.py Normal file
View File