sdementen
sdementen
I created a standalone workbook with version 0.15.5 of xlwings without pinning the version in the Pipfile. Colleagues were creating their virtualenv with a `pipenv install` installing version 0.15.8 of...
During the development, having the main module being automatically reloaded on change is a very valuable feature as the full restart of the process when we import lot of heavy...
The formatting of range in Excel is notoriously difficult to handle as it depends on the locale of the Excel application. It would be nice to be able to support...
implementation of #1821 Prerequisite: `pip install shiv` Process: 1. in your project repo, run the command ```shell xlwings shiv -p "$USERPROFILE$\AppData\Local\Programs\Python\Python38\python.exe" xlwings ``` that will create the file `shived_env.pyz` with...
shiv (https://github.com/linkedin/shiv) allows to pack all dependencies (site-packages/...) from a project in a single auto-executable file (.pyz using shebang to start it), including non pure python dependencies (compiled code, etc)....
Currently, I cannot run two UDF server in parallel with each one serving a different workbook without changing the VBA code. The clsid argument of the xw.serve function allows to...
proposition for implementation of #242 to define a UserException (inheriting from a COMException) that can be caught in the Sub to display a nice error message (other exceptions are still...
To avoid some nasty interactions at COM level between xlwings and Excel in the @xw.ret(expand='table') case, I wonder if it would not be possible to set `application.Interactive = False` when...
When testing the 'rows' field from the TextArea, I noticed I need to add a 'height': '100%' otherwise I see only 3 rows per default
**Use case**: I create an app and within the app define a couple of functions in a code.py with a requirements.txt beside. Hence all functions within my code.py depend on...