RESTFUL web services consumed by web and native mobile apps with authentication in python using django framework

前端 未结 3 732
时光说笑
时光说笑 2021-02-04 17:54

I have to write RESTFUL web-services with authentication in python using django framework which will be consumed by web based clients and mobile native apps (Android and IOS).

3条回答
  •  佛祖请我去吃肉
    2021-02-04 18:31

    You can write RESTful web service with the python standard library, third party libraries are not absolutely necessary.

    You should read more about what defines a RESTful service, and start implementing it yourself.

    For what it's worth, I use cherrypy as a light framework in a few projects. It's simple and easy to use. The website even has a section about how to implement REST in your application.

提交回复
热议问题