Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
DuniterPy
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
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
clients
python
DuniterPy
Commits
db2af4a8
Commit
db2af4a8
authored
5 years ago
by
Vincent Texier
Browse files
Options
Downloads
Patches
Plain Diff
[enh]
#58
add ws2p API request example
parent
7b73a19a
No related branches found
No related tags found
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
examples/request_web_socket_ws2p.py
+75
-0
75 additions, 0 deletions
examples/request_web_socket_ws2p.py
with
75 additions
and
0 deletions
examples/request_web_socket_ws2p.py
0 → 100644
+
75
−
0
View file @
db2af4a8
import
asyncio
from
_socket
import
gaierror
import
aiohttp
import
jsonschema
from
duniterpy.api
import
bma
from
duniterpy.api.client
import
Client
,
parse_text
# CONFIG #######################################
# You can either use a complete defined endpoint : [NAME_OF_THE_API] [DOMAIN] [IPv4] [IPv6] [PORT]
# or the simple definition : [NAME_OF_THE_API] [DOMAIN] [PORT]
# Here we use the WS2P API (WS2P)
WS2P_ENDPOINT
=
"
WS2P 2f731dcd 127.0.0.1 35834
"
################################################
async
def
main
():
"""
Main code
"""
# Create Client from endpoint string in Duniter format
client
=
Client
(
WS2P_ENDPOINT
)
try
:
# Create Web Socket connection on block path
ws_connection
=
client
.
connect_ws
(
''
)
# From the documentation ws_connection should be a ClientWebSocketResponse object...
#
# https://docs.aiohttp.org/en/stable/client_quickstart.html#websockets
#
# In reality, aiohttp.session.ws_connect() returns a aiohttp.client._WSRequestContextManager instance.
# It must be used in a with statement to get the ClientWebSocketResponse instance from it (__aenter__).
# At the end of the with statement, aiohttp.client._WSRequestContextManager.__aexit__ is called
# and close the ClientWebSocketResponse in it.
connect_message
=
"""
"""
ws_connection
.
send
(
connect_message
)
# Mandatory to get the "for msg in ws" to work !
async
with
ws_connection
as
ws
:
print
(
"
Connected successfully to web socket block path
"
)
# Iterate on each message received...
async
for
msg
in
ws
:
# if message type is text...
if
msg
.
type
==
aiohttp
.
WSMsgType
.
TEXT
:
print
(
"
Received a block
"
)
# Validate jsonschema and return a the json dict
block_data
=
parse_text
(
msg
.
data
,
bma
.
ws
.
WS_BLOCK_SCHEMA
)
print
(
block_data
)
elif
msg
.
type
==
aiohttp
.
WSMsgType
.
CLOSED
:
# Connection is closed
print
(
"
Web socket connection closed !
"
)
elif
msg
.
type
==
aiohttp
.
WSMsgType
.
ERROR
:
# Connection error
print
(
"
Web socket connection error !
"
)
# Close session
await
client
.
close
()
except
(
aiohttp
.
WSServerHandshakeError
,
ValueError
)
as
e
:
print
(
"
Websocket block {0} : {1}
"
.
format
(
type
(
e
).
__name__
,
str
(
e
)))
except
(
aiohttp
.
ClientError
,
gaierror
,
TimeoutError
)
as
e
:
print
(
"
{0} : {1}
"
.
format
(
str
(
e
),
WS2P_ENDPOINT
))
except
jsonschema
.
ValidationError
as
e
:
print
(
"
{:}:{:}
"
.
format
(
str
(
e
.
__class__
.
__name__
),
str
(
e
)))
# Latest duniter-python-api is asynchronous and you have to use asyncio, an asyncio loop and a "as" on the data.
# ( https://docs.python.org/3/library/asyncio.html )
asyncio
.
get_event_loop
().
run_until_complete
(
main
())
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