diff options
author | Trupti Rajesh Kini | 2016-11-18 11:50:50 +0530 |
---|---|---|
committer | GitHub | 2016-11-18 11:50:50 +0530 |
commit | 678088b5871bac0152d343bfc9ef9d9599b8553e (patch) | |
tree | 52ef694ea604d29d05de624bcfe9a2725b14ec2d /commentingapp/commenting_new.py | |
parent | c5c3c7b6c4794d960ead6137d251cd9b8f423aa4 (diff) | |
parent | 19793cdf2025bb2a4560a0718ed5d6bce175e7b8 (diff) | |
download | Python-TBC-Interface-678088b5871bac0152d343bfc9ef9d9599b8553e.tar.gz Python-TBC-Interface-678088b5871bac0152d343bfc9ef9d9599b8553e.tar.bz2 Python-TBC-Interface-678088b5871bac0152d343bfc9ef9d9599b8553e.zip |
Merge pull request #3 from kinitrupti/hitcount-updated
Hitcount updated
Diffstat (limited to 'commentingapp/commenting_new.py')
-rw-r--r-- | commentingapp/commenting_new.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/commentingapp/commenting_new.py b/commentingapp/commenting_new.py index 33f4923..77c0fc5 100644 --- a/commentingapp/commenting_new.py +++ b/commentingapp/commenting_new.py @@ -3,7 +3,7 @@ import requests import collections import os -from urlparse import urljoin +from urllib.parse import urljoin @@ -75,7 +75,7 @@ class DisqusCommenting(object): json_like_list = [] - for thread_id in self.counter.keys(): # Find a better way to do this + for thread_id in list(self.counter.keys()): # Find a better way to do this comment_list = [] payload = {"api_key": self.public_key, "thread": thread_id} thread_url = urljoin(self.base_disqus_url,self.api_version)+"/threads/list.json" @@ -103,4 +103,4 @@ if __name__ == "__main__": z = x.get_thread_ids() z1 = x.get_comments() - print z1 # this will print out a json like list of all the urls and the comments on each url + print(z1) # this will print out a json like list of all the urls and the comments on each url |