The “src/“ directory[0] contains compiled .so files. Is this even open source? [0] https://github.com/cirospaciari/socketify.py/tree/main/src/s...
src/socketify
├── __init__.py
├── __main__.py
├── asgi.py
├── cli.py
├── helpers.py
├── libsocketify_darwin_amd64.so
├── libsocketify_darwin_arm64.so
├── libsocketify_linux_amd64.so
├── libsocketify_windows_amd64.dll
├── loop.py
├── native
│ ├── Make.bat
│ ├── Makefile
│ ├── src
│ │ ├── libsocketify.cpp
│ │ └── libsocketify.h
│ └── uv_selector.txt
├── native.py
├── socketify.py
├── ssgi.py
├── status_codes.py
├── tasks.py
├── uv.py
├── uWebSockets
└── wsgi.py
I think the .so files are built from other source though? I'm not sure. In the makefile they are rm'd and then created. The linux workflow file, for example, has: make linux
cd ../
git add libsocketify_linux_amd64.so