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
1cd53f61
Kaydet (Commit)
1cd53f61
authored
Eyl 14, 2016
tarafından
Berker Peksag
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #26830: Refactor Tools/scripts/google.py
Patch by Francisco Couzo.
üst
40465ebc
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
17 additions
and
15 deletions
+17
-15
google.py
Tools/scripts/google.py
+17
-15
No files found.
Tools/scripts/google.py
Dosyayı görüntüle @
1cd53f61
#! /usr/bin/env python3
import
sys
,
webbrowser
"""Script to search with Google
def
main
():
args
=
sys
.
argv
[
1
:]
if
not
args
:
print
(
"Usage:
%
s querystring"
%
sys
.
argv
[
0
])
return
list
=
[]
for
arg
in
args
:
if
'+'
in
arg
:
arg
=
arg
.
replace
(
'+'
,
'
%2
B'
)
Usage:
python3 google.py [search terms]
"""
import
sys
import
urllib.parse
import
webbrowser
def
main
(
args
):
def
quote
(
arg
):
if
' '
in
arg
:
arg
=
'"
%
s"'
%
arg
arg
=
arg
.
replace
(
' '
,
'+'
)
list
.
append
(
arg
)
s
=
'+'
.
join
(
list
)
url
=
"http://www.google.com/search?q=
%
s"
%
s
return
urllib
.
parse
.
quote_plus
(
arg
)
qstring
=
'+'
.
join
(
quote
(
arg
)
for
arg
in
args
)
url
=
urllib
.
parse
.
urljoin
(
'https://www.google.com/search'
,
'?q='
+
qstring
)
webbrowser
.
open
(
url
)
if
__name__
==
'__main__'
:
main
()
main
(
sys
.
argv
[
1
:]
)
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