Eerik Sven Puudist
Eerik Sven Puudist

Reputation: 2346

Integrating Kotlin with Python

I have an existing Python Django application. Now as it has grown a little bigger, I would like to write some business logic in Kotlin. Is there a way to integrate those two languages? Of course it can be done with microservices, but this would add too much complexity.

Upvotes: 2

Views: 2276

Answers (1)

DevSrSouza
DevSrSouza

Reputation: 125

I found this sample in Kotlin Native repository of python extension:

https://github.com/JetBrains/kotlin-native/tree/master/samples/python_extension

Upvotes: 1

Related Questions