We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 63cbadd commit 9e6c94bCopy full SHA for 9e6c94b
README.md
@@ -46,7 +46,16 @@ Allows simple interface for automating downloading of reports from Google Trends
46
47
from pytrends.request import TrendReq
48
49
- pytrends = TrendReq(hl='en-US', tz=360)
+ 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
59
60
### Build Payload
61
kw_list = ["Blockchain"]
0 commit comments