Haw-minn Lu
Haw-minn Lu
I found this blog: (https://medium.com/@vivsvaan/filling-editable-pdf-in-python-76712c3ce99) and corresponding repo (https://github.com/vivsvaan/filling_editable_pdf_python). It seems to work at least on Reader DC and chrome. I did notice that some fields don't appear filled in...
The typical pattern I've seen posted for merging PDFs is something like ```python writer = PdfWriter() for fname in files: r = PdfReader(fname) writer.addpages(r.pages) writer.write("output.pdf") ``` This of course loses...
Here's the documentation I prepared with the pull request. The dictionary based callback decorator `@app.dict_callback` operates similarly to the normal `@app.callback` decorator. With two additional options `strict` and `allow_missing`. The...
I have taken a look at the callback enhancement though not in great code detail and compared our approaches. I think fundamentally there is a difference in philosophy. You mentioned...
I took a broader look at your documentation, I think your templates is a fantastic idea. I had some thoughts but didn't know whether to create a separate issue. One...
I'll give the plugin a go. Is there a forum thread for this topic?
Had to jump through a few approvals at work but I open sourced the dict_callback as a plugin. It's now available at Pypi `pip install dash-dict-callback` if anyone wants to...