From 7cfad8e10b28f1e37c02a0cf8a10e95e96e86488 Mon Sep 17 00:00:00 2001 From: Paul Brossier Date: Tue, 30 Oct 2018 19:04:11 +0100 Subject: [PATCH] [py] add basic module docstring --- python/lib/aubio/__init__.py | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/python/lib/aubio/__init__.py b/python/lib/aubio/__init__.py index 9c202c78..87a357da 100644 --- a/python/lib/aubio/__init__.py +++ b/python/lib/aubio/__init__.py @@ -1,4 +1,26 @@ #! /usr/bin/env python +# -*- coding: utf8 -*- + +""" +aubio +===== + +Provides a number of classes and functions for music and audio signal +analysis. + +How to use the documentation +---------------------------- + +Documentation of the python module is available as docstrings provided +within the code, and a reference guide available online from `the +aubio homepage `_. + +The docstrings examples are written assuming `aubio` and `numpy` have been +imported with: + +>>> import aubio +>>> import numpy as np +""" import numpy from ._aubio import __version__ as version -- 2.11.0