What dynamic asynchronous web server framework to use? [closed] - python

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.

Related

How to connect flask server with OPC python script [closed]

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 years ago.
Improve this question
I would like to create a Flask Python server to serve for a Mobile App / Web server as visualization for Data from PLC. I do not know how to connect Flask Server with another script and to exchange Data between it in full duplex. Is it possible to do it over Sqlite ? Can I write / read a data to the same DB from 2 scripts / servers ? I draw some explanation of my problem (first picture is a problem and a second one may be the possible solution ?/ thanks in advance for your experienced suggestions)enter image description here
Create apis in flask and use requests module from another script and consume the apis that are built on Flask.

Curiosity - Why would Django REST Framework documentation be made with RoR? [closed]

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 3 years ago.
Improve this question
Using the DRF documentation I noticed that wappalizer (https://www.wappalyzer.com/) is identifing the use of Ruby on Rails on the DRF documentation (https://www.django-rest-framework.org). This looks quite ironic not to use Django.
Does any one know why this would be the case or if it's something related to a wappalyzer missidentification?
Thanks
It's hosted through GitHub pages and Github is built on top of Ruby on Rails.

Web development with just Python Flask [closed]

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 last year.
Improve this question
Is it just fine to build a website with a python backend that interacts with the database and use flask to display it on html? flask can also get inputs from the html form and from there python can manipulate it. Is there any security concern with it?
Yes it is perfectly safe, provided you take safeguards and use best practices. Flask is my favorite Python web server framework - extremely lightweight and flexible, makes the fewest assumptions about your application.
I think flask is the best framework for web development. It is more flexible then django. You can connect database easily and security is so strong in python flask. Over all it is best for webdevelopment. You can also use jinja with falsk.

Frontend Web to run python scripts [closed]

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.

Is it possible to use Boto with Django? [closed]

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.

Categories