Collection of simple tools for doing cool things with fedi
Go to file
Wardyn cd0cbf647b rework generate_config to use a requests session 2023-10-06 12:02:22 -07:00
.gitignore Remove mastodon.py dependency 2023-01-26 19:40:26 -08:00
LICENSE set up a proper git repository 2022-11-23 01:07:54 -08:00
README.md clarified usage of highestpost.py 2023-01-27 04:11:23 +00:00
autodeny.py add generate_config function to autodeny 2023-10-06 12:02:02 -07:00
config_template.json Remove mastodon.py dependency 2023-01-26 19:40:26 -08:00
fedisearch.py make everything executable 2023-07-31 02:18:11 +00:00
generate_config.py rework generate_config to use a requests session 2023-10-06 12:02:22 -07:00
highestpost.py make everything executable 2023-07-31 02:18:11 +00:00
import_following.py make everything executable 2023-07-31 02:18:11 +00:00
notification.mp3 Remove mastodon.py dependency 2023-01-26 19:40:26 -08:00
notification_sound.py Merge branch 'trunk' of https://lab.freak.university/Wardyn/wardyns-feditools into trunk 2023-10-06 12:00:06 -07:00
requirements.txt update requirements.txt 2023-01-26 19:49:00 -08:00

README.md

wardyns-feditools

Collection of simple tools to add functionality to the fediverse

Installation

All these tools are designed to run in the same directory in order to prevent generating multiple access tokens. Installation is simple, download master branch as zip, extract into a folder of your choice, then, in that directory, run:

pip install -r requirements.txt

Note: These programs were written and tested in python 3.8

Usage

All the programs are created with a built in help command, simply run [script] -h

fedisearch.py

fedisearch is a tool that allows you to search through a users profile for a specific keyword or phrase.

Limitations:

  • Very slow. Takes longer the the older a post is
  • Does not currently support regular expressions

autodeny.py

Used to automatically deny follow requests that do not pass certain tests. Those tests are:

  1. The user has more than 1 post (configurable)
  2. The user has a pfp other than the default one their instance assigns.
  3. The user has text within their bio

It will not deny a follow request if you are following the user

You can also specify instances to block all follow requests from

highestpost.py

Used to find the highest-rated post for a given account.

Example: Running highestpost.py wardyns_feditools@example.com, the output might look like this:

boost for a cookie

Favorites: 8 Boosts: 23
link: https://example.com/@wardyns_feditools/22190
-------

notification_sound.py

Used to play a sound when a notification is received.

replace notification.mp3 to change the notification sound. default is from the mastodon repository

import_following.py

Used to batch follow users from a .csv file. Created because I had issues with the follow import built into pleroma, however if that feature works fine for you I recommend you use it instead.