Skip to content
Snippets Groups Projects
Commit c98562cb authored by Holger's avatar Holger
Browse files

Fix warnings

parent d55ab7b7
No related branches found
No related tags found
No related merge requests found
...@@ -2605,7 +2605,7 @@ class Account(BlockchainObject): ...@@ -2605,7 +2605,7 @@ class Account(BlockchainObject):
tag=account['name']) tag=account['name'])
results = Discussions_by_feed(query, steem_instance=self.steem) results = Discussions_by_feed(query, steem_instance=self.steem)
if len(results) == 0 or (start_permlink and len(results) == 1): if len(results) == 0 or (start_permlink and len(results) == 1):
raise StopIteration return
if feed_count > 0 and start_permlink: if feed_count > 0 and start_permlink:
results = results[1:] # strip duplicates from previous iteration results = results[1:] # strip duplicates from previous iteration
for entry in results: for entry in results:
...@@ -2614,7 +2614,7 @@ class Account(BlockchainObject): ...@@ -2614,7 +2614,7 @@ class Account(BlockchainObject):
start_permlink = entry['permlink'] start_permlink = entry['permlink']
start_author = entry['author'] start_author = entry['author']
if feed_count == limit: if feed_count == limit:
raise StopIteration return
def blog_history(self, limit=None, start=-1, reblogs=True, account=None): def blog_history(self, limit=None, start=-1, reblogs=True, account=None):
""" stream the blog entries done by an account in reverse time order. """ stream the blog entries done by an account in reverse time order.
...@@ -2674,7 +2674,7 @@ class Account(BlockchainObject): ...@@ -2674,7 +2674,7 @@ class Account(BlockchainObject):
results = Discussions_by_blog(query, results = Discussions_by_blog(query,
steem_instance=self.steem) steem_instance=self.steem)
if len(results) == 0 or (start_permlink and len(results) == 1): if len(results) == 0 or (start_permlink and len(results) == 1):
raise StopIteration return
if start_permlink: if start_permlink:
results = results[1:] # strip duplicates from previous iteration results = results[1:] # strip duplicates from previous iteration
for post in results: for post in results:
...@@ -2686,7 +2686,7 @@ class Account(BlockchainObject): ...@@ -2686,7 +2686,7 @@ class Account(BlockchainObject):
start_permlink = post['permlink'] start_permlink = post['permlink']
start_author = post['author'] start_author = post['author']
if post_count == limit: if post_count == limit:
raise StopIteration return
def comment_history(self, limit=None, start_permlink=None, def comment_history(self, limit=None, start_permlink=None,
account=None): account=None):
...@@ -2736,7 +2736,7 @@ class Account(BlockchainObject): ...@@ -2736,7 +2736,7 @@ class Account(BlockchainObject):
results = Discussions_by_comments(query, results = Discussions_by_comments(query,
steem_instance=self.steem) steem_instance=self.steem)
if len(results) == 0 or (start_permlink and len(results) == 1): if len(results) == 0 or (start_permlink and len(results) == 1):
raise StopIteration return
if comment_count > 0 and start_permlink: if comment_count > 0 and start_permlink:
results = results[1:] # strip duplicates from previous iteration results = results[1:] # strip duplicates from previous iteration
for comment in results: for comment in results:
...@@ -2746,7 +2746,7 @@ class Account(BlockchainObject): ...@@ -2746,7 +2746,7 @@ class Account(BlockchainObject):
yield comment yield comment
start_permlink = comment['permlink'] start_permlink = comment['permlink']
if comment_count == limit: if comment_count == limit:
raise StopIteration return
def reply_history(self, limit=None, start_author=None, def reply_history(self, limit=None, start_author=None,
start_permlink=None, account=None): start_permlink=None, account=None):
...@@ -2808,7 +2808,7 @@ class Account(BlockchainObject): ...@@ -2808,7 +2808,7 @@ class Account(BlockchainObject):
results = Replies_by_last_update(query, results = Replies_by_last_update(query,
steem_instance=self.steem) steem_instance=self.steem)
if len(results) == 0 or (start_permlink and len(results) == 1): if len(results) == 0 or (start_permlink and len(results) == 1):
raise StopIteration return
if reply_count > 0 and start_permlink: if reply_count > 0 and start_permlink:
results = results[1:] # strip duplicates from previous iteration results = results[1:] # strip duplicates from previous iteration
for reply in results: for reply in results:
...@@ -2819,7 +2819,7 @@ class Account(BlockchainObject): ...@@ -2819,7 +2819,7 @@ class Account(BlockchainObject):
start_author = reply['author'] start_author = reply['author']
start_permlink = reply['permlink'] start_permlink = reply['permlink']
if reply_count == limit: if reply_count == limit:
raise StopIteration return
class AccountsObject(list): class AccountsObject(list):
......
...@@ -550,7 +550,6 @@ class Blockchain(object): ...@@ -550,7 +550,6 @@ class Blockchain(object):
head_block_reached = True head_block_reached = True
if stop and start > stop: if stop and start > stop:
# raise StopIteration
return return
# Sleep for one block # Sleep for one block
...@@ -824,12 +823,12 @@ class Blockchain(object): ...@@ -824,12 +823,12 @@ class Blockchain(object):
yield account_name yield account_name
cnt += 1 cnt += 1
if account_name == stop or (limit > 0 and cnt > limit): if account_name == stop or (limit > 0 and cnt > limit):
raise StopIteration return
if lastname == account_name: if lastname == account_name:
raise StopIteration return
lastname = account_name lastname = account_name
if len(ret) < steps: if len(ret) < steps:
raise StopIteration return
def get_account_count(self): def get_account_count(self):
""" Returns the number of accounts""" """ Returns the number of accounts"""
...@@ -869,12 +868,12 @@ class Blockchain(object): ...@@ -869,12 +868,12 @@ class Blockchain(object):
yield account yield account
cnt += 1 cnt += 1
if account_name == stop or (limit > 0 and cnt > limit): if account_name == stop or (limit > 0 and cnt > limit):
raise StopIteration return
if lastname == account_name: if lastname == account_name:
raise StopIteration return
lastname = account_name lastname = account_name
if len(ret) < steps: if len(ret) < steps:
raise StopIteration return
def get_similar_account_names(self, name, limit=5): def get_similar_account_names(self, name, limit=5):
""" Returns limit similar accounts with name as list """ Returns limit similar accounts with name as list
......
...@@ -269,11 +269,17 @@ class GrapheneRPC(object): ...@@ -269,11 +269,17 @@ class GrapheneRPC(object):
self.ws.close() self.ws.close()
def request_send(self, payload): def request_send(self, payload):
response = self.session.post(self.url, if self.user is not None and self.password is not None:
data=payload, response = self.session.post(self.url,
headers=self.headers, data=payload,
timeout=self.timeout, headers=self.headers,
auth=(self.user, self.password)) timeout=self.timeout,
auth=(self.user, self.password))
else:
response = self.session.post(self.url,
data=payload,
headers=self.headers,
timeout=self.timeout)
if response.status_code == 401: if response.status_code == 401:
raise UnauthorizedError raise UnauthorizedError
return response.text return response.text
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment