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
c98562cb
Commit
c98562cb
authored
6 years ago
by
Holger
Browse files
Options
Downloads
Patches
Plain Diff
Fix warnings
parent
d55ab7b7
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
beem/account.py
+8
-8
8 additions, 8 deletions
beem/account.py
beem/blockchain.py
+6
-7
6 additions, 7 deletions
beem/blockchain.py
beemapi/graphenerpc.py
+11
-5
11 additions, 5 deletions
beemapi/graphenerpc.py
with
25 additions
and
20 deletions
beem/account.py
+
8
−
8
View file @
c98562cb
...
@@ -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
):
r
aise
StopIteratio
n
r
etur
n
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
:
r
aise
StopIteratio
n
r
etur
n
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
):
r
aise
StopIteratio
n
r
etur
n
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
:
r
aise
StopIteratio
n
r
etur
n
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
):
r
aise
StopIteratio
n
r
etur
n
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
:
r
aise
StopIteratio
n
r
etur
n
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
):
r
aise
StopIteratio
n
r
etur
n
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
:
r
aise
StopIteratio
n
r
etur
n
class
AccountsObject
(
list
):
class
AccountsObject
(
list
):
...
...
This diff is collapsed.
Click to expand it.
beem/blockchain.py
+
6
−
7
View file @
c98562cb
...
@@ -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
):
r
aise
StopIteratio
n
r
etur
n
if
lastname
==
account_name
:
if
lastname
==
account_name
:
r
aise
StopIteratio
n
r
etur
n
lastname
=
account_name
lastname
=
account_name
if
len
(
ret
)
<
steps
:
if
len
(
ret
)
<
steps
:
r
aise
StopIteratio
n
r
etur
n
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
):
r
aise
StopIteratio
n
r
etur
n
if
lastname
==
account_name
:
if
lastname
==
account_name
:
r
aise
StopIteratio
n
r
etur
n
lastname
=
account_name
lastname
=
account_name
if
len
(
ret
)
<
steps
:
if
len
(
ret
)
<
steps
:
r
aise
StopIteratio
n
r
etur
n
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
...
...
This diff is collapsed.
Click to expand it.
beemapi/graphenerpc.py
+
11
−
5
View file @
c98562cb
...
@@ -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
...
...
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