A Twitter bot that tweets aerial imagery pictures of municipalities
Project description
Munibot
Munibot is a friendly Twitter bot that posts aerial or satellite imagery of administrative regions (tipically municipalities).
It is written in a modular way so it's easy to customize to different data sources, via the implementation of profiles.
It currently powers the following Twitter accounts:
-
@munibot_es: All municipalities in Spain, shown in random order, with base aerial ortophotograhy from PNOA IGN.
-
@munibot_cat: All municipalities in Catalonia, shown in random order, with base aerial ortophotograhy from ICGC.
-
@communebot: All communes in France, shown in random order, with base aerial ortophotograhy from IGN.
Here's how a sample tweet looks like:
Table of Contents
Usage
Installation
Munibot is available on PyPI and can be installed with pip
. It is strongly recommended to install it in a virtual environment:
python3 -m venv munibot
source munibot/bin/activate
pip install munibot
Or alternatively, using pipx
:
pipx install munibot
Munibot uses Rasterio and Fiona, which require GDAL. The wheels installed by pip on Linux (and macOS, although I have not tested it) include binaries for GDAL that cover munibot's need so it doesn't need to be installed separately. On other operating systems you might need to install GDAL.
Configuration
Munibot uses an ini file for configuration. You can download the sample ini file included in this repository running:
curl https://raw.githubusercontent.com/amercader/munibot/main/munibot.sample.ini -o munibot.ini
or:
wget https://raw.githubusercontent.com/amercader/munibot/main/munibot.sample.ini -O munibot.ini
By itself munibot is not able to do much. You need to install an existing profile, or write your own.
To install a profile just install its Python package with pip:
pip install munibot-es
Running it
Once munibot is installed, you should be able to run
munibot --help
Munibot assumes that the configuration ini file is located in the same folder the command is run on (and named "munibot.ini"). If that's not the case, you can pass the location of the configuration file with the --config
or -c
arguments:
munibot -c /path/to/munibot.ini
If at least a profile is available and all the necessary authorization tokens are available in the ini file (see Twitter authorization) just run the following to tweet a new image:
munibot tweet <profile-name>
If you only want to create the image without tweeting it use the create
command:
munibot create <profile-name>
Deploying it
You don't need much to run munibot, just a system capable of running Python >= 3.6. Once installed, you probably want to schedule the sending of tweets at regular intervals. An easy way available on Linux and macOS is cron
. Here's an example configuration that you can adapt to your preferred interval and local paths (it assumes munibot was installed in a virtualenv in /home/user/munibot
):
# Tweet an image every 8 hours (~3 times a day)
0 */8 * * * /home/user/munibot/bin/munibot --c /home/user/munibot/munibot.ini tweet cat >> /home/user/out/cat/munibot_cat.log 2>&1
You can adjust the log level in the munibot ini configuration file.
Writing your own profile
Munibot is designed to be easy to customize to different data sources in order to power different bot accounts. This is done via profile classes. Profiles implement a few mandatory and optional properties and methods that provide the different inputs necessary to generate the tweets. Munibot takes care of the common functionality like generating the final image and sending the tweet.
To see the actual methods that your profile should implement check the BaseProfile
class in munibot/profiles/base.py
. Here's a quick overview of what you should provide:
- The geometry of the boundary of a particular administrative unit (given an id). This can come from any place that can end up providing a GeoJSON-like Python dict: an actual GeoJSON file, PostGIS database or a WFS service.
- The base image (aerial photography or satellite imagery) covering the extent of the administrative unit (given the extent). WMS services work really well for this as they allow to retrieve images of arbitrary extent and size.
- The text that should go along with the image in the tweet. Generally the name of the unit, plus some higher level unit for reference.
- A method that defines the id of the next unit that should be tweeted.
- Optionally, the latitude and longitude that should be added to the tweet.
Once you've implemented your profile class you can register using the munibot_profiles
entry point in your package setup.py
file:
"munibot_profiles": [
"<profile_id>=<your_package>.profiles.:<YourProfileClass>",
]
You can check the following examples:
- Municipalities of Spain and Catalonia: munibot_es
- Communes of France: communebot_fr
Twitter Authorization
Authentication when using the Twitter API can be confusing at first, but it should be hopefully clear after following this guide.
We need to use what Twitter calls OAuth 1.0a, more specifically PIN-Based OAuth.
Quick summary:
- You will register for a Twitter developer account
- With this account you will create an app, which will be used to interact with the Twitter API.
- The actual bot accounts will authorize this application with write permissions.
- The munibot app will tweet on behalf of the bot accounts.
Step-by-step setup (you will need munibot up and running so if you haven't yet installed do so first):
-
Register for a developer account on https://developer.twitter.com (you can use your actual Twitter account or create a separate one)
-
Create a new Project, and a new Application within it:
- Select Read and Write permissions
- Turn on the Enable 3-legged OAuth authentication setting
- Enter a callback URL (anything will do, we won't use it)
-
Generate an Access token and secret, and enter them under the
[twitter]
section in themunibot.ini
file:[twitter] api_key=CHANGE_ME api_key_secret=CHANGE_ME
-
Create a twitter account for your bot (eg
munibot_xyz
) -
Run the following command:
munibot tokens <profile_name>
You should see a message like:
Please visit the following URL logged in as the Twitter bot account for this profile, authorize the application and input the verification code shown. https://api.twitter.com/oauth/authorize?oauth_token=XXX Verification code:
-
Do as suggested, open the link logged in as the bot account (not your own). You should see a page asking you to authorize the application that you created on step 2. Once authorized you should see a big verification code. Enter it in the munibot command prompt.
-
The command should output the following:
Done, access tokens for profile <profile_name>: twitter_access_token=xxx twitter_access_token_secret=yyy
-
Enter the tokens above in the relevant profile section in the
munibot.ini
file:[profile:<profile_name>] twitter_access_token=xxx twitter_access_token_secret=yyy
Done! From this moment on munibot should be able to tweet on behalf of the bot account. You can try it running munibot tweet <profile_name>
Development installation
Clone the repo and install the requirements:
git clone https://github.com/amercader/munibot.git
pip install -r requirements.txt
pip install -r dev-requirements.txt
To run the tests:
pytest
With coverage:
pytest -v --cov=munibot --cov-report term-missing
License
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file munibot-0.0.5.tar.gz
.
File metadata
- Download URL: munibot-0.0.5.tar.gz
- Upload date:
- Size: 14.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.26.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.8.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 758678ec03a76878ad49b7140e4cd3228a05fc477afca11324915758f4433614 |
|
MD5 | 72c8c3eaa23e7c54cc4fbac90fe2b0da |
|
BLAKE2b-256 | 7e96416967f434034d71c67a367c78f999051cf687d45f6d75ddcb484348818c |