You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
yaclog/yaclog/__init__.py

12 lines
256 B
Python

import os
from yaclog.changelog import Changelog
3 years ago
def read(path):
"""
Create a new Changelog object from the given path
:param path: a path to a markdown changelog file
:return: a parsed Changelog object
"""
return Changelog(path)