Skip to content

mattwelke/python-people-mastodon-import-creator

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

python-people-mastodon-import-creator

A Python script that reads the latest version of the Python People Gist, finds who on it is on Mastodon, and uses that to create a CSV file that can be imported into a Mastodon instance.

Inspired by the Java Champions import.

Creates a file that looks like this:

Account address,Show boosts,Notify on new posts,Languages
@dabeaz@mastodon.social,true,false,
@tiangolo@fosstodon.org,true,false,
@mitsuhiko@hachyderm.io,true,false,
...

Running

Deployed

It is deployed to DigitalOcean as a Cloud Function and can be invoked at https://faas-nyc1-2ef2e6cc.doserverless.co/api/v1/web/fn-a47dad79-2f23-4177-bac6-ea2cb67d272d/default/python_people_mastodon_import. If you open this link in your web browser, it will download the CSV file.

image

Locally

Ensure you have Python 3 with pip installed.

Clone the repo.

Create a virtual env and activate it. For example:

python -m venv .venv
source .venv/bin/activate

Use pip to install dependencies into the virtual env:

pip install -r requirements.txt

Run the script with the virtual env's Python:

python main.py

Example output (many names omitted for brevity):

Fetched list of Python people (161 people in total).
Filtered out Python people who are not on Mastodon (46 are on Mastodon).
Creating CSV import file at python_people_mastodon_import.csv.
Added David Beazley (@dabeaz@mastodon.social).
Added Sebastián Ramírez (@tiangolo@fosstodon.org).
Added Armin Ronacher (@mitsuhiko@hachyderm.io).
...
Done

Use your Mastodon instance's import UI to import the file. If your goal is to follow people you aren't already following, and you're okay with the import turning off notifications for people you may already be following, do it like this:

image

Notes, getting help, and contributing

Python isn't one of my daily languages. This code might be fragile or otherwise weird. PRs are welcome!

If you have trouble running it or you have a feature request, feel free to open an issue.

To contribute, fork the repo and create a PR with your change. If a test suite using an automated testing framework for Python does not already exist when you open the PR, add a test suite using a popular framework (ex. pytest ). Add a test in the suite alongside your change in the PR.

Trademarks

Mastodon is a registered trademark of Mastodon gGmbH.

Java is a registered trademark of Oracle and/or its affiliates.

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages