├── .gitignore ├── PyApp ├── .gitignore ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── assets │ │ └── python │ │ │ └── bootstrap.py │ │ ├── java │ │ └── com │ │ │ └── jventura │ │ │ ├── pyapp │ │ │ └── MainActivity.java │ │ │ └── pybridge │ │ │ ├── AssetExtractor.java │ │ │ └── PyBridge.java │ │ ├── jni │ │ ├── Android.mk │ │ ├── Application.mk │ │ └── pybridge.c │ │ └── res │ │ ├── drawable-v24 │ │ └── ic_launcher_foreground.xml │ │ ├── drawable │ │ └── ic_launcher_background.xml │ │ ├── layout │ │ └── activity_main.xml │ │ ├── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ └── ic_launcher_round.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ └── values │ │ ├── colors.xml │ │ ├── strings.xml │ │ └── styles.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── README.md ├── pybridge.png └── python-for-android ├── build └── other_builds │ └── python3 │ └── armeabi-v7a__ndk_target_21 │ └── python3 │ ├── Include │ ├── Python-ast.h │ ├── Python.h │ ├── abstract.h │ ├── asdl.h │ ├── ast.h │ ├── bitset.h │ ├── bltinmodule.h │ ├── boolobject.h │ ├── bytearrayobject.h │ ├── bytes_methods.h │ ├── bytesobject.h │ ├── cellobject.h │ ├── ceval.h │ ├── classobject.h │ ├── code.h │ ├── codecs.h │ ├── compile.h │ ├── complexobject.h │ ├── context.h │ ├── cpython │ │ ├── abstract.h │ │ ├── dictobject.h │ │ ├── fileobject.h │ │ ├── initconfig.h │ │ ├── interpreteridobject.h │ │ ├── object.h │ │ ├── objimpl.h │ │ ├── pyerrors.h │ │ ├── pylifecycle.h │ │ ├── pymem.h │ │ ├── pystate.h │ │ ├── sysmodule.h │ │ ├── traceback.h │ │ ├── tupleobject.h │ │ └── unicodeobject.h │ ├── datetime.h │ ├── descrobject.h │ ├── dictobject.h │ ├── dtoa.h │ ├── dynamic_annotations.h │ ├── enumobject.h │ ├── errcode.h │ ├── eval.h │ ├── fileobject.h │ ├── fileutils.h │ ├── floatobject.h │ ├── frameobject.h │ ├── funcobject.h │ ├── genobject.h │ ├── graminit.h │ ├── grammar.h │ ├── import.h │ ├── internal │ │ ├── pycore_accu.h │ │ ├── pycore_atomic.h │ │ ├── pycore_ceval.h │ │ ├── pycore_code.h │ │ ├── pycore_condvar.h │ │ ├── pycore_context.h │ │ ├── pycore_fileutils.h │ │ ├── pycore_getopt.h │ │ ├── pycore_gil.h │ │ ├── pycore_hamt.h │ │ ├── pycore_initconfig.h │ │ ├── pycore_object.h │ │ ├── pycore_pathconfig.h │ │ ├── pycore_pyerrors.h │ │ ├── pycore_pyhash.h │ │ ├── pycore_pylifecycle.h │ │ ├── pycore_pymem.h │ │ ├── pycore_pystate.h │ │ ├── pycore_traceback.h │ │ ├── pycore_tupleobject.h │ │ └── pycore_warnings.h │ ├── interpreteridobject.h │ ├── intrcheck.h │ ├── iterobject.h │ ├── listobject.h │ ├── longintrepr.h │ ├── longobject.h │ ├── marshal.h │ ├── memoryobject.h │ ├── methodobject.h │ ├── modsupport.h │ ├── moduleobject.h │ ├── namespaceobject.h │ ├── node.h │ ├── object.h │ ├── objimpl.h │ ├── odictobject.h │ ├── opcode.h │ ├── osdefs.h │ ├── osmodule.h │ ├── parsetok.h │ ├── patchlevel.h │ ├── picklebufobject.h │ ├── py_curses.h │ ├── pyarena.h │ ├── pycapsule.h │ ├── pyconfig.h │ ├── pyctype.h │ ├── pydebug.h │ ├── pydtrace.d │ ├── pydtrace.h │ ├── pyerrors.h │ ├── pyexpat.h │ ├── pyfpe.h │ ├── pyhash.h │ ├── pylifecycle.h │ ├── pymacconfig.h │ ├── pymacro.h │ ├── pymath.h │ ├── pymem.h │ ├── pyport.h │ ├── pystate.h │ ├── pystrcmp.h │ ├── pystrhex.h │ ├── pystrtod.h │ ├── pythonrun.h │ ├── pythread.h │ ├── pytime.h │ ├── rangeobject.h │ ├── setobject.h │ ├── sliceobject.h │ ├── structmember.h │ ├── structseq.h │ ├── symtable.h │ ├── sysmodule.h │ ├── token.h │ ├── traceback.h │ ├── tracemalloc.h │ ├── tupleobject.h │ ├── typeslots.h │ ├── ucnhash.h │ ├── unicodeobject.h │ ├── warnings.h │ └── weakrefobject.h │ └── android-build │ ├── libpython3.8m.so │ └── pyconfig.h └── dists └── unnamed_dist_1__armeabi-v7a └── _python_bundle └── _python_bundle ├── modules ├── _asyncio.cpython-38.so ├── _bisect.cpython-38.so ├── _blake2.cpython-38.so ├── _codecs_cn.cpython-38.so ├── _codecs_hk.cpython-38.so ├── _codecs_iso2022.cpython-38.so ├── _codecs_jp.cpython-38.so ├── _codecs_kr.cpython-38.so ├── _codecs_tw.cpython-38.so ├── _contextvars.cpython-38.so ├── _csv.cpython-38.so ├── _ctypes_test.cpython-38.so ├── _datetime.cpython-38.so ├── _decimal.cpython-38.so ├── _elementtree.cpython-38.so ├── _heapq.cpython-38.so ├── _json.cpython-38.so ├── _lsprof.cpython-38.so ├── _md5.cpython-38.so ├── _multibytecodec.cpython-38.so ├── _multiprocessing.cpython-38.so ├── _opcode.cpython-38.so ├── _pickle.cpython-38.so ├── _posixsubprocess.cpython-38.so ├── _queue.cpython-38.so ├── _random.cpython-38.so ├── _sha1.cpython-38.so ├── _sha256.cpython-38.so ├── _sha3.cpython-38.so ├── _sha512.cpython-38.so ├── _socket.cpython-38.so ├── _statistics.cpython-38.so ├── _struct.cpython-38.so ├── _sysconfigdata__linux_.pyc ├── _testbuffer.cpython-38.so ├── _testcapi.cpython-38.so ├── _testimportmultiple.cpython-38.so ├── _testinternalcapi.cpython-38.so ├── _testmultiphase.cpython-38.so ├── _xxsubinterpreters.cpython-38.so ├── _xxtestfuzz.cpython-38.so ├── array.cpython-38.so ├── audioop.cpython-38.so ├── binascii.cpython-38.so ├── cmath.cpython-38.so ├── fcntl.cpython-38.so ├── math.cpython-38.so ├── mmap.cpython-38.so ├── ossaudiodev.cpython-38.so ├── parser.cpython-38.so ├── pyexpat.cpython-38.so ├── resource.cpython-38.so ├── select.cpython-38.so ├── syslog.cpython-38.so ├── termios.cpython-38.so ├── unicodedata.cpython-38.so ├── xxlimited.cpython-38.so └── zlib.cpython-38.so └── stdlib.zip /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/.gitignore -------------------------------------------------------------------------------- /PyApp/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/PyApp/.gitignore -------------------------------------------------------------------------------- /PyApp/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /PyApp/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/PyApp/app/build.gradle -------------------------------------------------------------------------------- /PyApp/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/PyApp/app/proguard-rules.pro -------------------------------------------------------------------------------- /PyApp/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/PyApp/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /PyApp/app/src/main/assets/python/bootstrap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/PyApp/app/src/main/assets/python/bootstrap.py -------------------------------------------------------------------------------- /PyApp/app/src/main/java/com/jventura/pyapp/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/PyApp/app/src/main/java/com/jventura/pyapp/MainActivity.java -------------------------------------------------------------------------------- /PyApp/app/src/main/java/com/jventura/pybridge/AssetExtractor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/PyApp/app/src/main/java/com/jventura/pybridge/AssetExtractor.java -------------------------------------------------------------------------------- /PyApp/app/src/main/java/com/jventura/pybridge/PyBridge.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/PyApp/app/src/main/java/com/jventura/pybridge/PyBridge.java -------------------------------------------------------------------------------- /PyApp/app/src/main/jni/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/PyApp/app/src/main/jni/Android.mk -------------------------------------------------------------------------------- /PyApp/app/src/main/jni/Application.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/PyApp/app/src/main/jni/Application.mk -------------------------------------------------------------------------------- /PyApp/app/src/main/jni/pybridge.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/PyApp/app/src/main/jni/pybridge.c -------------------------------------------------------------------------------- /PyApp/app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/PyApp/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /PyApp/app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/PyApp/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /PyApp/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/PyApp/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /PyApp/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/PyApp/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /PyApp/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/PyApp/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /PyApp/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/PyApp/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /PyApp/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/PyApp/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /PyApp/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/PyApp/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /PyApp/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/PyApp/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /PyApp/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/PyApp/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /PyApp/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/PyApp/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /PyApp/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/PyApp/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /PyApp/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/PyApp/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /PyApp/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/PyApp/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /PyApp/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/PyApp/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /PyApp/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/PyApp/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /PyApp/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/PyApp/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /PyApp/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/PyApp/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /PyApp/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/PyApp/build.gradle -------------------------------------------------------------------------------- /PyApp/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/PyApp/gradle.properties -------------------------------------------------------------------------------- /PyApp/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/PyApp/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /PyApp/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/PyApp/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /PyApp/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/PyApp/gradlew -------------------------------------------------------------------------------- /PyApp/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/PyApp/gradlew.bat -------------------------------------------------------------------------------- /PyApp/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/PyApp/settings.gradle -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/README.md -------------------------------------------------------------------------------- /pybridge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/pybridge.png -------------------------------------------------------------------------------- /python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/Python-ast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/Python-ast.h -------------------------------------------------------------------------------- /python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/Python.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/Python.h -------------------------------------------------------------------------------- /python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/abstract.h -------------------------------------------------------------------------------- /python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/asdl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/asdl.h -------------------------------------------------------------------------------- /python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/ast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/ast.h -------------------------------------------------------------------------------- /python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/bitset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/bitset.h -------------------------------------------------------------------------------- /python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/bltinmodule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/bltinmodule.h -------------------------------------------------------------------------------- /python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/boolobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/boolobject.h -------------------------------------------------------------------------------- /python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/bytearrayobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/bytearrayobject.h -------------------------------------------------------------------------------- /python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/bytes_methods.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/bytes_methods.h -------------------------------------------------------------------------------- /python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/bytesobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/bytesobject.h -------------------------------------------------------------------------------- /python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/cellobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/cellobject.h -------------------------------------------------------------------------------- /python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/ceval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/ceval.h -------------------------------------------------------------------------------- /python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/classobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/classobject.h -------------------------------------------------------------------------------- /python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/code.h -------------------------------------------------------------------------------- /python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/codecs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/codecs.h -------------------------------------------------------------------------------- /python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/compile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/compile.h -------------------------------------------------------------------------------- /python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/complexobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/complexobject.h -------------------------------------------------------------------------------- /python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/context.h -------------------------------------------------------------------------------- /python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/cpython/abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/cpython/abstract.h -------------------------------------------------------------------------------- /python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/cpython/dictobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/cpython/dictobject.h -------------------------------------------------------------------------------- /python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/cpython/fileobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/cpython/fileobject.h -------------------------------------------------------------------------------- /python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/cpython/initconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/cpython/initconfig.h -------------------------------------------------------------------------------- /python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/cpython/interpreteridobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/cpython/interpreteridobject.h -------------------------------------------------------------------------------- /python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/cpython/object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/cpython/object.h -------------------------------------------------------------------------------- /python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/cpython/objimpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/cpython/objimpl.h -------------------------------------------------------------------------------- /python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/cpython/pyerrors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/cpython/pyerrors.h -------------------------------------------------------------------------------- /python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/cpython/pylifecycle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/cpython/pylifecycle.h -------------------------------------------------------------------------------- /python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/cpython/pymem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/cpython/pymem.h -------------------------------------------------------------------------------- /python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/cpython/pystate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/cpython/pystate.h -------------------------------------------------------------------------------- /python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/cpython/sysmodule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/cpython/sysmodule.h -------------------------------------------------------------------------------- /python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/cpython/traceback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/cpython/traceback.h -------------------------------------------------------------------------------- /python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/cpython/tupleobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/cpython/tupleobject.h -------------------------------------------------------------------------------- /python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/cpython/unicodeobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/cpython/unicodeobject.h -------------------------------------------------------------------------------- /python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/datetime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/datetime.h -------------------------------------------------------------------------------- /python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/descrobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/descrobject.h -------------------------------------------------------------------------------- /python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/dictobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/dictobject.h -------------------------------------------------------------------------------- /python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/dtoa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/dtoa.h -------------------------------------------------------------------------------- /python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/dynamic_annotations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/dynamic_annotations.h -------------------------------------------------------------------------------- /python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/enumobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/enumobject.h -------------------------------------------------------------------------------- /python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/errcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/errcode.h -------------------------------------------------------------------------------- /python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/eval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/eval.h -------------------------------------------------------------------------------- /python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/fileobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/fileobject.h -------------------------------------------------------------------------------- /python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/fileutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/fileutils.h -------------------------------------------------------------------------------- /python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/floatobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/floatobject.h -------------------------------------------------------------------------------- /python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/frameobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/frameobject.h -------------------------------------------------------------------------------- /python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/funcobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/funcobject.h -------------------------------------------------------------------------------- /python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/genobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/genobject.h -------------------------------------------------------------------------------- /python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/graminit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/graminit.h -------------------------------------------------------------------------------- /python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/grammar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/grammar.h -------------------------------------------------------------------------------- /python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/import.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/import.h -------------------------------------------------------------------------------- /python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/internal/pycore_accu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/internal/pycore_accu.h -------------------------------------------------------------------------------- /python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/internal/pycore_atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/internal/pycore_atomic.h -------------------------------------------------------------------------------- /python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/internal/pycore_ceval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/internal/pycore_ceval.h -------------------------------------------------------------------------------- /python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/internal/pycore_code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/internal/pycore_code.h -------------------------------------------------------------------------------- /python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/internal/pycore_condvar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/internal/pycore_condvar.h -------------------------------------------------------------------------------- /python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/internal/pycore_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/internal/pycore_context.h -------------------------------------------------------------------------------- /python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/internal/pycore_fileutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/internal/pycore_fileutils.h -------------------------------------------------------------------------------- /python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/internal/pycore_getopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/internal/pycore_getopt.h -------------------------------------------------------------------------------- /python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/internal/pycore_gil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/internal/pycore_gil.h -------------------------------------------------------------------------------- /python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/internal/pycore_hamt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/internal/pycore_hamt.h -------------------------------------------------------------------------------- /python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/internal/pycore_initconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/internal/pycore_initconfig.h -------------------------------------------------------------------------------- /python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/internal/pycore_object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/internal/pycore_object.h -------------------------------------------------------------------------------- /python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/internal/pycore_pathconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/internal/pycore_pathconfig.h -------------------------------------------------------------------------------- /python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/internal/pycore_pyerrors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/internal/pycore_pyerrors.h -------------------------------------------------------------------------------- /python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/internal/pycore_pyhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/internal/pycore_pyhash.h -------------------------------------------------------------------------------- /python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/internal/pycore_pylifecycle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/internal/pycore_pylifecycle.h -------------------------------------------------------------------------------- /python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/internal/pycore_pymem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/internal/pycore_pymem.h -------------------------------------------------------------------------------- /python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/internal/pycore_pystate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/internal/pycore_pystate.h -------------------------------------------------------------------------------- /python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/internal/pycore_traceback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/internal/pycore_traceback.h -------------------------------------------------------------------------------- /python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/internal/pycore_tupleobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/internal/pycore_tupleobject.h -------------------------------------------------------------------------------- /python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/internal/pycore_warnings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/internal/pycore_warnings.h -------------------------------------------------------------------------------- /python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/interpreteridobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/interpreteridobject.h -------------------------------------------------------------------------------- /python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/intrcheck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/intrcheck.h -------------------------------------------------------------------------------- /python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/iterobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/iterobject.h -------------------------------------------------------------------------------- /python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/listobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/listobject.h -------------------------------------------------------------------------------- /python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/longintrepr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/longintrepr.h -------------------------------------------------------------------------------- /python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/longobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/longobject.h -------------------------------------------------------------------------------- /python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/marshal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/marshal.h -------------------------------------------------------------------------------- /python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/memoryobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/memoryobject.h -------------------------------------------------------------------------------- /python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/methodobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/methodobject.h -------------------------------------------------------------------------------- /python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/modsupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/modsupport.h -------------------------------------------------------------------------------- /python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/moduleobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/moduleobject.h -------------------------------------------------------------------------------- /python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/namespaceobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/namespaceobject.h -------------------------------------------------------------------------------- /python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/node.h -------------------------------------------------------------------------------- /python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/object.h -------------------------------------------------------------------------------- /python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/objimpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/objimpl.h -------------------------------------------------------------------------------- /python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/odictobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/odictobject.h -------------------------------------------------------------------------------- /python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/opcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/opcode.h -------------------------------------------------------------------------------- /python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/osdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/osdefs.h -------------------------------------------------------------------------------- /python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/osmodule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/osmodule.h -------------------------------------------------------------------------------- /python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/parsetok.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/parsetok.h -------------------------------------------------------------------------------- /python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/patchlevel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/patchlevel.h -------------------------------------------------------------------------------- /python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/picklebufobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/picklebufobject.h -------------------------------------------------------------------------------- /python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/py_curses.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/py_curses.h -------------------------------------------------------------------------------- /python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/pyarena.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/pyarena.h -------------------------------------------------------------------------------- /python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/pycapsule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/pycapsule.h -------------------------------------------------------------------------------- /python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/pyconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/pyconfig.h -------------------------------------------------------------------------------- /python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/pyctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/pyctype.h -------------------------------------------------------------------------------- /python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/pydebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/pydebug.h -------------------------------------------------------------------------------- /python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/pydtrace.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/pydtrace.d -------------------------------------------------------------------------------- /python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/pydtrace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/pydtrace.h -------------------------------------------------------------------------------- /python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/pyerrors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/pyerrors.h -------------------------------------------------------------------------------- /python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/pyexpat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/pyexpat.h -------------------------------------------------------------------------------- /python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/pyfpe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/pyfpe.h -------------------------------------------------------------------------------- /python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/pyhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/pyhash.h -------------------------------------------------------------------------------- /python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/pylifecycle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/pylifecycle.h -------------------------------------------------------------------------------- /python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/pymacconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/pymacconfig.h -------------------------------------------------------------------------------- /python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/pymacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/pymacro.h -------------------------------------------------------------------------------- /python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/pymath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/pymath.h -------------------------------------------------------------------------------- /python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/pymem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/pymem.h -------------------------------------------------------------------------------- /python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/pyport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/pyport.h -------------------------------------------------------------------------------- /python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/pystate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/pystate.h -------------------------------------------------------------------------------- /python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/pystrcmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/pystrcmp.h -------------------------------------------------------------------------------- /python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/pystrhex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/pystrhex.h -------------------------------------------------------------------------------- /python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/pystrtod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/pystrtod.h -------------------------------------------------------------------------------- /python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/pythonrun.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/pythonrun.h -------------------------------------------------------------------------------- /python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/pythread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/pythread.h -------------------------------------------------------------------------------- /python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/pytime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/pytime.h -------------------------------------------------------------------------------- /python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/rangeobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/rangeobject.h -------------------------------------------------------------------------------- /python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/setobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/setobject.h -------------------------------------------------------------------------------- /python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/sliceobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/sliceobject.h -------------------------------------------------------------------------------- /python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/structmember.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/structmember.h -------------------------------------------------------------------------------- /python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/structseq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/structseq.h -------------------------------------------------------------------------------- /python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/symtable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/symtable.h -------------------------------------------------------------------------------- /python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/sysmodule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/sysmodule.h -------------------------------------------------------------------------------- /python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/token.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/token.h -------------------------------------------------------------------------------- /python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/traceback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/traceback.h -------------------------------------------------------------------------------- /python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/tracemalloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/tracemalloc.h -------------------------------------------------------------------------------- /python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/tupleobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/tupleobject.h -------------------------------------------------------------------------------- /python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/typeslots.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/typeslots.h -------------------------------------------------------------------------------- /python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/ucnhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/ucnhash.h -------------------------------------------------------------------------------- /python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/unicodeobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/unicodeobject.h -------------------------------------------------------------------------------- /python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/warnings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/warnings.h -------------------------------------------------------------------------------- /python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/weakrefobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/Include/weakrefobject.h -------------------------------------------------------------------------------- /python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/android-build/libpython3.8m.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/android-build/libpython3.8m.so -------------------------------------------------------------------------------- /python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/android-build/pyconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/python-for-android/build/other_builds/python3/armeabi-v7a__ndk_target_21/python3/android-build/pyconfig.h -------------------------------------------------------------------------------- /python-for-android/dists/unnamed_dist_1__armeabi-v7a/_python_bundle/_python_bundle/modules/_asyncio.cpython-38.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/python-for-android/dists/unnamed_dist_1__armeabi-v7a/_python_bundle/_python_bundle/modules/_asyncio.cpython-38.so -------------------------------------------------------------------------------- /python-for-android/dists/unnamed_dist_1__armeabi-v7a/_python_bundle/_python_bundle/modules/_bisect.cpython-38.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/python-for-android/dists/unnamed_dist_1__armeabi-v7a/_python_bundle/_python_bundle/modules/_bisect.cpython-38.so -------------------------------------------------------------------------------- /python-for-android/dists/unnamed_dist_1__armeabi-v7a/_python_bundle/_python_bundle/modules/_blake2.cpython-38.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/python-for-android/dists/unnamed_dist_1__armeabi-v7a/_python_bundle/_python_bundle/modules/_blake2.cpython-38.so -------------------------------------------------------------------------------- /python-for-android/dists/unnamed_dist_1__armeabi-v7a/_python_bundle/_python_bundle/modules/_codecs_cn.cpython-38.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/python-for-android/dists/unnamed_dist_1__armeabi-v7a/_python_bundle/_python_bundle/modules/_codecs_cn.cpython-38.so -------------------------------------------------------------------------------- /python-for-android/dists/unnamed_dist_1__armeabi-v7a/_python_bundle/_python_bundle/modules/_codecs_hk.cpython-38.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/python-for-android/dists/unnamed_dist_1__armeabi-v7a/_python_bundle/_python_bundle/modules/_codecs_hk.cpython-38.so -------------------------------------------------------------------------------- /python-for-android/dists/unnamed_dist_1__armeabi-v7a/_python_bundle/_python_bundle/modules/_codecs_iso2022.cpython-38.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/python-for-android/dists/unnamed_dist_1__armeabi-v7a/_python_bundle/_python_bundle/modules/_codecs_iso2022.cpython-38.so -------------------------------------------------------------------------------- /python-for-android/dists/unnamed_dist_1__armeabi-v7a/_python_bundle/_python_bundle/modules/_codecs_jp.cpython-38.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/python-for-android/dists/unnamed_dist_1__armeabi-v7a/_python_bundle/_python_bundle/modules/_codecs_jp.cpython-38.so -------------------------------------------------------------------------------- /python-for-android/dists/unnamed_dist_1__armeabi-v7a/_python_bundle/_python_bundle/modules/_codecs_kr.cpython-38.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/python-for-android/dists/unnamed_dist_1__armeabi-v7a/_python_bundle/_python_bundle/modules/_codecs_kr.cpython-38.so -------------------------------------------------------------------------------- /python-for-android/dists/unnamed_dist_1__armeabi-v7a/_python_bundle/_python_bundle/modules/_codecs_tw.cpython-38.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/python-for-android/dists/unnamed_dist_1__armeabi-v7a/_python_bundle/_python_bundle/modules/_codecs_tw.cpython-38.so -------------------------------------------------------------------------------- /python-for-android/dists/unnamed_dist_1__armeabi-v7a/_python_bundle/_python_bundle/modules/_contextvars.cpython-38.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/python-for-android/dists/unnamed_dist_1__armeabi-v7a/_python_bundle/_python_bundle/modules/_contextvars.cpython-38.so -------------------------------------------------------------------------------- /python-for-android/dists/unnamed_dist_1__armeabi-v7a/_python_bundle/_python_bundle/modules/_csv.cpython-38.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/python-for-android/dists/unnamed_dist_1__armeabi-v7a/_python_bundle/_python_bundle/modules/_csv.cpython-38.so -------------------------------------------------------------------------------- /python-for-android/dists/unnamed_dist_1__armeabi-v7a/_python_bundle/_python_bundle/modules/_ctypes_test.cpython-38.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/python-for-android/dists/unnamed_dist_1__armeabi-v7a/_python_bundle/_python_bundle/modules/_ctypes_test.cpython-38.so -------------------------------------------------------------------------------- /python-for-android/dists/unnamed_dist_1__armeabi-v7a/_python_bundle/_python_bundle/modules/_datetime.cpython-38.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/python-for-android/dists/unnamed_dist_1__armeabi-v7a/_python_bundle/_python_bundle/modules/_datetime.cpython-38.so -------------------------------------------------------------------------------- /python-for-android/dists/unnamed_dist_1__armeabi-v7a/_python_bundle/_python_bundle/modules/_decimal.cpython-38.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/python-for-android/dists/unnamed_dist_1__armeabi-v7a/_python_bundle/_python_bundle/modules/_decimal.cpython-38.so -------------------------------------------------------------------------------- /python-for-android/dists/unnamed_dist_1__armeabi-v7a/_python_bundle/_python_bundle/modules/_elementtree.cpython-38.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/python-for-android/dists/unnamed_dist_1__armeabi-v7a/_python_bundle/_python_bundle/modules/_elementtree.cpython-38.so -------------------------------------------------------------------------------- /python-for-android/dists/unnamed_dist_1__armeabi-v7a/_python_bundle/_python_bundle/modules/_heapq.cpython-38.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/python-for-android/dists/unnamed_dist_1__armeabi-v7a/_python_bundle/_python_bundle/modules/_heapq.cpython-38.so -------------------------------------------------------------------------------- /python-for-android/dists/unnamed_dist_1__armeabi-v7a/_python_bundle/_python_bundle/modules/_json.cpython-38.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/python-for-android/dists/unnamed_dist_1__armeabi-v7a/_python_bundle/_python_bundle/modules/_json.cpython-38.so -------------------------------------------------------------------------------- /python-for-android/dists/unnamed_dist_1__armeabi-v7a/_python_bundle/_python_bundle/modules/_lsprof.cpython-38.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/python-for-android/dists/unnamed_dist_1__armeabi-v7a/_python_bundle/_python_bundle/modules/_lsprof.cpython-38.so -------------------------------------------------------------------------------- /python-for-android/dists/unnamed_dist_1__armeabi-v7a/_python_bundle/_python_bundle/modules/_md5.cpython-38.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/python-for-android/dists/unnamed_dist_1__armeabi-v7a/_python_bundle/_python_bundle/modules/_md5.cpython-38.so -------------------------------------------------------------------------------- /python-for-android/dists/unnamed_dist_1__armeabi-v7a/_python_bundle/_python_bundle/modules/_multibytecodec.cpython-38.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/python-for-android/dists/unnamed_dist_1__armeabi-v7a/_python_bundle/_python_bundle/modules/_multibytecodec.cpython-38.so -------------------------------------------------------------------------------- /python-for-android/dists/unnamed_dist_1__armeabi-v7a/_python_bundle/_python_bundle/modules/_multiprocessing.cpython-38.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/python-for-android/dists/unnamed_dist_1__armeabi-v7a/_python_bundle/_python_bundle/modules/_multiprocessing.cpython-38.so -------------------------------------------------------------------------------- /python-for-android/dists/unnamed_dist_1__armeabi-v7a/_python_bundle/_python_bundle/modules/_opcode.cpython-38.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/python-for-android/dists/unnamed_dist_1__armeabi-v7a/_python_bundle/_python_bundle/modules/_opcode.cpython-38.so -------------------------------------------------------------------------------- /python-for-android/dists/unnamed_dist_1__armeabi-v7a/_python_bundle/_python_bundle/modules/_pickle.cpython-38.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/python-for-android/dists/unnamed_dist_1__armeabi-v7a/_python_bundle/_python_bundle/modules/_pickle.cpython-38.so -------------------------------------------------------------------------------- /python-for-android/dists/unnamed_dist_1__armeabi-v7a/_python_bundle/_python_bundle/modules/_posixsubprocess.cpython-38.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/python-for-android/dists/unnamed_dist_1__armeabi-v7a/_python_bundle/_python_bundle/modules/_posixsubprocess.cpython-38.so -------------------------------------------------------------------------------- /python-for-android/dists/unnamed_dist_1__armeabi-v7a/_python_bundle/_python_bundle/modules/_queue.cpython-38.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/python-for-android/dists/unnamed_dist_1__armeabi-v7a/_python_bundle/_python_bundle/modules/_queue.cpython-38.so -------------------------------------------------------------------------------- /python-for-android/dists/unnamed_dist_1__armeabi-v7a/_python_bundle/_python_bundle/modules/_random.cpython-38.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/python-for-android/dists/unnamed_dist_1__armeabi-v7a/_python_bundle/_python_bundle/modules/_random.cpython-38.so -------------------------------------------------------------------------------- /python-for-android/dists/unnamed_dist_1__armeabi-v7a/_python_bundle/_python_bundle/modules/_sha1.cpython-38.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/python-for-android/dists/unnamed_dist_1__armeabi-v7a/_python_bundle/_python_bundle/modules/_sha1.cpython-38.so -------------------------------------------------------------------------------- /python-for-android/dists/unnamed_dist_1__armeabi-v7a/_python_bundle/_python_bundle/modules/_sha256.cpython-38.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/python-for-android/dists/unnamed_dist_1__armeabi-v7a/_python_bundle/_python_bundle/modules/_sha256.cpython-38.so -------------------------------------------------------------------------------- /python-for-android/dists/unnamed_dist_1__armeabi-v7a/_python_bundle/_python_bundle/modules/_sha3.cpython-38.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/python-for-android/dists/unnamed_dist_1__armeabi-v7a/_python_bundle/_python_bundle/modules/_sha3.cpython-38.so -------------------------------------------------------------------------------- /python-for-android/dists/unnamed_dist_1__armeabi-v7a/_python_bundle/_python_bundle/modules/_sha512.cpython-38.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/python-for-android/dists/unnamed_dist_1__armeabi-v7a/_python_bundle/_python_bundle/modules/_sha512.cpython-38.so -------------------------------------------------------------------------------- /python-for-android/dists/unnamed_dist_1__armeabi-v7a/_python_bundle/_python_bundle/modules/_socket.cpython-38.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/python-for-android/dists/unnamed_dist_1__armeabi-v7a/_python_bundle/_python_bundle/modules/_socket.cpython-38.so -------------------------------------------------------------------------------- /python-for-android/dists/unnamed_dist_1__armeabi-v7a/_python_bundle/_python_bundle/modules/_statistics.cpython-38.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/python-for-android/dists/unnamed_dist_1__armeabi-v7a/_python_bundle/_python_bundle/modules/_statistics.cpython-38.so -------------------------------------------------------------------------------- /python-for-android/dists/unnamed_dist_1__armeabi-v7a/_python_bundle/_python_bundle/modules/_struct.cpython-38.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/python-for-android/dists/unnamed_dist_1__armeabi-v7a/_python_bundle/_python_bundle/modules/_struct.cpython-38.so -------------------------------------------------------------------------------- /python-for-android/dists/unnamed_dist_1__armeabi-v7a/_python_bundle/_python_bundle/modules/_sysconfigdata__linux_.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/python-for-android/dists/unnamed_dist_1__armeabi-v7a/_python_bundle/_python_bundle/modules/_sysconfigdata__linux_.pyc -------------------------------------------------------------------------------- /python-for-android/dists/unnamed_dist_1__armeabi-v7a/_python_bundle/_python_bundle/modules/_testbuffer.cpython-38.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/python-for-android/dists/unnamed_dist_1__armeabi-v7a/_python_bundle/_python_bundle/modules/_testbuffer.cpython-38.so -------------------------------------------------------------------------------- /python-for-android/dists/unnamed_dist_1__armeabi-v7a/_python_bundle/_python_bundle/modules/_testcapi.cpython-38.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/python-for-android/dists/unnamed_dist_1__armeabi-v7a/_python_bundle/_python_bundle/modules/_testcapi.cpython-38.so -------------------------------------------------------------------------------- /python-for-android/dists/unnamed_dist_1__armeabi-v7a/_python_bundle/_python_bundle/modules/_testimportmultiple.cpython-38.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/python-for-android/dists/unnamed_dist_1__armeabi-v7a/_python_bundle/_python_bundle/modules/_testimportmultiple.cpython-38.so -------------------------------------------------------------------------------- /python-for-android/dists/unnamed_dist_1__armeabi-v7a/_python_bundle/_python_bundle/modules/_testinternalcapi.cpython-38.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/python-for-android/dists/unnamed_dist_1__armeabi-v7a/_python_bundle/_python_bundle/modules/_testinternalcapi.cpython-38.so -------------------------------------------------------------------------------- /python-for-android/dists/unnamed_dist_1__armeabi-v7a/_python_bundle/_python_bundle/modules/_testmultiphase.cpython-38.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/python-for-android/dists/unnamed_dist_1__armeabi-v7a/_python_bundle/_python_bundle/modules/_testmultiphase.cpython-38.so -------------------------------------------------------------------------------- /python-for-android/dists/unnamed_dist_1__armeabi-v7a/_python_bundle/_python_bundle/modules/_xxsubinterpreters.cpython-38.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/python-for-android/dists/unnamed_dist_1__armeabi-v7a/_python_bundle/_python_bundle/modules/_xxsubinterpreters.cpython-38.so -------------------------------------------------------------------------------- /python-for-android/dists/unnamed_dist_1__armeabi-v7a/_python_bundle/_python_bundle/modules/_xxtestfuzz.cpython-38.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/python-for-android/dists/unnamed_dist_1__armeabi-v7a/_python_bundle/_python_bundle/modules/_xxtestfuzz.cpython-38.so -------------------------------------------------------------------------------- /python-for-android/dists/unnamed_dist_1__armeabi-v7a/_python_bundle/_python_bundle/modules/array.cpython-38.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/python-for-android/dists/unnamed_dist_1__armeabi-v7a/_python_bundle/_python_bundle/modules/array.cpython-38.so -------------------------------------------------------------------------------- /python-for-android/dists/unnamed_dist_1__armeabi-v7a/_python_bundle/_python_bundle/modules/audioop.cpython-38.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/python-for-android/dists/unnamed_dist_1__armeabi-v7a/_python_bundle/_python_bundle/modules/audioop.cpython-38.so -------------------------------------------------------------------------------- /python-for-android/dists/unnamed_dist_1__armeabi-v7a/_python_bundle/_python_bundle/modules/binascii.cpython-38.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/python-for-android/dists/unnamed_dist_1__armeabi-v7a/_python_bundle/_python_bundle/modules/binascii.cpython-38.so -------------------------------------------------------------------------------- /python-for-android/dists/unnamed_dist_1__armeabi-v7a/_python_bundle/_python_bundle/modules/cmath.cpython-38.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/python-for-android/dists/unnamed_dist_1__armeabi-v7a/_python_bundle/_python_bundle/modules/cmath.cpython-38.so -------------------------------------------------------------------------------- /python-for-android/dists/unnamed_dist_1__armeabi-v7a/_python_bundle/_python_bundle/modules/fcntl.cpython-38.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/python-for-android/dists/unnamed_dist_1__armeabi-v7a/_python_bundle/_python_bundle/modules/fcntl.cpython-38.so -------------------------------------------------------------------------------- /python-for-android/dists/unnamed_dist_1__armeabi-v7a/_python_bundle/_python_bundle/modules/math.cpython-38.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/python-for-android/dists/unnamed_dist_1__armeabi-v7a/_python_bundle/_python_bundle/modules/math.cpython-38.so -------------------------------------------------------------------------------- /python-for-android/dists/unnamed_dist_1__armeabi-v7a/_python_bundle/_python_bundle/modules/mmap.cpython-38.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/python-for-android/dists/unnamed_dist_1__armeabi-v7a/_python_bundle/_python_bundle/modules/mmap.cpython-38.so -------------------------------------------------------------------------------- /python-for-android/dists/unnamed_dist_1__armeabi-v7a/_python_bundle/_python_bundle/modules/ossaudiodev.cpython-38.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/python-for-android/dists/unnamed_dist_1__armeabi-v7a/_python_bundle/_python_bundle/modules/ossaudiodev.cpython-38.so -------------------------------------------------------------------------------- /python-for-android/dists/unnamed_dist_1__armeabi-v7a/_python_bundle/_python_bundle/modules/parser.cpython-38.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/python-for-android/dists/unnamed_dist_1__armeabi-v7a/_python_bundle/_python_bundle/modules/parser.cpython-38.so -------------------------------------------------------------------------------- /python-for-android/dists/unnamed_dist_1__armeabi-v7a/_python_bundle/_python_bundle/modules/pyexpat.cpython-38.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/python-for-android/dists/unnamed_dist_1__armeabi-v7a/_python_bundle/_python_bundle/modules/pyexpat.cpython-38.so -------------------------------------------------------------------------------- /python-for-android/dists/unnamed_dist_1__armeabi-v7a/_python_bundle/_python_bundle/modules/resource.cpython-38.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/python-for-android/dists/unnamed_dist_1__armeabi-v7a/_python_bundle/_python_bundle/modules/resource.cpython-38.so -------------------------------------------------------------------------------- /python-for-android/dists/unnamed_dist_1__armeabi-v7a/_python_bundle/_python_bundle/modules/select.cpython-38.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/python-for-android/dists/unnamed_dist_1__armeabi-v7a/_python_bundle/_python_bundle/modules/select.cpython-38.so -------------------------------------------------------------------------------- /python-for-android/dists/unnamed_dist_1__armeabi-v7a/_python_bundle/_python_bundle/modules/syslog.cpython-38.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/python-for-android/dists/unnamed_dist_1__armeabi-v7a/_python_bundle/_python_bundle/modules/syslog.cpython-38.so -------------------------------------------------------------------------------- /python-for-android/dists/unnamed_dist_1__armeabi-v7a/_python_bundle/_python_bundle/modules/termios.cpython-38.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/python-for-android/dists/unnamed_dist_1__armeabi-v7a/_python_bundle/_python_bundle/modules/termios.cpython-38.so -------------------------------------------------------------------------------- /python-for-android/dists/unnamed_dist_1__armeabi-v7a/_python_bundle/_python_bundle/modules/unicodedata.cpython-38.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/python-for-android/dists/unnamed_dist_1__armeabi-v7a/_python_bundle/_python_bundle/modules/unicodedata.cpython-38.so -------------------------------------------------------------------------------- /python-for-android/dists/unnamed_dist_1__armeabi-v7a/_python_bundle/_python_bundle/modules/xxlimited.cpython-38.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/python-for-android/dists/unnamed_dist_1__armeabi-v7a/_python_bundle/_python_bundle/modules/xxlimited.cpython-38.so -------------------------------------------------------------------------------- /python-for-android/dists/unnamed_dist_1__armeabi-v7a/_python_bundle/_python_bundle/modules/zlib.cpython-38.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/python-for-android/dists/unnamed_dist_1__armeabi-v7a/_python_bundle/_python_bundle/modules/zlib.cpython-38.so -------------------------------------------------------------------------------- /python-for-android/dists/unnamed_dist_1__armeabi-v7a/_python_bundle/_python_bundle/stdlib.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoventura/pybridge/HEAD/python-for-android/dists/unnamed_dist_1__armeabi-v7a/_python_bundle/_python_bundle/stdlib.zip --------------------------------------------------------------------------------