Reputation: 2346
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
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