File tree 6 files changed +30
-8
lines changed
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::
10
10
11
11
.. image :: https://github.com/pyexcel/pyexcel-gantt/raw/master/demo/demo.png
12
12
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:
14
19
15
20
.. code-block :: python
16
21
@@ -20,7 +25,8 @@ Here's what you need to do in your program:
20
25
p.save_as(file_name = ' tasks.csv' ,
21
26
dest_file_name = ' tasks.gantt.html' )
22
27
23
- Alternatively, you can do it with pyexcel's `command line interface `_:
28
+
29
+ Alternatively, you can save the file as:
24
30
25
31
.. code-block :: bash
26
32
Original file line number Diff line number Diff line change @@ -47,7 +47,12 @@ Here is `a sample csv`_ file::
47
47
48
48
.. image :: https://github.com/pyexcel/pyexcel-gantt/raw/master/demo/demo.png
49
49
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:
51
56
52
57
.. code-block :: python
53
58
@@ -57,7 +62,8 @@ Here's what you need to do in your program:
57
62
p.save_as(file_name = ' tasks.csv' ,
58
63
dest_file_name = ' tasks.gantt.html' )
59
64
60
- Alternatively, you can do it with pyexcel's `command line interface `_:
65
+
66
+ Alternatively, you can save the file as:
61
67
62
68
.. code-block :: bash
63
69
Original file line number Diff line number Diff line change @@ -23,7 +23,12 @@ Here is `a sample csv`_ file::
23
23
24
24
.. image :: https://github.com/pyexcel/pyexcel-gantt/raw/master/demo/demo.png
25
25
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:
27
32
28
33
.. code-block :: python
29
34
@@ -33,7 +38,8 @@ Here's what you need to do in your program:
33
38
p.save_as(file_name = ' tasks.csv' ,
34
39
dest_file_name = ' tasks.gantt.html' )
35
40
36
- Alternatively, you can do it with pyexcel's `command line interface `_:
41
+
42
+ Alternatively, you can save the file as:
37
43
38
44
.. code-block :: bash
39
45
Original file line number Diff line number Diff line change @@ -4,5 +4,6 @@ nick_name: "gantt"
4
4
version : " 0.0.1"
5
5
current_version : " 0.0.1"
6
6
release : " 0.0.1"
7
- dependencies : []
7
+ dependencies :
8
+ - jinja2
8
9
description : " 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 40
40
]
41
41
42
42
INSTALL_REQUIRES = [
43
+ 'jinja2' ,
43
44
]
44
45
45
46
46
47
PACKAGES = find_packages (exclude = ['ez_setup' , 'examples' , 'tests' ])
47
- EXTRAS_REQUIRE = {}
48
+ EXTRAS_REQUIRE = {
49
+ }
48
50
49
51
50
52
def read_files (* files ):
You can’t perform that action at this time.
0 commit comments