I am attempting to get a list to TOP n tags and its usage so far using python
.
I can run this query on stackexchange site as below,
SELECT *
FROM Tags
WHERE ExcerptPostId is not NULL
order by Count
Desc
That gives me result as below,
Id TagName Count ExcerptPostId WikiPostId
3 javascript 1538133 3624960 3607052
17 java 1360163 3624966 3607018
9 c# 1169923 3624962 3607007
5 php 1157178 3624936 3607050
1386 android 1063197 3625001 3607484
820 jquery 890140 3625262 3607053
16 python 877784 3624965 3607014
2 html 717700 3673183 3673182
10 c++ 549953 3624963 3606997
58338 ios 545753 4536664 4536663
.......
....... and so on.
However, is there a way to get exact same data using python? Probably run same query using API,
I looked at stack.py
, py-stackexchange
, but couldnt find documantion.
Any ideas?