Changeset f8bf0c2 for doc/python.rst


Ignore:
Timestamp:
Oct 31, 2018, 4:25:09 PM (5 years ago)
Author:
Paul Brossier <piem@piem.org>
Branches:
feature/autosink, feature/cnn, feature/cnn_org, feature/constantq, feature/crepe, feature/crepe_org, feature/pitchshift, feature/pydocstrings, feature/timestretch, fix/ffmpeg5, master
Children:
f214e9c
Parents:
68daf5b
Message:

[doc] reorganize python doc

File:
1 edited

Legend:

Unmodified
Added
Removed
  • doc/python.rst

    r68daf5b rf8bf0c2  
    88   we follow numpy type docstrings, see:
    99   https://numpydoc.readthedocs.io/en/latest/format.html#docstring-standard
     10..
     11   note: we do not import aubio's docstring, which will be displayed from an
     12   interpreter.
     13
     14.. .. automodule:: aubio
     15
    1016
    1117.. _python:
     
    1420====================
    1521
     22This module provides a number of classes and functions for the analysis of
     23music and audio signals.
    1624
    17 .. midiconv.py
     25Contents
     26--------
    1827
    19 .. autofunction:: note2midi
     28.. toctree::
     29   :maxdepth: 1
    2030
    21 .. autofunction:: midi2note
     31   py_examples
     32   py_datatypes
     33   py_io
     34   py_utils
    2235
    23 .. autofunction:: freq2note
     36Introduction
     37------------
    2438
    25 .. autofunction:: note2freq
     39This document provides a reference guide. For documentation on how to
     40install aubio, see :ref:`python-install`.
    2641
    27 .. slicing.py
     42Examples included in this guide and within the code are written assuming
     43both `aubio` and `numpy`_ have been imported:
    2844
    29 .. autofunction:: slice_source_at_stamps
     45.. code-block:: python
     46
     47    >>> import aubio
     48    >>> import numpy as np
     49
     50`Changed in 0.4.8` :  Prior to this version, almost no documentation was
     51provided with the python module. This version adds documentation for some
     52classes, including :class:`fvec`, :class:`cvec`, :class:`source`, and
     53:class:`sink`.
     54
     55.. _numpy: https://www.numpy.org
Note: See TracChangeset for help on using the changeset viewer.