more documentage
This commit is contained in:
@ -1,3 +1,18 @@
|
||||
"""
|
||||
Extracts a list of parisian bars where you can buy a coffee for a reasonable price, and store them in a flat text file.
|
||||
|
||||
.. graphviz::
|
||||
|
||||
digraph {
|
||||
rankdir = LR;
|
||||
stylesheet = "../_static/graphs.css";
|
||||
|
||||
BEGIN [shape="point"];
|
||||
BEGIN -> "ODS()" -> "transform" -> "FileWriter()";
|
||||
}
|
||||
|
||||
"""
|
||||
|
||||
import bonobo
|
||||
from bonobo.commands.run import get_default_services
|
||||
from bonobo.ext.opendatasoft import OpenDataSoftAPI
|
||||
|
||||
@ -1,3 +1,19 @@
|
||||
"""
|
||||
Extracts a list of fablabs in the world, restrict to the ones in france, then format it both for a nice console output
|
||||
and a flat txt file.
|
||||
|
||||
.. graphviz::
|
||||
|
||||
digraph {
|
||||
rankdir = LR;
|
||||
stylesheet = "../_static/graphs.css";
|
||||
|
||||
BEGIN [shape="point"];
|
||||
BEGIN -> "ODS()" -> "normalize" -> "filter_france" -> "Tee()" -> "JsonWriter()";
|
||||
}
|
||||
|
||||
"""
|
||||
|
||||
import json
|
||||
|
||||
from colorama import Fore, Style
|
||||
|
||||
Reference in New Issue
Block a user