unlinking
unlinking
> it works for me, just run below code. you should modify your actual path of `bezier-b9fda8dc.dll` > > ```python > import ctypes > ctypes.cdll.LoadLibrary(r"C:\Users\oocarain\miniconda3\Lib\site-packages\bezier\extra-dll\bezier-b9fda8dc.dll") > ``` Same issue, this...
```python def handle_import_error(caught_exc, name): expected_msg = TEMPLATE.format(name) if caught_exc.args == (expected_msg,) or caught_exc.msg.startswith('DLL load failed'): return raise caught_exc ``` Add `caught_exc.msg.startswith('DLL load failed')` to catch dll load failed will work...
> @lulucas I may consider doing that, but I'd prefer to just not distribute a library with a broken DLL (even if it's only broken on some architectures / OS...
@dhermes I test it in two windows PCs, the result is intersting. this, works Python 3.9.9 (tags/v3.9.9:ccb0e6a, Nov 15 2021, 18:08:50) [MSC v.1929 64 bit (AMD64)] on win32 this is...
> The Anaconda distribution is the difference, right? Exactly, it's issus with anaconda.
> only `os.add_dll_directory` without LoadLibrary, does not work for conda, current beizer alreay has handled this in `add_dll_directory`. Maybe ImportError can be appended with an new condition to cover below...
Nice feature to generate golang client code. Currently, I have to use https://github.com/prisma-labs/get-graphql-schema, to generate IDL file from server, and parse it to ast.Schema. If gqlparse supports `buildClientSchema` it helps...
Give some ideas, for muon, just add a function that let user can set dynamic library path on their own, leave git clean. As user: For deploying, CI pipelines download...
discriminatedUnion is very useful in form validation with different options