Srujan Barai
Srujan Barai

Reputation: 2365

How do I integrate python library in Android app?

I am trying to build an Android app that can be used to connect to Tuya's smart devices. The only (unofficial) library I found for Tuya APIs is in Python. https://github.com/codetheweb/tuyapi

I want to write a wrapper that allows me to use these python APIs in Android app but I'm new to this python-android merger.

  1. Is it possible to use any python library in an Android app with a wrapper class?
  2. If yes, how can one do so?

I'm pretty sure, there is no one-line answer to this question but a guidance for what can be used to integrate python code in Android app would be appreciated.

Upvotes: 3

Views: 2172

Answers (1)

gianpaolo
gianpaolo

Reputation: 903

I was looking to do the same and found this, think it could help you: https://chaquo.com/chaquopy/doc/current/android.html

"Chaquopy is distributed as a plugin for Android’s Gradle-based build system"

Upvotes: 2

Related Questions