RE: Conclave Arcana: A Quiet Week and a (small) Personal Rant

You are viewing a single comment's thread:

Off topic but is there an easy way to get all the plots by username? The API appears not have any anything simple and expects us to get all the plots and filter through the JSON data, which I haven't done yet.. that will likely be slow.

I did sift through your code a little, but in the end could not be arsed... better just to ask you!



0
0
0.000
4 comments
avatar

For the active plot you can download it in the a csv from this page:
https://splinter-lands.streamlit.app/region_dec_metrics_page

image.png

I got that data, here is the top ten:

image.png

Also got the complete csv for you if want let me know how to send it to you?

0
0
0.000
avatar

I meant using my own code. It's not straightforward, or is it?

0
0
0.000
avatar

It depends on what you think is straight forward, do this for every region (1-151)
https://vapi.splinterlands.com/land/deeds?status=map&region_number=1

Then get the player from the deeds section and count 😁.

If you are using python

  • put the [data][deed] from every call in a dataframe (pandas)
  • concat all the df together
  • df.player.count()

something like that.

0
0
0.000
avatar

Yeah thanks, its enough to go on. I haven't used the panda library but am aware of it.

0
0
0.000