Providing python api over the web for iphone application

I have functionality built into python on a central server. I want to expose this api over the network in an iphone application. What would be the best way to do this?

Is it possible to create web services in python and use iphone application? If so, can someone give me directions on how to create web services in python.

If anyone has a better idea on how to do this, let me know =)

+3
source share
2 answers

Simplest xmlrpclib if the application you want to use this service can speak XML-RPC.

SO iPhone XML-RPC .

+2
+1

Source: https://habr.com/ru/post/1739394/


All Articles