Twitter to text via template. Somehow that abbreviates to "twempest".
Project description
Motivation
Twempest was born of the need to periodically echo my Twitter tweets as posts on my Jekyll-built blog. That’s it, that’s all.
Licence
Copyright 2017 Dave Rogers. Licensed under the GNU General Public License, version 3. Refer to the attached LICENSE file or see http://www.gnu.org/licenses/ for details.
Change Log
The current version is 0.1.3. Twempest is semver-ish in its versioning scheme.
Twempest is currently an alpha release, so expect many many breaking changes.
Installation
Homebrew (macOS)
On macOS, Homebrew will take care of installing any dependencies, including Python 3.
brew tap yukondude/tap brew install twempest
PyPI (POSIX)
On *NIX, you will first need to install Python 3.6 (or higher) using your preferred method.
pip3 install twempest
Development Setup
Create a Python 3 virtualenv for Twempest: mkvirtualenv --python=$(which python3) Twempest
Clone the Twempest repo: git clone https://github.com/yukondude/Twempest.git
Install dependencies: pip install -r requirements.txt -r requirements-dev.txt -r requirements-test.txt
Install the project in development mode: ./setup.py develop
Run the unit tests to make sure everything is copacetic: ./setup.py test
Pour a snifter of Château de Montifaud and light up a Laranja Reserva Toro.
Usage
Run twempest --help to view the usage instructions:
Usage: twempest [OPTIONS] TEMPLATE Download a sequence of recent Twitter tweets and convert these, via the given template file, to text format. Twempest uses the Jinja template syntax throughout: http://jinja.pocoo.org/docs/2.9/templates/ Options: -c, --config-path TEXT Twempest configuration directory path, which must be writable, and must also contain the twempest.conf file. [default: ~/.twempest] -a, --append Append rendered tweet(s) to existing file(s) rather than skipping past with a warning. -i, --image-path TEXT The directory path (template tags allowed) to write downloaded image (media type == 'photo') files. The directory path will be created if it doesn't exist. Media file names use the --render-file name followed by a number and the appropriate file extension. If omitted, media files will not be downloaded. -u, --image-url TEXT The URL path (template tags allowed) to use for all image files downloaded via the --image-path option. -f, --render-file TEXT The file name (template tags allowed) for the rendered tweets. If omitted, tweets will be rendered to STDOUT. -p, --render-path TEXT The directory path (template tags allowed) to write the rendered tweet files. The directory path will be created if it doesn't exist. [default: .] -@, --replies Include @replies in the list of retrieved tweets. -r, --retweets Include retweets in the list of retrieved tweets. -s, --since-id TEXT Retrieve tweets that follow this ID in the timeline. Required, unless the ID has already been recorded in the config path directory after a previous run of Twempest. -V, --version Show version and exit. -h, --help Show this message and exit.
Sample Configuration
Contents of twempest.config.sample:
# Sample Twempest configuration file. See https://github.com/yukondude/Twempest # for details. Save this to ~/.twempest/twempest.config as the default # configuration whenever twempest is run, or save it somewhere convenient as # twempest.config and reference it via the -c/--config-path command-line switch. [twempest] # Most twempest long-form command-line switches may be used here (excluding the # leading double-dash). The obvious exceptions would include --config-path, # --help, and --version, but go ahead and try them if you like. The commented- # out defaults are shown below. See the --help output for details. # Do not append to existing files. # append=false # Do not download image files. # image-path= # Do not download image files. # image-url= # Render tweets to STDOUT. # render-file= # Because template expressions are allowed for this option, you can generate # rendered file names using any of the tweet context variable contents. For # example: render-file={{tweet.created_at|isodate}}-{{tweet.text|slugify}}.md # might render to something like: 2017-02-14-be-my-valentine.md # Use the slugify filter to eliminate any non-filesystem-safe characters from # the tweet text. # Write rendered tweets to the current directory. # render-path=. # Template expressions are also allowed for this option, so the directory path # can be made to change based upon a tweet status variable. # Exclude @replies from the list of retrieved tweets. # replies=false # Exclude retweets from the list of retrieved tweets. # retweets=false # Don't specify a most recent Twitter ID. # since-id= # Since this isn't specified (and normally wouldn't be in a config file), there # must already be an ID recorded in the config path directory after a previous # run of Twempest. [twitter] # Visit https://apps.twitter.com/ to generate these keys, secrets, tokens, and # token secrets. Secret tokens? Token keys? Secret secrets? consumer_key= consumer_secret= access_token= access_token_secret=
Sample Template
A simple template to render a tweet as Markdown text suitable for Jekyll posts (twempest.template.sample):
--- title: '{{ tweet.text|delink|truncate(80,False)|escape }}' author: '{{ tweet.user.name|escape }}' date: '{{ tweet.created_at }}' tweet_id: {{ tweet.id }} --- {{ tweet.text|relink("[{{text}}]({{url}})")|reimage("![{{alt}}]({{url}})") }}
The rendered output of this template might look something like the following:
--- title: 'Ice fog "boiling" up from the Yukon River.' author: 'Dave Rogers' date: '2016-12-06 12:12:36-08:00' tweet_id: 806229878861201408 --- Ice fog "boiling" up from the [#Yukon](https://twitter.com/hashtag/yukon) River. ![2016-12-06-ice-fog-boiling-up-from-the-yukon-river-0](/media/2016-12-06-ice-fog-boiling-up-from-the-yukon-river-0.jpg)
tweet Context Variable
See the Twitter API documentation for tweets for a list of all of the keys that can be found under the tweet context variable (a dictionary).
A couple of other keys are also available:
tweet.media[].original_media_url
The original value of the media_url key within the list of media items before any downloaded image URL rewriting took place.
tweet.media[].original_media_url_https
The original value of the media_url_https key within the list of media items before any downloaded image URL rewriting took place.
Template Filters
These are in addition to the built-in Jinja2 filters.
delink
Remove URLs and hashtag ‘#’ prefixes.
isodate
Format a date as YYYY-MM-DD.
reimage(tag_format)
Remove image URLs and append them to the end, using the template tag_format with variables alt and url to format each.
relink(tag_format)
Replace non-image URLs and hashtag links, using the template tag_format with variables text and url to format each.
slugify
Transform the given text into a suitable file name that is also scrubbed of URLs and hashtags.
README.md generated February 27, 2017
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.