Hello,
I have a typst file on the webapp, it uses a csv file as an argument:
#import "ABC_lib.typ": *
#show: ABC_format
#import "@preview/cetz:0.3.2": canvas, draw
#import "@preview/cetz-plot:0.1.1": plot
// Load CSV and separate first row from others
#let (names, ..data) = csv("ABC_data.csv",
row-type: array)
//here the rest of the typst code
I want to generate the same PDF file for different Csv files, my idea is to use python to :
loop over the csv files in python
feed the template Csv_i
output a temporary typst file_i
use subprocess and convert it to PDF_i using typst compile.
delete the temporary file_i
repeat
I know how to do this in latex, but not in typst since it uses scripting, so it this optimal ? can it be done another way ?
requirements:
I need to do it locally since I have thousands of CSV files.
if you noticed i am importing a ABC_lib.typ which contains all the formatting and rules i usually use to generate pdfs, how do I include that file in the python process?
With Typst you can skip step 3 and 5 with the temporary file and use in step 4 with the Typst compile command --input key=value to provide the csv file name (and read the data with csv(...)) or provide the csv data directly to your Typst file. Inside the Typst file you can access the argument with sys.inputs.yourkey.
Edit: The full command you would use in step 4 with the Python subprocess is:
typst c main.typ --input yourkey=somefilename.csv
With the Typst compile command, #import ABC_lib.typ ... would be automatically used, no additional actions needed.
Hi, thank you for your response,
In the typst file how do I reference the csv file to take the “yourkey=somefilename.csv” as an argument fed to him by the subprocess ?
I think you’ll be interested in the other questions tagged data-loading (in fact, I will add that tag to your question after I finish writing this ). Particularly this one, which sounds very close to what you’re trying to do:
Yes, that helped me indeed, but I have hit a road block:
As I understand it, i must either feed typst a dictionary of all csv files or one csv file at a time.
The optimal way as I see it, is to loop over the files in python, feed them to typst, generate the pdf, but now I have multiple pdf files, I need to merge them into one report :/
Is there a way around this?