REST API documentation [closed] - django

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 9 years ago.
I am new to django-rest-framework. And I wonder if this module give user self generating documentation of his API. What I mean is if drf provides a page on which I will have all my api methods listed (with required permissions, params, urls and description)?
Thanks

Take a look at the django-rest-framework-docs package:
https://github.com/marcgibbons/django-rest-framework-docs
Also the newer django-rest-swagger package, by the same author:
https://github.com/marcgibbons/django-rest-swagger

Related

Online API to integrate C++ compiler to a website [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 9 years ago.
I would like make a online code editor with a C++ compiler integrated into my website. Are there any API to do the same. Any service which allows to compile and execute codes from user.
More specifically ,is there any service like ideone.com which i can embedd on my site for free
ideone (ideone.com) provides its API and service (ideone.com/api) for free. You should try it.

to-do-list web application in Django? [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 9 years ago.
Is it possible to make a to-do-list web application in Django in which the admin sets the things to do and the user are only allowed to see what the admin put in their profiles? Which could be the steps to reach this goal? (example: first create admin, user and things model then...) thank you for your help!!
Not really the place for this open question on stack, however here a step by step tutorial on just what you are after.
http://net.tutsplus.com/tutorials/python-tutorials/intro-to-django-building-a-to-do-list/

list most popular web services stacks [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 12 years ago.
I would like to collect here all the available web services frameworks. We have a WSDL file and we search for the most popular web service stack and the best "WSDL2OBJECT" emitter.
To name a few: wsdl.exe, gsoap, apache axis ...
My preferred by far is apache CXF, it's clean, pretty extensive and very easy to use and customize (if you ever need to).

Spring-WS vs JAX-WS [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
Im new to Web Service world and can someone say how different is JAX-WS from Spring-WS and which one to use.
Regds
Laks
Please check answer to other similar questions such as: Which framework is better CXF or Spring-WS?
Also, in the future might be worth checking existing questions like so :
https://www.google.com/search?hl=en&q=site%3Astackoverflow.com%20spring-ws%20vs%20jax-ws

remote_api in google app engine is the best way to store data? [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
i don't know what the remote_api will do
thanks
You can read about remote_api here: http://code.google.com/appengine/articles/remote_api.html
At a high level, it allows you to write code which interacts with your appengine application code and datastore without having to go through the request/response model.