Skip to content
Snippets Groups Projects
Commit 95640d4c authored by crokkon's avatar crokkon
Browse files

move get_similar_account_names to Blockchain

parent adbc0b10
No related branches found
No related tags found
No related merge requests found
......@@ -215,29 +215,20 @@ class Account(BlockchainObject):
return self.get_similar_account_names(limit=limit)
def get_similar_account_names(self, limit=5):
""" Returns limit similar accounts with name as list
""" Returns ``limit`` account names similar to the current account
name as a list
:param int limit: limits the number of accounts, which will be returned
:returns: Similar account names as list
:rtype: list
:param int limit: limits the number of accounts, which will be
returned
:returns: Similar account names as list
:rtype: list
.. code-block:: python
>>> from beem.account import Account
>>> account = Account("test")
>>> len(account.get_similar_account_names(limit=5))
5
This is a wrapper around ``Blockchain.get_similar_account_names()``
using the current account name as reference.
"""
if not self.steem.is_connected():
return None
self.steem.rpc.set_next_node_on_empty_reply(False)
if self.steem.rpc.get_use_appbase():
account = self.steem.rpc.list_accounts({'start': self.name, 'limit': limit}, api="database")
if bool(account):
return account["accounts"]
else:
return self.steem.rpc.lookup_accounts(self.name, limit)
b = Blockchain(steem_instance=self.steem)
return b.get_similar_account_names(self.name, limit=limit)
@property
def name(self):
......
......@@ -847,3 +847,29 @@ class Blockchain(object):
lastname = account_name
if len(ret) < steps:
raise StopIteration
def get_similar_account_names(self, name, limit=5):
""" Returns limit similar accounts with name as list
:param str name: account name to search similars for
:param int limit: limits the number of accounts, which will be returned
:returns: Similar account names as list
:rtype: list
.. code-block:: python
>>> from beem.blockchain import Blockchain
>>> blockchain = Blockchain()
>>> blockchain.get_similar_account_names("test", limit=5)
['test', 'test-1', 'test-2', 'test-ico', 'test-ilionx-123']
"""
if not self.steem.is_connected():
return None
self.steem.rpc.set_next_node_on_empty_reply(False)
if self.steem.rpc.get_use_appbase():
account = self.steem.rpc.list_accounts({'start': name, 'limit': limit}, api="database")
if bool(account):
return account["accounts"]
else:
return self.steem.rpc.lookup_accounts(name, limit)
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