B4J Library [python] B4XSerializator implementation in Python - Erel    Jan 15, 2025   (19 reactions) Python is a very nice programming language and it rules several domains such as data science... build several utilities to make it easier to integrate and communicate with Python scripts. The first... B4X types to Python dataclass. In order to deserialize dataclasses, the classes need to be passed to... == '__main__': ser = B4XSerializator(types=) t = Testing(Aa=11, Bb="from python...) Combinations of maps(dicts), lists and custom types are supported. Note that Python ints... B4J Tutorial [pybridge] Mac notarized standalone package with embedded python - Erel    Dec 16, 2025   (5 reactions) with B4J-Bridge and MacSigner. MacSigner v2.01+ is required. 1. Download standalone python and remove quarantine flags: Python 3.11 for arm64 Mac: https://github.com/astral-sh/python-build-standalone... running with B4J-Bridge. Run this command from the terminal (run it from the python folder) xattr -dr com.apple.quarantine . You should now be able to run python: cd bin ./python And install packages with pip (./pip) 2. Configure PyBridge to find python: Dim opt As PyOptions = Py.CreateOptions... Other B4J v10.2 with support for Python, is available for download - Erel    Mar 17, 2025   (30 reactions) This update includes a new library named PyBridge, that allows using Python libraries from inside the B4J app. Python is leading the way in fields such as AI, LLM, image recognition and many others... B4J Library [python] jRDC2 Python client - Erel    Jan 15, 2025   (13 reactions) Start here: https://www.b4x.com/android/forum/threads/python-b4xserializator-implementation-in-python.165109/ Depends on: pip install requests Example: from db_request_manager import DBRequestManager, DBCommand if __name__ == '__main__': req = DBRequestManager(connector_link="http://127.0.0.1:17178/rdc") req.execute_batch() print("table created successfully") commands = with open(r"C:\Users\H\Downloads\1.jpg", "rb") as f... B4J Code Snippet [PyBridge] Convert Python object to dict / map - Erel    Aug 12, 2025   (3 reactions) This methods extracts a list of fields from a Python object and creates a dict (Python equivalent to Map) with the field names as keys and the values. It is useful when the relevant fields are serializable. Private Sub ObjectToDict (Obj As PyWrapper, Fields As List) As PyWrapper Dim entries As List = B4XCollections.CreateList(Null) For Each key As String In Fields entries.Add... is a Python object that can't be serialized directly, so we extract the fields: Wait For... B4J Library [B4J][PyBridge] PyWorks: a Class to Facilitate Running Python Code - William Lancee    Jan 21, 2026   (10 reactions) This class arose from my experience with PyBridge. PyBridge is a powerful interface to Python. With PyBridge you can use Python code in the way Python was intended: as a Command Line tool - commands are send to Python. It can also be used to register Python "Subs" (called "def" in Python), then call that Sub with arguments, and expect a return value. This is the method... you think this is a bad idea, please ignore this post. Most of my work with Python is calling a method... B4J Library [PyBridge] UPDATE PyPasslib – Secure Password Hashing via Python & Passlib - zed    Sep 9, 2025   (5 reactions) the PassLib library in Python.
It leverages PyBridge to connect your B4J app to Python, giving...
Passlib installed in your Python environment: pip install passlib
bcrypt_4.0.1 installed in your... B4J Code Snippet Get fingerprint validation using B4J + Python + DLL (Windows Only) - Daestrum    Aug 20, 2025   (4 reactions) B4J with Python with a DLL bridge to WInbio.
The Python script spawns another Python script, running... with 2 params :
1, The path to Python (it has to spawn a new python)
2, The path of the second python..., Array("D:/Python313/python.exe",getAssetFile("py_fp_test.py")), readAsset... B4J Library [B4J, B4XPages] B4J as an interactive backend for Python3 - William Lancee    May 25, 2024   (9 reactions) version of Python is 3.12.3. Python3 has quite a few differences from Python2, and is not backwards compatible.
The PyUDP class attached is for Python3. When installing Python3, a launcher Py.exe... B4A Library NinjaPython - Use Python Scripts in B4A - wonder    Oct 31, 2017   (20 reactions)
The NinjaPython B4A library brings you the ability of utilizing the Python language inside your B4A games.../
Features:
- CPython Interpreter 2.7.9
- Python Standard Library
- x86 and ARM compatible
- Ongoing... Page: 1   2   3   4   5   6   7   |