File tree Expand file tree Collapse file tree 6 files changed +30
-8
lines changed Expand file tree Collapse file tree 6 files changed +30
-8
lines changed Original file line number Diff line number Diff line change @@ -10,7 +10,12 @@ Here is `a sample csv`_ file::
1010
1111.. image :: https://github.com/pyexcel/pyexcel-gantt/raw/master/demo/demo.png
1212
13- Here's what you need to do in your program:
13+ What you can do is to view it with pyexcel's `command line interface `_:
14+
15+ pyexcel view --in-browser --output-file-type gantt.html demo/tasks.csv
16+
17+
18+ Programmatically, you can do the following:
1419
1520.. code-block :: python
1621
@@ -20,7 +25,8 @@ Here's what you need to do in your program:
2025 p.save_as(file_name = ' tasks.csv' ,
2126 dest_file_name = ' tasks.gantt.html' )
2227
23- Alternatively, you can do it with pyexcel's `command line interface `_:
28+
29+ Alternatively, you can save the file as:
2430
2531.. code-block :: bash
2632
Original file line number Diff line number Diff line change @@ -47,7 +47,12 @@ Here is `a sample csv`_ file::
4747
4848.. image :: https://github.com/pyexcel/pyexcel-gantt/raw/master/demo/demo.png
4949
50- Here's what you need to do in your program:
50+ What you can do is to view it with pyexcel's `command line interface `_:
51+
52+ pyexcel view --in-browser --output-file-type gantt.html demo/tasks.csv
53+
54+
55+ Programmatically, you can do the following:
5156
5257.. code-block :: python
5358
@@ -57,7 +62,8 @@ Here's what you need to do in your program:
5762 p.save_as(file_name = ' tasks.csv' ,
5863 dest_file_name = ' tasks.gantt.html' )
5964
60- Alternatively, you can do it with pyexcel's `command line interface `_:
65+
66+ Alternatively, you can save the file as:
6167
6268.. code-block :: bash
6369
Original file line number Diff line number Diff line change @@ -23,7 +23,12 @@ Here is `a sample csv`_ file::
2323
2424.. image :: https://github.com/pyexcel/pyexcel-gantt/raw/master/demo/demo.png
2525
26- Here's what you need to do in your program:
26+ What you can do is to view it with pyexcel's `command line interface `_:
27+
28+ pyexcel view --in-browser --output-file-type gantt.html demo/tasks.csv
29+
30+
31+ Programmatically, you can do the following:
2732
2833.. code-block :: python
2934
@@ -33,7 +38,8 @@ Here's what you need to do in your program:
3338 p.save_as(file_name = ' tasks.csv' ,
3439 dest_file_name = ' tasks.gantt.html' )
3540
36- Alternatively, you can do it with pyexcel's `command line interface `_:
41+
42+ Alternatively, you can save the file as:
3743
3844.. code-block :: bash
3945
Original file line number Diff line number Diff line change @@ -4,5 +4,6 @@ nick_name: "gantt"
44version : " 0.0.1"
55current_version : " 0.0.1"
66release : " 0.0.1"
7- dependencies : []
7+ dependencies :
8+ - jinja2
89description : " Draw gantt chart using frappe-gantt module for pyexcel data"
Original file line number Diff line number Diff line change 1+ jinja2
Original file line number Diff line number Diff line change 4040]
4141
4242INSTALL_REQUIRES = [
43+ 'jinja2' ,
4344]
4445
4546
4647PACKAGES = find_packages (exclude = ['ez_setup' , 'examples' , 'tests' ])
47- EXTRAS_REQUIRE = {}
48+ EXTRAS_REQUIRE = {
49+ }
4850
4951
5052def read_files (* files ):
You can’t perform that action at this time.
0 commit comments