summaryrefslogtreecommitdiff
path: root/searx/engines/google.py
diff options
context:
space:
mode:
authorAdam Tauber <asciimoo@gmail.com>2016-04-14 10:59:31 +0200
committerAdam Tauber <asciimoo@gmail.com>2016-04-14 10:59:31 +0200
commit85c0351dca086c5f652c34048fef290b09e088d9 (patch)
treec45b0cee0f2a4e13704ed376701cbdcbe1e00b27 /searx/engines/google.py
parent5544fdb75610bb66d05392289e0f0ad48c13ccf6 (diff)
parent90c51cb4494c90353cc97794eece486bd8bf92dd (diff)
downloadsearxng-85c0351dca086c5f652c34048fef290b09e088d9.tar.gz
searxng-85c0351dca086c5f652c34048fef290b09e088d9.zip
Merge pull request #526 from ukwt/anime
Add a few search engines
Diffstat (limited to 'searx/engines/google.py')
-rw-r--r--searx/engines/google.py12
1 files changed, 6 insertions, 6 deletions
diff --git a/searx/engines/google.py b/searx/engines/google.py
index 313932200..6018ad1b2 100644
--- a/searx/engines/google.py
+++ b/searx/engines/google.py
@@ -46,11 +46,11 @@ country_to_hostname = {
'NZ': 'www.google.co.nz', # New Zealand
'PH': 'www.google.com.ph', # Philippines
'SG': 'www.google.com.sg', # Singapore
- # 'US': 'www.google.us', # United State, redirect to .com
+ # 'US': 'www.google.us', # United States, redirect to .com
'ZA': 'www.google.co.za', # South Africa
'AR': 'www.google.com.ar', # Argentina
'CL': 'www.google.cl', # Chile
- 'ES': 'www.google.es', # Span
+ 'ES': 'www.google.es', # Spain
'MX': 'www.google.com.mx', # Mexico
'EE': 'www.google.ee', # Estonia
'FI': 'www.google.fi', # Finland
@@ -61,7 +61,7 @@ country_to_hostname = {
'HU': 'www.google.hu', # Hungary
'IT': 'www.google.it', # Italy
'JP': 'www.google.co.jp', # Japan
- 'KR': 'www.google.co.kr', # South Korean
+ 'KR': 'www.google.co.kr', # South Korea
'LT': 'www.google.lt', # Lithuania
'LV': 'www.google.lv', # Latvia
'NO': 'www.google.no', # Norway
@@ -76,9 +76,9 @@ country_to_hostname = {
'SE': 'www.google.se', # Sweden
'TH': 'www.google.co.th', # Thailand
'TR': 'www.google.com.tr', # Turkey
- 'UA': 'www.google.com.ua', # Ikraine
- # 'CN': 'www.google.cn', # China, only from china ?
- 'HK': 'www.google.com.hk', # Hong kong
+ 'UA': 'www.google.com.ua', # Ukraine
+ # 'CN': 'www.google.cn', # China, only from China ?
+ 'HK': 'www.google.com.hk', # Hong Kong
'TW': 'www.google.com.tw' # Taiwan
}