Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
I'm really unfamiliar in this area. Is it possible to access the AWS API from Django? E.g. by using Boto? Can that be run on Django?
Yes.
There is even a django app for using boto. It is called django-boto.
It is the first result when you search for "django boto".
Sure. boto is just python library and you can use it from Django.
I used boto from other web frameworks (CherryPy, Flask), and it simply works. There is no reason it would not work with Django.
Related
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 3 days ago.
Improve this question
I'm writing a simple API in Flask to receive and store file uploads from my React frontend using a FilePond file uploader. I am having such a hard time implementing the views as FilePond seems to have such specific requirements on how the server should operate.
I've attempted to convert this PHP implementation into Flask, however it seems overly complicated and non-applicable to Flask.
What is the simplest minimal way to get my Flask API correctly working with FilePond??
Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 1 year ago.
Improve this question
Should I use flask or Quart or just crossbar to serve dynamic and asynchronous web page ? I need websocket with RPC and PubSub.
I usually work on database with sqlalchemy , and I like brython instead of javascript.
I'd like to avoid Node.js if possible.
You can find a list of implementations here
I'm planning to use Node.js and the Crossbar.io documentation is very helpful. Seems like a good choice.
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 5 years ago.
Improve this question
I have a working R script. Can this be wrapped in a Python code so it can be deployed as an API ?
As mentioned in an earlier post, things that are not easy in R can be relatively simple in other languages. Another example would be connecting to Amazon Web Services. In relation to s3, although there are a number of existing packages, many of them seem to be deprecated, premature or platform-dependent. (I consider the cloudyr project looks promising though.)
If there isn’t a comprehensive R-way of doing something yet, it may be necessary to create it from scratch. Actually there are some options to do so by using AWS Command Line Interface, AWS REST API or wrapping functionality of another language.
http://jaehyeon-kim.github.io/2015/11/Quick-Test-to-Wrap-Python-in-R.html
Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 5 years ago.
Improve this question
I am pretty firm in python scripting (boto3) now want to develop some sort of frontend dash board that would've buttons or list to execute script and give the output.
There are many options flask, bottle, django etc but I want to learn which will be ideal for my case and has modern framework.
Thanks
I think you should go to javascript...
what framework you have said are all backend framework.
As I know,in the web development python is always in the backend.
so if you wanna develop frontend,go to learn html,css,javascript is only option.
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 6 years ago.
Improve this question
I made a simple Django website which supports user authentication(login/Logoff) and Registration I want to make a custom API which does this using REST how would i do this
What you want is to learn how to create REST API in Django, Here we cannot write the whole code for your requirement but can give you suggestion as per your question.
as #Siegmeyer said in comment that you should use the Django Rest Framework which is best and have tutorials and examples too:
Strongly Re-commanded to use:
http://www.django-rest-framework.org/
Read blog with link below for step by step tutorial:
http://agiliq.com/blog/2014/12/building-a-restful-api-with-django-rest-framework
For video check link below:
https://godjango.com/41-start-your-api-django-rest-framework-part-1/
or try youtube:
https://www.youtube.com/results?q=rest+api+in+django+rest+framework
These may help you crate your API in Django.