Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
B
beem
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
hive
beem
Commits
95640d4c
Commit
95640d4c
authored
6 years ago
by
crokkon
Browse files
Options
Downloads
Patches
Plain Diff
move get_similar_account_names to Blockchain
parent
adbc0b10
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
beem/account.py
+10
-19
10 additions, 19 deletions
beem/account.py
beem/blockchain.py
+26
-0
26 additions, 0 deletions
beem/blockchain.py
with
36 additions
and
19 deletions
beem/account.py
+
10
−
19
View file @
95640d4c
...
...
@@ -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
):
...
...
This diff is collapsed.
Click to expand it.
beem/blockchain.py
+
26
−
0
View file @
95640d4c
...
...
@@ -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
)
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment