fediverse/README.md

39 líneas
2,1 KiB
Markdown
Original Vista normal Històric

2020-05-17 12:28:47 +02:00
# Fediverse Stats
2021-02-18 18:12:31 +01:00
This code gets all peers from running Mastodon, Pleroma and Lemmy host servers and then all peers from host server's peers. Goal is to collect maximum number
2020-05-17 12:28:47 +02:00
of alive fediverse's servers and then query their API to obtain their registered users (if their API provide such information).
At the end it post the results to host server bot account.
### Dependencies
- **Python 3**
- Postgresql server
- Mastodon or Pleroma running server.
### Usage:
Within Python Virtual Environment:
2021-05-14 10:39:26 +02:00
1. Run `pip install -r requirements.txt` to install needed libraries.
2020-05-17 12:28:47 +02:00
2021-05-14 10:39:26 +02:00
2. Run `python db-setup.py` to setup and create new Postgresql database and needed tables in it.
2020-05-17 12:28:47 +02:00
2021-05-14 10:39:26 +02:00
3. Run `python setup.py` to get your bot's access token of your Mastodon or Pleroma server existing account. It will be saved to 'secrets/secrets.txt' for further use.
2020-05-17 12:28:47 +02:00
2021-05-29 12:44:12 +02:00
4. Run `python getpeers.py` to get all peers from your host and the whole world of fediverse's servers (or almost the whole world).
2021-05-14 10:39:26 +02:00
5. Run `python fetchservers.py` to add servers to alive servers database.
2022-03-12 13:51:01 +01:00
6. Run `python fediverse.py` to query world alive servers API. It gets data from server's nodeinfo.
2020-05-17 13:39:24 +02:00
7. Run `python uptime_setup.py` to get your Uptime bot's access token of your Mastodon or Pleroma server existing account. It will be saved to 'secrets/uptime_secrets.txt' for further use.
2020-05-17 12:28:47 +02:00
8. Use your favourite scheduling method to set `python fediverse.py` to run twice daily, `python fetchservers.py` one time daily, `python getworld.py` to run monthly and `python uptime.py` (choose your desired frequency) if you want to publish best fediverse's servers uptime.
18.2.2021 - New feature! Added [Lemmy project](https://join.lemmy.ml)
12.5.2021 - New feature! Added Wordpress support. The code can now detect Wordpress instances with ActivityPub enabled plugin.
12.5.2021 - New feature! New shinny creation of servers and users graphs.
21.8.2021 - New feature! Added Best Fediverse's servers Uptime publishing bot.
22.10.2021 - New feature! Added [Funkwhale](https://funkwhale.audio) support.
26.10.2021 - New feature! Added [Socialhome](https://socialhome.network) support.
2022-03-12 13:51:01 +01:00
2.3.2022 - Improved server nodeinfo detection