__init__.py 1.1 KB

1234567891011121314151617181920212223242526272829303132
  1. #!/usr/bin/python
  2. # -*- coding: utf-8 -*-
  3. """
  4. Python-nvd3 is a Python wrapper for NVD3 graph library.
  5. NVD3 is an attempt to build re-usable charts and chart components
  6. for d3.js without taking away the power that d3.js gives you.
  7. Project location : https://github.com/areski/python-nvd3
  8. """
  9. __version__ = '0.16.0'
  10. __all__ = ['lineChart', 'pieChart', 'lineWithFocusChart',
  11. 'stackedAreaChart', 'multiBarHorizontalChart',
  12. 'linePlusBarChart', 'cumulativeLineChart',
  13. 'scatterChart', 'discreteBarChart', 'multiBarChart',
  14. 'bulletChart', 'multiChart']
  15. from .lineChart import lineChart
  16. from .pieChart import pieChart
  17. from .lineWithFocusChart import lineWithFocusChart
  18. from .stackedAreaChart import stackedAreaChart
  19. from .multiBarHorizontalChart import multiBarHorizontalChart
  20. from .linePlusBarChart import linePlusBarChart
  21. from .cumulativeLineChart import cumulativeLineChart
  22. from .scatterChart import scatterChart
  23. from .discreteBarChart import discreteBarChart
  24. from .multiBarChart import multiBarChart
  25. from .bulletChart import bulletChart
  26. from .multiChart import multiChart
  27. from . import ipynb