This file is indexed.

/usr/lib/python2.7/dist-packages/chartkick-0.5.0.egg-info/PKG-INFO is in python-chartkick 0.5.0-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
Metadata-Version: 1.1
Name: chartkick
Version: 0.5.0
Summary: Create beautiful Javascript charts with minimal code
Home-page: https://github.com/mher/chartkick.py
Author: Mher Movsisyan
Author-email: mher.movsisyan@gmail.com
License: MIT
Description: Chartkick.py
        ============
        
        .. image:: https://img.shields.io/pypi/v/chartkick.svg
            :target: https://pypi.python.org/pypi/chartkick
        
        .. image:: https://img.shields.io/pypi/dm/chartkick.svg
                :target: https://pypi.python.org/pypi/chartkick
        
        .. image:: https://travis-ci.org/mher/chartkick.py.svg?branch=master
                :target: https://travis-ci.org/mher/chartkick.py
        
        Create beautiful Javascript charts with minimal code. Demo_!
        
        Supports `Chart.js`_, `Google Charts`_, and Highcharts_
        
        Works with Django, Flask/Jinja2 and most browsers (including IE 6).
        Also available in Ruby_ and pure JavaScript_
        
        .. _Chartkick: http://chartkick.com
        .. _Chart.js: http://www.chartjs.org
        .. _Google Charts: https://developers.google.com/chart/
        .. _Highcharts: http://highcharts.com
        .. _Demo: http://mher.github.io/chartkick.py/
        .. _Ruby: http://chartkick.com
        .. _Javascript: https://github.com/ankane/chartkick.js
        
        Usage
        -----
        
        Line chart: ::
        
            {% line_chart data %}
        
        Pie chart: ::
        
            {% pie_chart data with id='chart-1' height='400px' %}
        
        Column chart: ::
        
            {% column_chart data with min=400 max=1000 %}
        
        Bar chart: ::
        
            {% bar_chart data %}
        
        Area chart: ::
        
            {% area_chart data %}
        
        Data
        ----
        
        Data can be a dictionary or a list: ::
        
            {'Chrome': 52.9, 'Opera': 1.6, 'Firefox': 27.7}
        
            [['Chrome', 52.9], ['Firefox', 27.7], ['Opera', 1.6]]
        
        For multiple series: ::
        
            [{'data': [['2013-04-01 00:00:00 UTC', 52.9], ['2013-05-01 00:00:00 UTC', 50.7]], 'name': 'Chrome'},
             {'data': [['2013-04-01 00:00:00 UTC', 27.7], ['2013-05-01 00:00:00 UTC', 25.9]], 'name': 'Firefox'}]
        
        Options
        -------
        
        Charting library options can be passed through the *library* variable: ::
        
            {% column_chart data with library={"title":"Super chart","width":"400px"} %}
        
        .. Note:: Google Charts and Highcharts have different APIs. You may need
                  to change the value of `library` when you switch from one
                  library to another.
        
        Or using *chartkick.json* file. Chartkick tries to locate *chartkick.json*
        file in template path and match options by id.
        
        Installation
        ------------
        
        Install chartkick: ::
        
            $ pip install chartkick
        
        - Django: Add chartkick to *INSTALLED_APPS* and *STATICFILES_DIRS*: ::
        
            INSTALLED_APPS = (
                'chartkick',
            )
        
            import chartkick
            STATICFILES_DIRS = (
                chartkick.js(),
            )
        
        - Flask: Add chartkick to *jinja_env* and *static_folder*: ::
        
            ck = Blueprint('ck_page', __name__, static_folder=chartkick.js(), static_url_path='/static')
            app.register_blueprint(ck, url_prefix='/ck')
            app.jinja_env.add_extension("chartkick.ext.charts")
        
        Load JS scripts:
        
        - Chart.js ::
        
            <script src="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/2.1.4/Chart.bundle.min.js"></script>
            <script src="ck/static/chartkick.js"></script>
        
        - Google Charts ::
        
            <script src="http://www.google.com/jsapi"></script>
            <script src="ck/static/chartkick.js"></script>
        
        - Highcharts ::
        
            <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
            <script src="http://code.highcharts.com/highcharts.js"></script>
            <script src="ck/static/chartkick.js"></script>
        
        
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Topic :: Software Development :: Libraries
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Operating System :: OS Independent