gitextract_0j37h__8/ ├── .github/ │ ├── FUNDING.yml │ └── workflows/ │ └── test.yml ├── .gitignore ├── .gitmodules ├── .travis.yml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── codegen-test/ │ ├── README.md │ ├── deps.edn │ ├── scripts/ │ │ ├── compile │ │ └── run │ └── src/ │ ├── code/ │ │ ├── codegen.clj │ │ └── main.clj │ └── python/ │ └── numpy.clj ├── deps.edn ├── dockerfiles/ │ ├── CondaDockerfile │ ├── Py38Dockerfile │ └── Py39Dockerfile ├── docs/ │ ├── Usage.html │ ├── css/ │ │ └── default.css │ ├── embedded.html │ ├── environments.html │ ├── highlight/ │ │ └── solarized-light.css │ ├── index.html │ ├── js/ │ │ └── page_effects.js │ ├── libpython-clj.python.html │ ├── libpython-clj.python.np-array.html │ ├── libpython-clj.require.html │ ├── libpython-clj2.codegen.html │ ├── libpython-clj2.embedded.html │ ├── libpython-clj2.java-api.html │ ├── libpython-clj2.python.class.html │ ├── libpython-clj2.python.html │ ├── libpython-clj2.python.np-array.html │ ├── libpython-clj2.require.html │ ├── new-to-clojure.html │ ├── scopes-and-gc.html │ └── slicing.html ├── questions/ │ ├── 32bit.txt │ ├── 64bit.txt │ ├── compile32.sh │ ├── compile64.sh │ ├── ssizet_size.cpp │ └── typeobject.cpp ├── resources/ │ └── clj-kondo.exports/ │ └── clj-python/ │ └── libpython-clj/ │ ├── config.edn │ └── hooks/ │ └── libpython_clj/ │ ├── jna/ │ │ └── base/ │ │ └── def_pylib_fn.clj │ └── require/ │ └── import_python.clj ├── scripts/ │ ├── build-conda-docker │ ├── build-py38-docker │ ├── build-py39-docker │ ├── conda-repl │ ├── deploy │ ├── install │ ├── py38-repl │ ├── run-conda-docker │ ├── run-py38-docker │ ├── run-py39-docker │ └── run-tests ├── src/ │ └── libpython_clj2/ │ ├── codegen.clj │ ├── embedded.clj │ ├── java_api.clj │ ├── metadata.clj │ ├── python/ │ │ ├── base.clj │ │ ├── bridge_as_jvm.clj │ │ ├── bridge_as_python.clj │ │ ├── class.clj │ │ ├── copy.clj │ │ ├── dechunk_map.clj │ │ ├── ffi.clj │ │ ├── fn.clj │ │ ├── gc.clj │ │ ├── info.clj │ │ ├── io_redirect.clj │ │ ├── jvm_handle.clj │ │ ├── np_array.clj │ │ ├── protocols.clj │ │ ├── windows.clj │ │ └── with.clj │ ├── python.clj │ ├── require.clj │ └── sugar.clj ├── test/ │ └── libpython_clj2/ │ ├── classes_test.clj │ ├── codegen_test.clj │ ├── ffi_test.clj │ ├── fncall_test.clj │ ├── iter_gen_seq_test.clj │ ├── java_api_test.clj │ ├── numpy_test.clj │ ├── python_test.clj │ ├── require_python_test.clj │ ├── stress_test.clj │ └── sugar_test.clj ├── testcode/ │ └── __init__.py └── topics/ ├── Usage.md ├── embedded.md ├── environments.md ├── new-to-clojure.md ├── scopes-and-gc.md └── slicing.md