Hi guys,
I am trying to deploy a web app on Vercel that uses the Python FBX SDK as a dependency. The current wheel on offer by Autodesk is of course the Python 3.10 version. Vercel, unfortunately, only runs Python 3.12 and can also run Python 3.9.
From @hansgodard, I was able to download the 3.9 files. Are these bindings, or the Python FBX SDK itself? If I'm not entirely wrong, I should be able to package some or all of the included files as a wheel, which i can then add to my project and list in my requirements.txt file.
Two questions:
1. Will the "bindings" work on their own without the C++ package? I don't fully understand bindings.
2. Any help on how to properly build the 3.9 wheel from the provided files would be greatly appreciated.
Thanks!
Edit:
I download a 3.9 wheel from here: https://gitlab.inria.fr/api/v4/projects/18692/packages/pypi/simple/fbxsdkpy
Testing now.