Refactoring API, writing docs.

This commit is contained in:
Romain Dorgueil
2017-12-27 11:32:47 +01:00
parent 018289dad6
commit 46a8fd192e
12 changed files with 91 additions and 91 deletions

View File

@ -31,9 +31,6 @@ We'll create a job to do the following
* Display it (in the next step, we'll learn about writing the result to a file.
Moving forward
::::::::::::::

View File

@ -1,9 +1,6 @@
Part 4: Services and Configurables
==================================
.. note::
This section lacks completeness, sorry for that (but you can still read it!).
In the last section, we used a few new tools.

View File

@ -1,7 +1,20 @@
Part 5: Projects and Packaging
==============================
Until then, we worked with one file managing a job. But real life is about set of jobs working together within a project.
Until then, we worked with one file managing a job.
Real life often involves more complicated setups, with relations and imports between different files.
This section will describe the options available to move this file into a package, either a new one or something
that already exists in your own project.
Data processing is something a wide variety of tools may want to include, and thus |bonobo| does not enforce any
kind of project structure, as the targert structure will be dicated by the hosting project. For example, a `pipelines`
sub-package would perfectly fit a django or flask project, or even a regular package, but it's up to you to chose the
structure of your project.
about using |bonobo| in a pyt
is about set of jobs working together within a project.
Let's see how to move from the current status to a package.

View File

@ -1,11 +0,0 @@
Just enough Python for Bonobo
=============================
.. todo::
This is a work in progress and it is not yet available. Please come back later or even better, help us write this
guide!
This guide is intended to help programmers or enthusiasts to grasp the python basics necessary to use Bonobo. It
should definately not be considered as a general python introduction, neither a deep dive into details.