more docs, still wip

This commit is contained in:
Romain Dorgueil
2016-12-27 22:05:21 +01:00
parent 4e2e9fa140
commit ad36f9368a
20 changed files with 560 additions and 106 deletions

View File

@ -1,29 +1,37 @@
First steps - Basic concepts
============================
Basic concepts
==============
To begin with Bonobo, you should first install it:
To begin with Bonobo, you need to install it in a working python 3.5+ environment:
.. code-block:: shell-session
$ pip install bonobo
See :doc:`install` if you're looking for more options.
See :doc:`/install` for more options.
Let's write a first data transformation
:::::::::::::::::::::::::::::::::::::::
We'll write a simple component that just uppercase everything. In **Bonobo**, a component is a plain old python
callable, not more, not less.
We'll start with the most simple components we can.
In **Bonobo**, a component is a plain old python callable, not more, not less. Let's write one that takes a string and
uppercase it.
.. code-block:: python
def uppercase(x: str):
return x.upper()
Ok, this is kind of simple, and you can even use `str.upper` directly instead of writing a wrapper. The type annotations
are not used, but can make your code much more readable (and may be used as validators in the future).
Pretty straightforward.
To run this, we need two more things: a generator that feeds data, and something that outputs it.
You could even use :func:`str.upper` directly instead of writing a wrapper, as a type's method (unbound) will take an
instance of this type as its first parameter (what you'd call `self` in your method).
The type annotations written here are not used, but can make your code much more readable, and may very well be used as
validators in the future.
Let's write two more components: a generator to produce the data to be transformed, and something that outputs it,
because, yeah, feedback is cool.
.. code-block:: python
@ -35,7 +43,10 @@ To run this, we need two more things: a generator that feeds data, and something
def output(x: str):
print(x)
That should do the job. Now, let's chain the three callables together and run them.
Once again, you could have skipped the pain of writing this and simply use an iterable to generate the data and the
builtin :func:`print` for the output, but we'll stick to writing our own components for now.
Let's chain the three components together and run the transformation:
.. code-block:: python
@ -43,44 +54,33 @@ That should do the job. Now, let's chain the three callables together and run th
run(generate_data, uppercase, output)
This is the simplest data transormation possible, and we run it using the `run` helper that hides the underlying object
composition necessary to actually run the callables in parralel. The more flexible, but a bit more verbose to do the
same thing would be:
.. graphviz::
.. code-block:: python
digraph {
rankdir = LR;
"generate_data" -> "uppercase" -> "output";
}
from bonobo import Graph, ThreadPoolExecutorStrategy
graph = Graph()
graph.add_chain(generate_data, uppercase, output)
executor = ThreadPoolExecutorStrategy()
executor.execute(graph)
We use the :func:`bonobo.run` helper that hides the underlying object composition necessary to actually run the
components in parralel, because it's simpler.
Depending on what you're doing, you may use the shorthand helper method, or the verbose one. Always favor the shorter,
if you don't need to tune the graph or the execution strategy.
if you don't need to tune the graph or the execution strategy (see below).
Definitions
:::::::::::
Diving in
:::::::::
* Graph
* Component
* Executor
.. todo:: Definitions, and substitute vague terms in the page by the exact term defined here
Summary
:::::::
Let's rewrite this using builtin functions and methods, then explain the few concepts available here:
Let's rewrite it using the builtin functions :func:`str.upper` and :func:`print` instead of our own wrappers, and expand
the :func:`bonobo.run()` helper so you see what's inside...
.. code-block:: python
from bonobo import Graph, ThreadPoolExecutorStrategy
# Represent our data processor as a simple directed graph of callables.
graph = Graph(
(x for x in 'foo', 'bar', 'baz'),
graph = Graph()
graph.add_chain(
('foo', 'bar', 'baz'),
str.upper,
print,
)
@ -91,19 +91,22 @@ Let's rewrite this using builtin functions and methods, then explain the few con
# Run the thing.
executor.execute(graph)
Or the shorthand version, that you should prefer if you don't need fine tuning:
We also switched our generator for a tuple, **Bonobo** will wrap it as a generator itself if it's not callable but
iterable.
The shorthand version with builtins would look like this:
.. code-block:: python
from bonobo import run
run(
iter(['foo', 'bar', 'baz']),
('foo', 'bar', 'baz'),
str.upper,
print,
)
Both methods are strictly equivalent (see :func:`bonobo.run`). When in doubt, favour the shorter.
Both methods are strictly equivalent (see :func:`bonobo.run`). When in doubt, prefer the shorter version.
Takeaways
:::::::::
@ -123,17 +126,26 @@ This is what the graph we defined looks like:
}
Transformations are simple python callables. Whatever can be called can be used as a transformation. Callables can
`Components` are simple python callables. Whatever can be called can be used as a `component`. Callables can
either `return` or `yield` data to send it to the next step. Regular functions (using `return`) should be prefered if
each call is guaranteed to return exactly one result, while generators (using `yield`) should be prefered if the
number of output lines for a given input varies.
③ The graph is then executed using an `ExecutionStrategy`. For now, let's focus only on
③ The `graph` is then executed using an `ExecutionStrategy`. In this tutorial, we'll only use
:class:`bonobo.ThreadPoolExecutorStrategy`, which use an underlying `concurrent.futures.ThreadPoolExecutor` to
schedule calls in a pool of threads, but basically this strategy is what determines the actual behaviour of execution.
④ Before actually executing the callables, the `ExecutorStrategy` instance will wrap each component in a `context`,
whose responsibility is to hold the state, to keep the components stateless. We'll expand on this later.
④ Before actually executing the `components`, the `ExecutorStrategy` instance will wrap each component in a `context`,
whose responsibility is to hold the state, to keep the `components` stateless. We'll expand on this later.
Concepts and definitions
::::::::::::::::::::::::
* Component
* Graph
* Executor
.. todo:: Definitions, and substitute vague terms in the page by the exact term defined here
Next
@ -141,6 +153,6 @@ Next
You now know all the basic concepts necessary to build (batch-like) data processors.
If you're confident with this part, let's get to a more real world example, using files and nice console output.
If you're confident with this part, let's get to a more real world example, using files and nice console output:
:doc:`basics2`
.. todo:: link to next page

View File

@ -1,5 +1,5 @@
First steps - Working with files
================================
Working with files
==================
Bonobo would not be of any use if the aim was to uppercase small lists of strings. In fact, Bonobo should not be used
if you don't expect any gain from parralelization of tasks.

14
docs/tutorial/index.rst Normal file
View File

@ -0,0 +1,14 @@
First steps
===========
We tried hard to make **Bonobo** simple. We use simple python, and we believe it should be simple to learn.
We strongly advice that even if you're an advanced python developper, you go through the whole tutorial for two
reasons: that should be sufficient to do anything possible with **Bonobo** and that's a good moment to learn the few
concepts you'll see everywhere in the software.
.. toctree::
:maxdepth: 2
basics
basics2