118 lines
4.2 KiB
HTML
118 lines
4.2 KiB
HTML
{% extends "layout.html" %}
|
|
{% set title = _('Bonobo — Data processing for humans') %}
|
|
{% block body %}
|
|
|
|
<h1 style="text-align: center">
|
|
<img class="logo" src="{{ pathto('_static/bonobo.png', 1) }}" title="Bonobo" alt="Bonobo"
|
|
style=" width: 128px; height: 128px;"/>
|
|
</h1>
|
|
|
|
<p>
|
|
{% trans %}
|
|
<strong>Bonobo</strong> is a line-by-line data-processing toolkit for python 3.5+ (extract-transform-load
|
|
framework, or ETL) emphasizing simple and atomic data transformations defined using a directed graph of plain old
|
|
python objects (functions, iterables, generators, ...).
|
|
{% endtrans %}
|
|
</p>
|
|
|
|
<div style="border: 2px solid red; font-weight: bold; margin: 1em; padding: 1em">
|
|
Bonobo is <strong>ALPHA</strong> software. Some APIs will change.
|
|
</div>
|
|
|
|
|
|
<h2 style="margin-bottom: 0">{% trans %}Documentation{% endtrans %}</h2>
|
|
|
|
<table class="contentstable">
|
|
<tr>
|
|
<td>
|
|
<p class="biglink"><a class="biglink" href="{{ pathto(" tutorial/index") }}">{% trans %}First steps{%
|
|
endtrans %}</a><br/>
|
|
<span class="linkdescr">{% trans %}quick overview of basic features{% endtrans %}</span></p>
|
|
</td>
|
|
<td>
|
|
<p class="biglink"><a class="biglink" href="{{ pathto(" search") }}">{% trans %}
|
|
Search{% endtrans %}</a><br/>
|
|
<span class="linkdescr">{% trans %}search the documentation{% endtrans %}</span></p>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>
|
|
<p class="biglink"><a class="biglink" href="{{ pathto(" guide/index") }}">{% trans %}
|
|
Guides{% endtrans %}</a><br/>
|
|
<span class="linkdescr">{% trans %}for a complete overview{% endtrans %}</span>
|
|
</p>
|
|
</td>
|
|
<td>
|
|
<p class="biglink"><a class="biglink" href="{{ pathto(" reference/index") }}">{% trans %}References{%
|
|
endtrans %}</a>
|
|
<br/>
|
|
<span class="linkdescr">{% trans %}all functions, classes, terms{% endtrans %}</span>
|
|
</p>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>
|
|
<p class="biglink"><a class="biglink" target="_blank"
|
|
href="https://github.com/python-bonobo/bonobo/tree/master/bonobo/examples">{% trans %}
|
|
Cookbook{% endtrans %}</a><br/>
|
|
<span class="linkdescr">{% trans %}examples and recipes{% endtrans %}</span></p>
|
|
</td>
|
|
<td>
|
|
<p class="biglink"><a class="biglink" href="{{ pathto(" contribute/index") }}">{% trans %}
|
|
Contribute{% endtrans %}</a><br/>
|
|
<span class="linkdescr">{% trans %}contributor guide{% endtrans %}</span></p>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
|
|
<h2>Features</h2>
|
|
|
|
<ul>
|
|
<li>
|
|
{% trans %}
|
|
<b>10 minutes to get started:</b> Know some python? Writing your first data processor is an affair
|
|
of minutes.
|
|
{% endtrans %}
|
|
</li>
|
|
<li>
|
|
{% trans %}
|
|
<b>Data sources and targets:</b> HTML, JSON, XML, SQL databases, NoSQL databases, HTTP/REST APIs,
|
|
streaming APIs, python objects...
|
|
{% endtrans %}
|
|
</li>
|
|
<li>
|
|
{% trans %}
|
|
<b>Service injection:</b> Abstract the transformation dependencies to easily switch data sources and
|
|
dependant libraries. You'll be able to specify the concrete implementations or configurations at
|
|
runtime, for example to switch a database connection string or an API endpoint.
|
|
{% endtrans %}
|
|
</li>
|
|
<li>
|
|
{% trans %}
|
|
<b>Plugins:</b> Easily add features to all your transformations by using builtin plugins (Jupyter,
|
|
Console, ...) or write your own.
|
|
{% endtrans %}
|
|
</li>
|
|
<li>
|
|
{% trans %}
|
|
Bonobo is young, and the todo-list is huge. Read the <a
|
|
href="https://www.bonobo-project.org/roadmap">roadmap</a>.
|
|
{% endtrans %}
|
|
</li>
|
|
</ul>
|
|
|
|
<p>{% trans %}
|
|
You can also download PDF/EPUB versions of the Bonobo documentation:
|
|
<a href="http://readthedocs.org/projects/bonobo/downloads/pdf/stable/">PDF version</a>,
|
|
<a href="http://readthedocs.org/projects/bonobo/downloads/epub/stable/">EPUB version</a>.
|
|
{% endtrans %}
|
|
</p>
|
|
|
|
<h2>Table of contents</h2>
|
|
|
|
|
|
<div>
|
|
{{ toctree(maxdepth=2, collapse=False)}}
|
|
</div>
|
|
{% endblock %}
|