Sergey Shepelev
Sergey Shepelev
@Andcircle you can reinstall Windows. I think it will will not help. My best advice so far is to use Linux.
@naman108 sorry I can't give detailed instruction right now, but generally speaking you should create ssl context, load required credentials (possibly protected by password) into it and then use context...
AFAIK there is nothing eventlet specific in ssl API. As Python ssl doc (linked above) says, you should create socket and wrap it with ssl's either explicit or implicit default...
@naman108 did you get encrypted key running?
Right, so best option to configure frame limit is where websocket handlers are declared, in your case seems in socket-io. I'll try to talk to socket-io team about that. Your...
`import eventlet.websocket`
There is no magic syntax really, "shift left by tens" is just a convenient way to write 1024-based thousands, so - `1
Is this code run before socket-io?
If you send each image in a distinct websocket frame (socketio event), that may solve everything while keeping safe frame limit.
Please show minimal reproduction script. This is common pattern for atomic uploading a set of big files: ```python set_id = api.set_create() for f in files: api.set_upload(set_id, f) api.set_commit(set_id) # this...