Python Forum
Remove double quotes from the list ?
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Remove double quotes from the list ?
#21
Just some info,CGI is a old and dead/dying 📆
Python Wrote:CGI is going to be deprecated in Python 3.8 and removed in 3.10
A little history about WSGI(Why is WSGI necessary?) that has taken over written bye Python community that knew that CGI had no future,so new way was needed.
The modern and much better way to do similar stuff to CGI in Python,is to use eg Flask.
ndc85430 and buran like this post
Reply
#22
(Nov-03-2020, 04:22 PM)snippsat Wrote: Just some info,CGI is a old and dead/dying 📆
Python Wrote:CGI is going to be deprecated in Python 3.8 and removed in 3.10
A little history about WSGI(Why is WSGI necessary?) that has taken over written bye Python community that knew that CGI had no future,so new way was needed.
The modern and much better way to do similar stuff to CGI in Python,is to use eg Flask.

without using Flask what is the modern and native python reference for manipulating form fields and their values?
Reply
#23
(Nov-05-2020, 03:52 PM)PythonDev Wrote: without using Flask what is the modern and native python reference for manipulating form fields and their values?
The modern and native way is now to use a web-framework,the all build on top of WSGI.
So we never use WSGI directly(in not making a new web-framwork),just need to know that WSGI lay under.
So Flask is an easy and much more powerful that the old CGI way,can be look at as native modern Python way for manipulating form fields and their values.
Now can all Python web-framwork do manipulating form fields,Flask and Django is the most popular.

WSGI's Purpose
Full Stack Python. Wrote:If you're using a standard web-framework such as Django, Flask, or Bottle, or almost any other current Python framework,
you don't need to worry about how frameworks implement the application side of the WSGI standard.
Likewise, if you're using a standard WSGI container such as Green Unicorn, uWSGI, mod_wsgi, or gevent,
you can get them running without worrying about how they implement the WSGI standard

However, knowing the WSGI standard and how these frameworks and containers implement WSGI,
should be on your learning checklist though as you become a more experienced Python web developer.
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  unable to remove all elements from list based on a condition sg_python 3 373 Jan-27-2024, 04:03 PM
Last Post: deanhystad
  Remove numbers from a list menator01 4 1,251 Nov-13-2022, 01:27 AM
Last Post: menator01
  Reading list items without brackets and quotes jesse68 6 4,521 Jan-14-2022, 07:07 PM
Last Post: jesse68
  Remove empty keys in a python list python_student 7 2,899 Jan-12-2022, 10:23 PM
Last Post: python_student
  Remove an item from a list contained in another item in python CompleteNewb 19 5,544 Nov-11-2021, 06:43 AM
Last Post: Gribouillis
  Remove single and double quotes from a csv file in 3 to 4 column shantanu97 0 6,925 Mar-31-2021, 10:52 AM
Last Post: shantanu97
  Two types of single quotes Led_Zeppelin 2 1,862 Mar-15-2021, 07:55 PM
Last Post: BashBedlam
  .remove() from a list - request for explanation InputOutput007 3 2,177 Jan-28-2021, 04:21 PM
Last Post: InputOutput007
  Remove specific elements from list with a pattern Xalagy 3 2,623 Oct-11-2020, 07:18 AM
Last Post: Xalagy
  How to remove dict from a list? Denial 7 2,849 Sep-28-2020, 02:40 PM
Last Post: perfringo

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020