Skip to content

Commit 9e6c94b

Browse files
authored
Update README.md
1 parent 63cbadd commit 9e6c94b

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

README.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,16 @@ Allows simple interface for automating downloading of reports from Google Trends
4646

4747
from pytrends.request import TrendReq
4848

49-
pytrends = TrendReq(hl='en-US', tz=360)
49+
pytrends = TrendReq(hl='en-US', tz=360, proxies = '')
50+
51+
or if you want to use proxies as you are block due to Google rate limit:
52+
53+
54+
from pytrends.request import TrendReq
55+
56+
pytrends = TrendReq(hl='en-US', tz=360, proxies = {'https': 'https://34.203.233.13:80'})
57+
58+
Note: only https proxy will work, and you need to add the port number after the proxy ip address
5059

5160
### Build Payload
5261
kw_list = ["Blockchain"]

0 commit comments

Comments
 (0)