Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
cpython
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
cpython
Commits
e7808778
Kaydet (Commit)
e7808778
authored
Agu 07, 1995
tarafından
Guido van Rossum
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
added parse_qs(query_string)
üst
f54d967f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
0 deletions
+7
-0
cgi.py
Lib/cgi.py
+7
-0
No files found.
Lib/cgi.py
Dosyayı görüntüle @
e7808778
...
...
@@ -5,6 +5,7 @@
#
# modified by Steve Majewski <sdm7g@Virginia.EDU> 12/5/94
#
# now maintained as part of the Python distribution
# Several classes to parse the name/value pairs that are passed to
# a server's CGI by GET, POST or PUT methods by a WWW FORM. This
...
...
@@ -42,11 +43,17 @@ from os import environ
def
parse
():
"""Parse the query passed in the environment or on stdin"""
if
environ
[
'REQUEST_METHOD'
]
==
'POST'
:
qs
=
sys
.
stdin
.
read
(
string
.
atoi
(
environ
[
'CONTENT_LENGTH'
]))
environ
[
'QUERY_STRING'
]
=
qs
else
:
qs
=
environ
[
'QUERY_STRING'
]
return
parse_qs
(
qs
)
def
parse_qs
(
qs
):
"""Parse a query given as a string argument"""
name_value_pairs
=
string
.
splitfields
(
qs
,
'&'
)
dict
=
{}
for
name_value
in
name_value_pairs
:
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment