• Stars
    star
    321
  • Rank 129,969 (Top 3 %)
  • Language
    Python
  • License
    MIT License
  • Created about 10 years ago
  • Updated 8 months ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Parse and manage posts with YAML (or other) frontmatter

Python Frontmatter

Jekyll-style YAML front matter offers a useful way to add arbitrary, structured metadata to text documents, regardless of type.

This is a small package to load and parse files (or just text) with YAML (or JSON, TOML or other) front matter.

Tests PyPI

Documentation

Install:

pip install python-frontmatter

Usage:

>>> import frontmatter

Load a post from a filename:

>>> post = frontmatter.load('tests/yaml/hello-world.txt')

Or a file (or file-like object):

>>> with open('tests/yaml/hello-world.txt') as f:
...     post = frontmatter.load(f)

Or load from text:

>>> with open('tests/yaml/hello-world.txt') as f:
...     post = frontmatter.loads(f.read())

If the file has a Byte-Order Mark (BOM), strip it off first. An easy way to do this is by using the utf-8-sig encoding:

>>> with open('tests/yaml/hello-world.txt', encoding="utf-8-sig") as f:
...     post = frontmatter.load(f)

Access content:

>>> print(post.content)
Well, hello there, world.

# this works, too
>>> print(post)
Well, hello there, world.

Use metadata (metadata gets proxied as post keys):

>>> print(post['title'])
Hello, world!

Metadata is a dictionary, with some handy proxies:

>>> sorted(post.keys())
['layout', 'title']

>>> from pprint import pprint
>>> post['excerpt'] = 'tl;dr'
>>> pprint(post.metadata)
{'excerpt': 'tl;dr', 'layout': 'post', 'title': 'Hello, world!'}

If you don't need the whole post object, just parse:

>>> with open('tests/yaml/hello-world.txt') as f:
...     metadata, content = frontmatter.parse(f.read())
>>> print(metadata['title'])
Hello, world!

Write back to plain text, too:

>>> print(frontmatter.dumps(post)) # doctest: +NORMALIZE_WHITESPACE
---
excerpt: tl;dr
layout: post
title: Hello, world!
---
Well, hello there, world.

Or write to a file (or file-like object):

>>> from io import BytesIO
>>> f = BytesIO()
>>> frontmatter.dump(post, f)
>>> print(f.getvalue().decode('utf-8')) # doctest: +NORMALIZE_WHITESPACE
---
excerpt: tl;dr
layout: post
title: Hello, world!
---
Well, hello there, world.

For more examples, see files in the tests/ directory. Each sample file has a corresponding .result.json file showing the expected parsed output. See also the examples/ directory, which covers more ways to customize input and output.

More Repositories

1

geocode-sqlite

Geocode rows in a SQLite database table
Python
231
star
2

python-tablefu

A Python version (almost a port) of ProPublica's TableFu
Python
231
star
3

awesome-journalism

A collection of awesome tools for journalism
96
star
4

propublica-congress

A Python client for the ProPublica Congress API
Python
54
star
5

feed-to-sqlite

Save an RSS or ATOM feed to a SQLite database
Python
44
star
6

python-wordpress

A really simple Python client for WordPress JSON API
Python
35
star
7

ulysses-js

A tool for telling stories with maps.
JavaScript
24
star
8

datasette-geojson-map

Render a map for any query with a geometry column
Python
23
star
9

visible-data

Cultural learnings of dataviz to make benefit glorious profession of journalism.
JavaScript
21
star
10

spatial-data-cooking-show

A demo project and template repository showing how I use SpatiaLite with Datasette for quick spatial analysis.
Makefile
16
star
11

self-hosted-maps-codespace

An example self-hosted map with all dependencies included
Makefile
16
star
12

datasette-query-files

Write Datasette canned queries as plain SQL files
Python
12
star
13

datasette-geojson

Add GeoJSON output to Datasette queries
Python
12
star
14

geocoder-comparison

A test of various geocoders available on the web
Python
11
star
15

python-nytcongress

Another Python client for the NY Times' Congress API
Python
10
star
16

alltheplaces-datasette

AllThePlaces in Datasette
Makefile
9
star
17

python-publish2

Publish2 is a tool for collaborative journalism, letting users create and distribute feeds of topical news links. This is the beginnings of a Python wrapper around Publish2's JSON feeds.
Python
7
star
18

simple-sunlight

A simpler wrapper for Sunlight's Congress API
Python
7
star
19

flask-docviewer

A really simple DocumentCloud viewer built on Python and Flask
Python
5
star
20

climate-change

The heat is on for the planet as a whole, but what has been happening where you live?
JavaScript
5
star
21

things-i-use

An opinionated list of what I reach for first on new projects
5
star
22

django-newsutils

A suite of simple, reusible tools for news sites
Python
5
star
23

data-loading-kit

A starter kit for loading data
Python
4
star
24

flask-tablesetter

A Python version of ProPublica's TableSetter, using Flask
JavaScript
4
star
25

tweetbill

Find legislators. Track bills. Take action.
Python
4
star
26

sqlite-colorbrewer

A custom function to use ColorBrewer scales in SQLite queries
Python
4
star
27

python-metalsmyth

A file processor, maybe a static site generator, inspired by Metalsmith.io
Python
4
star
28

chrisamico.com

My personal site. May include a blog.
Python
3
star
29

tennis-rankings

Scrapers for professional tennis rankings (ATP and WTA)
JavaScript
3
star
30

newsbot

A better news aggregator for DC
Python
3
star
31

walldrawings

Sol LeWitt's wall drawings, as implemented for the internet
CSS
3
star
32

dorchester

A toolkit for making dot-density maps in Python
Jupyter Notebook
3
star
33

til

Today I Learned
3
star
34

django-scrivo

Building myself a better, simpler blog engine
Python
3
star
35

nicar24-self-hosted-maps

Slides for my NICAR2024 talk
JavaScript
3
star
36

fedblogger

FedBlogger is an aggregator for federal government blogs
Python
3
star
37

bank-failures

Give me a heads up if there's a new bank failure
2
star
38

hello-congress

A demo app using the New York Times' Congress API and Flask
JavaScript
2
star
39

largest-fires-2018

The 10 largest fires in 2018
Makefile
2
star
40

ft-builder

A prototype Fusion Tables layer builder
JavaScript
2
star
41

jquery-winerlinks

Paragraph-level permalinks in one step
JavaScript
2
star
42

scorekeeper

A little app to keep score in games
HTML
2
star
43

nameparse

A little web service to parse names
Python
2
star
44

hw-maps

Homicide Watch mapping framework built on an open stack
JavaScript
2
star
45

boston-trees

Trees in Boston
Makefile
2
star
46

price-of-things

The prices of things in the news
JavaScript
2
star
47

baltimore-trees

A demo project for NICAR24 in Baltimore
Python
2
star
48

talks

Slides for talks, all in one repo
HTML
1
star
49

wildfires

1
star
50

wumb-to-sqlite

Scrape WUMB playlists to SQLite
HTML
1
star
51

wedding

I'm getting married next year. This is where I'm putting the code for a simple site we're using. It's not very reusable, but we only plan to use it once.
Python
1
star
52

mustachio

An excuse to stay up late playing with mustache templates
JavaScript
1
star
53

guess-mass

A game to learn Massachusetts towns
HTML
1
star
54

hw-partners

JavaScript
1
star
55

geojson-speed-test

What's the fastest way to load GeoJSON into SQLite?
Shell
1
star
56

python-alchemy

A really basic wrapper for Alchemy's text extraction API
Python
1
star
57

politicsinquotes

Python
1
star
58

classroulette

Spin the wheel. Maybe you'll learn something.
JavaScript
1
star
59

beijing_air

Keeping tabs on the air in Beijing
Python
1
star
60

backbone-opened-captions

A set of Backbone base classes for use with OpenedCaptions.
JavaScript
1
star
61

responsive-dataviz

Slides from my panel at #nicar14
JavaScript
1
star
62

ma-redistricting-2022

Let's play with redistricting data
Makefile
1
star
63

nicar-2020-three-kinds-of-code

The three kinds of code you'll write in the newsroom. My NICAR20 lightning talk.
HTML
1
star
64

dc-gis-data

DC Boundary Service Data
Python
1
star