Like development scripts. Are these sites using pythin to scrape data of opensea or is there more involved?What do you mean with tecnology ?
I guess they are using opensea's API. You can check it here https://docs.opensea.io/Like development scripts. Are these sites using pythin to scrape data of opensea or is there more involved?
You can't detect whether a site is using Python or not because it's server side.Like development scripts. Are these sites using pythin to scrape data of opensea or is there more involved?
You can't detect whether a site is using Python or not because it's server side.
You can of course check the client side technologies (e.g. JavaScript) and some server details (e.g. Apache), but not the server language the site is built with (unless it's php or asp and they don't hide file extensions).
Thanks for the breakdown! So it sounds like a lot of work to build sites similar to those mentioned? Are we talk weeks or..?rarity.tools uses nuxt.js
icy.tools uses next.js
third one I don't know
nuxt and next are fullstack javascript frameworks. high traffic site stacks aren't usually that simple, a lot of things are going on in the backend.
to work with blockchain they use web3.js on front and similar libraries on the backend + there are many third-party APIs like opensea, polygon, ipfs, ... each have their own uses
ps: you don't need to "scrap" data from opensea, they have free APIs.
you can access them with many languages like js, python, php, c#, ruby, go, elixir, ...
most popular ones are python and js on the server (node.js)