#! /usr/bin/env python
# -*- encoding: utf-8 -*-

"""
Measures your typing speed in words per minute (WPM).
"""

import wpm.commandline

if __name__ == "__main__":
    wpm.commandline.main()
