-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathREADME
More file actions
33 lines (22 loc) · 1.03 KB
/
Copy pathREADME
File metadata and controls
33 lines (22 loc) · 1.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
python-backtype
---------------
A Python wrapper for the Backtype API.
Usage:
from backtype.api import Backtype
bt = Backtype(key)
# Comments Search
bt.comments.search(q='backtype')
# Comments Connect
bt.comments.connect(url='http://www.techcrunch.com/2009/03/30/if-bitly-is-worth-8-million-tinyurl-is-worth-at-least-46-million/')
# Comments Connect Stats
bt.comments.connect.stats(url='http://www.techcrunch.com/2009/03/30/if-bitly-is-worth-8-million-tinyurl-is-worth-at-least-46-million/')
# Comments by Author URL
bt.url.comments(url='http://www.techcrunch.com/')
# Comments by Page
bt.post.comments(url='http://www.techcrunch.com/2009/03/30/if-bitly-is-worth-8-million-tinyurl-is-worth-at-least-46-million/')
# Comments Stats by Page
bt.post.stats(url='http://www.techcrunch.com/2009/03/30/if-bitly-is-worth-8-million-tinyurl-is-worth-at-least-46-million/')
# Tweet Stats by URL
bt.tweetcount(q='http://www.techcrunch.com/2009/03/30/if-bitly-is-worth-8-million-tinyurl-is-worth-at-least-46-million/')
# Rate Limit Status
bt.rate_limit_status()