├── .gitattributes ├── .github └── CODEOWNERS ├── .gitignore ├── CODE_OF_CONDUCT.md ├── LICENSE ├── LICENSES ├── README.md ├── bzip2.txt ├── lzma.txt ├── sqlite.txt ├── uuid.txt └── zlib.txt ├── README.md ├── Setup.local ├── clear-uncompiled-pys.py ├── config.site ├── docker ├── Dockerfile ├── include │ ├── bzlib.h │ ├── lzma.h │ ├── lzma │ │ ├── base.h │ │ ├── bcj.h │ │ ├── block.h │ │ ├── check.h │ │ ├── container.h │ │ ├── delta.h │ │ ├── filter.h │ │ ├── hardware.h │ │ ├── index.h │ │ ├── index_hash.h │ │ ├── lzma.h │ │ ├── stream_flags.h │ │ ├── version.h │ │ └── vli.h │ ├── sqlite3.h │ ├── uuid.h │ ├── zconf.h │ └── zlib.h └── lib │ ├── libbz2.a │ ├── libgcc.a │ ├── liblzma.a │ ├── libsqlite3.a │ ├── libuuid.a │ └── libz.a ├── patches ├── _zoneinfo.c.patch ├── configure.ac.patch └── getpath.py.patch ├── reset-python-repo.sh ├── run.sh └── udf ├── app └── main.py ├── bindings.py ├── build.sh ├── my_udfs.py ├── test.py ├── udf.c ├── udf.h ├── udf.wit └── udf_impl.c /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/python-wasi/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/python-wasi/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/python-wasi/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/python-wasi/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/python-wasi/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSES/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/python-wasi/HEAD/LICENSES/README.md -------------------------------------------------------------------------------- /LICENSES/bzip2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/python-wasi/HEAD/LICENSES/bzip2.txt -------------------------------------------------------------------------------- /LICENSES/lzma.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/python-wasi/HEAD/LICENSES/lzma.txt -------------------------------------------------------------------------------- /LICENSES/sqlite.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/python-wasi/HEAD/LICENSES/sqlite.txt -------------------------------------------------------------------------------- /LICENSES/uuid.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/python-wasi/HEAD/LICENSES/uuid.txt -------------------------------------------------------------------------------- /LICENSES/zlib.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/python-wasi/HEAD/LICENSES/zlib.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/python-wasi/HEAD/README.md -------------------------------------------------------------------------------- /Setup.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/python-wasi/HEAD/Setup.local -------------------------------------------------------------------------------- /clear-uncompiled-pys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/python-wasi/HEAD/clear-uncompiled-pys.py -------------------------------------------------------------------------------- /config.site: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/python-wasi/HEAD/config.site -------------------------------------------------------------------------------- /docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/python-wasi/HEAD/docker/Dockerfile -------------------------------------------------------------------------------- /docker/include/bzlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/python-wasi/HEAD/docker/include/bzlib.h -------------------------------------------------------------------------------- /docker/include/lzma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/python-wasi/HEAD/docker/include/lzma.h -------------------------------------------------------------------------------- /docker/include/lzma/base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/python-wasi/HEAD/docker/include/lzma/base.h -------------------------------------------------------------------------------- /docker/include/lzma/bcj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/python-wasi/HEAD/docker/include/lzma/bcj.h -------------------------------------------------------------------------------- /docker/include/lzma/block.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/python-wasi/HEAD/docker/include/lzma/block.h -------------------------------------------------------------------------------- /docker/include/lzma/check.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/python-wasi/HEAD/docker/include/lzma/check.h -------------------------------------------------------------------------------- /docker/include/lzma/container.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/python-wasi/HEAD/docker/include/lzma/container.h -------------------------------------------------------------------------------- /docker/include/lzma/delta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/python-wasi/HEAD/docker/include/lzma/delta.h -------------------------------------------------------------------------------- /docker/include/lzma/filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/python-wasi/HEAD/docker/include/lzma/filter.h -------------------------------------------------------------------------------- /docker/include/lzma/hardware.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/python-wasi/HEAD/docker/include/lzma/hardware.h -------------------------------------------------------------------------------- /docker/include/lzma/index.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/python-wasi/HEAD/docker/include/lzma/index.h -------------------------------------------------------------------------------- /docker/include/lzma/index_hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/python-wasi/HEAD/docker/include/lzma/index_hash.h -------------------------------------------------------------------------------- /docker/include/lzma/lzma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/python-wasi/HEAD/docker/include/lzma/lzma.h -------------------------------------------------------------------------------- /docker/include/lzma/stream_flags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/python-wasi/HEAD/docker/include/lzma/stream_flags.h -------------------------------------------------------------------------------- /docker/include/lzma/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/python-wasi/HEAD/docker/include/lzma/version.h -------------------------------------------------------------------------------- /docker/include/lzma/vli.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/python-wasi/HEAD/docker/include/lzma/vli.h -------------------------------------------------------------------------------- /docker/include/sqlite3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/python-wasi/HEAD/docker/include/sqlite3.h -------------------------------------------------------------------------------- /docker/include/uuid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/python-wasi/HEAD/docker/include/uuid.h -------------------------------------------------------------------------------- /docker/include/zconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/python-wasi/HEAD/docker/include/zconf.h -------------------------------------------------------------------------------- /docker/include/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/python-wasi/HEAD/docker/include/zlib.h -------------------------------------------------------------------------------- /docker/lib/libbz2.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/python-wasi/HEAD/docker/lib/libbz2.a -------------------------------------------------------------------------------- /docker/lib/libgcc.a: -------------------------------------------------------------------------------- 1 | ! 2 | -------------------------------------------------------------------------------- /docker/lib/liblzma.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/python-wasi/HEAD/docker/lib/liblzma.a -------------------------------------------------------------------------------- /docker/lib/libsqlite3.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/python-wasi/HEAD/docker/lib/libsqlite3.a -------------------------------------------------------------------------------- /docker/lib/libuuid.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/python-wasi/HEAD/docker/lib/libuuid.a -------------------------------------------------------------------------------- /docker/lib/libz.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/python-wasi/HEAD/docker/lib/libz.a -------------------------------------------------------------------------------- /patches/_zoneinfo.c.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/python-wasi/HEAD/patches/_zoneinfo.c.patch -------------------------------------------------------------------------------- /patches/configure.ac.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/python-wasi/HEAD/patches/configure.ac.patch -------------------------------------------------------------------------------- /patches/getpath.py.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/python-wasi/HEAD/patches/getpath.py.patch -------------------------------------------------------------------------------- /reset-python-repo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/python-wasi/HEAD/reset-python-repo.sh -------------------------------------------------------------------------------- /run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/python-wasi/HEAD/run.sh -------------------------------------------------------------------------------- /udf/app/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/python-wasi/HEAD/udf/app/main.py -------------------------------------------------------------------------------- /udf/bindings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/python-wasi/HEAD/udf/bindings.py -------------------------------------------------------------------------------- /udf/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/python-wasi/HEAD/udf/build.sh -------------------------------------------------------------------------------- /udf/my_udfs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/python-wasi/HEAD/udf/my_udfs.py -------------------------------------------------------------------------------- /udf/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/python-wasi/HEAD/udf/test.py -------------------------------------------------------------------------------- /udf/udf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/python-wasi/HEAD/udf/udf.c -------------------------------------------------------------------------------- /udf/udf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/python-wasi/HEAD/udf/udf.h -------------------------------------------------------------------------------- /udf/udf.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/python-wasi/HEAD/udf/udf.wit -------------------------------------------------------------------------------- /udf/udf_impl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/python-wasi/HEAD/udf/udf_impl.c --------------------------------------------------------------------------------