Skip to content

Commit 64e356e

Browse files
committed
Merge branch 'developer' into 'master'
v0.1.0 See merge request !8
2 parents ec99865 + 1d774f1 commit 64e356e

File tree

12 files changed

+12
-41
lines changed

12 files changed

+12
-41
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,4 @@
22
.DS_Store
33
*egg-info/
44
.ipynb_checkpoints
5+
dist/

highcharts/__init__.py

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,9 @@
1-
#!/usr/bin/python
21
# -*- coding: utf-8 -*-
3-
"""
4-
Python-highcharts is a Python wrapper for highcarts graph library.
5-
6-
Project location : xxxxxx
7-
"""
82

93
from .version import version_info, __version__
104

115
from .highcharts.highcharts import Highchart
126
from .highmaps.highmaps import Highmap
137
from .highstock.highstock import Highstock
148

15-
from . import ipynb
9+
from . import ipynb

highcharts/highcharts/highcharts.py

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,4 @@
1-
#!/usr/bin/python
21
# -*- coding: utf-8 -*-
3-
"""
4-
Python-Highcharts is a Python wrapper for Highcharts graph library.
5-
For Highcharts Licencing Visit:
6-
http://shop.highsoft.com/highcharts.html
7-
Project location : xxxxx
8-
"""
92

103
from __future__ import unicode_literals, absolute_import
114
from future.standard_library import install_aliases

highcharts/highmaps/common.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
1-
#!/usr/bin/python
21
# -*- coding: UTF-8 -*-
3-
""" Python-Highcharts common.py
4-
Common Functions For Highcharts
2+
""" Python-Highmaps common.py
3+
Common Functions For Highmaps
54
"""
65
from past.builtins import basestring
76
import datetime, re

highcharts/highmaps/highmap_helper.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,6 @@
77
import urllib
88

99
import json, os, sys
10-
import pandas as pd
11-
import numpy as np
1210
import datetime, re
1311
from datetime import tzinfo
1412

highcharts/highmaps/highmaps.py

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,4 @@
1-
#!/usr/bin/python
21
# -*- coding: utf-8 -*-
3-
"""
4-
Python-Highmaps is a Python wrapper for Highmaps graph library.
5-
For Highcharts Licencing Visit:
6-
http://shop.highsoft.com/highcharts.html
7-
Project location : xxxxx
8-
"""
92

103
from __future__ import unicode_literals, absolute_import
114
from future.standard_library import install_aliases

highcharts/highstock/common.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
1-
#!/usr/bin/python
21
# -*- coding: UTF-8 -*-
3-
""" Python-Highcharts common.py
4-
Common Functions For Highcharts
2+
""" Python-Highstock common.py
3+
Common Functions For Highstock
54
"""
65
from past.builtins import basestring
76
import datetime, re

highcharts/highstock/highstock.py

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,4 @@
1-
#!/usr/bin/python
21
# -*- coding: utf-8 -*-
3-
"""
4-
Python-Highcharts is a Python wrapper for Highcharts graph library.
5-
For Highcharts Licencing Visit:
6-
http://shop.highsoft.com/highcharts.html
7-
Project location : xxxxx
8-
"""
92

103
from __future__ import unicode_literals, absolute_import
114
from future.standard_library import install_aliases

highcharts/highstock/highstock_helper.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,6 @@
77
import urllib
88

99
import json, os, sys
10-
import pandas as pd
11-
import numpy as np
1210
import datetime, re
1311
from datetime import tzinfo
1412

highcharts/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
version_info = (
22
"0",
33
"1",
4-
"0-dev"
4+
"0"
55
)
66

77
__version__ = '.'.join(map(str, version_info))

0 commit comments

Comments
 (0)