Hi there,
I have written a script to fetch an array of accounts that I follow on Mastodon. Each account is represented by a dictionary with
KeySet for a Dict{String, Any} with 21 entries. Keys:
"acct"
"locked"
"created_at"
"fields"
"username"
"bot"
"emojis"
"id"
"statuses_count"
"last_status_at"
"avatar_static"
"note"
"followers_count"
"header_static"
"group"
"url"
"following_count"
"header"
"display_name"
"discoverable"
"avatar"
I now want to create a graph using Graphs.jl. Is there a straightforward approach to plot a graph based on these dictionaries where I use one key for nodes and another key for edges, etc. ?