You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is there any way to make the httpServer* methods (httpServerStart(), httpServerAddListener(), etc) available in the Python bindings? I tried ./configure --enable-python --with-libuv and --with all kinds of stuff, but to no avail.
It all builds and seems to work OK, except the httpServer* methods just aren't there:
In [8]: api
Out[8]: <resources.lib.mega.mega.MegaApi; proxy of <Swig Object of type 'mega::MegaApi *' at 0x7ffad6f11c60> >
In [9]: api.httpServerStart()
---------------------------------------------------------------------------
AttributeError Traceback (most recent call last)
Input In [9], in <module>
----> 1 api.httpServerStart()
AttributeError: 'MegaApi' object has no attribute 'httpServerStart'
In [10]: [m for m in api.__dir__() if "http" in m.lower()]
Out[10]: ['useHttpsOnly', 'usingHttpsOnly']
OS: Ubuntu 20.04.03
Python: 3.8.10
The text was updated successfully, but these errors were encountered:
Hi,
Is there any way to make the httpServer* methods (httpServerStart(), httpServerAddListener(), etc) available in the Python bindings? I tried
./configure --enable-python --with-libuv
and--with
all kinds of stuff, but to no avail.To be exact, this is my latest attempt:
It all builds and seems to work OK, except the httpServer* methods just aren't there:
OS: Ubuntu 20.04.03
Python: 3.8.10
The text was updated successfully, but these errors were encountered: