mirror of
https://github.com/avatao-content/baseimage-tutorial-framework
synced 2025-07-13 07:26:23 +00:00
7 lines
127 B
Python
7 lines
127 B
Python
import json
|
|
|
|
|
|
def parse_anchor_from_message(message):
|
|
message_json = json.loads(message)
|
|
return message_json['anchor']
|