doc/*.rst: use console highlighting
[aubio.git] / doc / python_module.rst
index ed834f5..f801368 100644 (file)
@@ -10,7 +10,7 @@ Installing aubio with pip
 
 aubio can now be installed using ``pip``:
 
-.. code-block:: bash
+.. code-block:: console
 
     $ pip install aubio
 
@@ -19,7 +19,7 @@ Building the module
 
 From ``aubio`` source directory, run the following:
 
-.. code-block:: bash
+.. code-block:: console
 
     $ ./setup.py clean
     $ ./setup.py build
@@ -28,8 +28,17 @@ From ``aubio`` source directory, run the following:
 Using aubio in python
 ---------------------
 
-Once you have python-aubio installed, you should be able to run ``python -c
-"import aubio; print(aubio.version)"``.
+Once the python module is installed, its version can be checked with:
+
+.. code-block:: console
+
+    $ python -c "import aubio; print(aubio.version, aubio.float_type)"
+
+The command line `aubio` is also installed:
+
+.. code-block:: console
+
+    $ aubio -h
 
 A simple example
 ................