-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathImageCharts.py
599 lines (403 loc) · 22.8 KB
/
ImageCharts.py
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
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
# -*- coding: utf-8 -*-
# Compatible with Python 3.6+
from urllib.parse import urlencode, quote_plus
import hmac, hashlib, codecs, json
from base64 import b64encode
import requests
class ImageCharts:
"""A python client for image-charts.com, a web service that generates static charts."""
def __init__(self, options=None, previous=None) -> None:
"""Image-Charts constructor"""
if previous is None:
previous = {}
if options is None:
options = {}
self.protocol = options['protocol'] if 'protocol' in options else 'https'
self.host = options['host'] if 'host' in options else 'image-charts.com'
self.port = options['port'] if 'port' in options else 443
self.pathname = options['pathname'] if 'pathname' in options else '/chart'
self.timeout = options['timeout'] if 'timeout' in options else 5000
self.secret = options['secret'] if 'secret' in options else None
self.query = previous
self.request_headers = {}
self.response_headers = {}
def __clone(self, param: str, value :str):
add = {}
add[param] = value
return ImageCharts({
'protocol' : self.protocol,
'host' : self.host,
'port' : self.port,
'pathname' : self.pathname,
'timeout' : self.timeout,
'secret' : self.secret
}, {**self.query, **add})
def cht(self, value: str):
"""bvg= grouped bar chart, bvs= stacked bar chart, lc=line chart, ls=sparklines, p=pie chart. gv=graph viz
* Three-dimensional pie chart (p3) will be rendered in 2D, concentric pie chart are not supported.
* [Optional, line charts only] You can add :nda after the chart type in line charts to hide the default axes.
[Reference documentation]{@link https://documentation.image-charts.com/reference/chart-type/}
* @example
* const chart = ImageCharts().{param.name}('{doc(example)}')
* const chart = ImageCharts().{param.name}('{doc(example)}')
- value :str - Chart type
"""
return self.__clone('cht', value)
def chd(self, value: str):
"""chart data
[Reference documentation]{@link https://documentation.image-charts.com/reference/data-format/}
* @example
* const chart = ImageCharts().{param.name}('{doc(example)}')
* const chart = ImageCharts().{param.name}('{doc(example)}')
* const chart = ImageCharts().{param.name}('{doc(example)}')
* const chart = ImageCharts().{param.name}('{doc(example)}')
- value :str - chart data
"""
return self.__clone('chd', value)
def chds(self, value: str):
"""You can configure some charts to scale automatically to fit their data with chds=a. The chart will be scaled so that the largest value is at the top of the chart and the smallest (or zero, if all values are greater than zero) will be at the bottom. Otherwise the "≶series_1_min>,≶series_1_max>,...,≶series_n_min>,≶series_n_max>" format set one or more minimum and maximum permitted values for each data series, separated by commas. You must supply both a max and a min. If you supply fewer pairs than there are data series, the last pair is applied to all remaining data series. Note that this does not change the axis range; to change the axis range, you must set the chxr parameter. Valid values range from (+/-)9.999e(+/-)199. You can specify values in either standard or E notation.
[Reference documentation]{@link https://documentation.image-charts.com/reference/data-format/#text-format-with-custom-scaling}
* @example
* const chart = ImageCharts().{param.name}('{doc(example)}')
- value :str - data format with custom scaling
"""
return self.__clone('chds', value)
def choe(self, value: str):
"""How to encode the data in the QR code. 'UTF-8' is the default and only supported value. Contact our team if you wish to have support for Shift_JIS and/or ISO-8859-1.
[Reference documentation]{@link https://documentation.image-charts.com/qr-codes/#data-encoding}
* @example
* const chart = ImageCharts().{param.name}('{doc(example)}')
- value :str - QRCode data encoding
"""
return self.__clone('choe', value)
def chld(self, value: str):
"""QRCode error correction level and optional margin
[Reference documentation]{@link https://documentation.image-charts.com/qr-codes/#error-correction-level-and-margin}
* @example
* const chart = ImageCharts().{param.name}('{doc(example)}')
* const chart = ImageCharts().{param.name}('{doc(example)}')
* const chart = ImageCharts().{param.name}('{doc(example)}')
* const chart = ImageCharts().{param.name}('{doc(example)}')
@default '{param.default}'
- value :str - QRCode error correction level and optional margin
"""
return self.__clone('chld', value)
def chxr(self, value: str):
"""You can specify the range of values that appear on each axis independently, using the chxr parameter. Note that this does not change the scale of the chart elements (use chds for that), only the scale of the axis labels.
[Reference documentation]{@link https://documentation.image-charts.com/reference/chart-axis/#axis-range}
* @example
* const chart = ImageCharts().{param.name}('{doc(example)}')
* const chart = ImageCharts().{param.name}('{doc(example)}')
* const chart = ImageCharts().{param.name}('{doc(example)}')
- value :str - Axis data-range
"""
return self.__clone('chxr', value)
def chof(self, value: str):
"""Some clients like Flowdock/Facebook messenger and so on, needs an URL to ends with a valid image extension file to display the image, use this parameter at the end your URL to support them. Valid values are ".png", ".svg" and ".gif".
* Only QRCodes and GraphViz support svg output.
[Reference documentation]{@link https://documentation.image-charts.com/reference/output-format/}
* @example
* const chart = ImageCharts().{param.name}('{doc(example)}')
* const chart = ImageCharts().{param.name}('{doc(example)}')
* const chart = ImageCharts().{param.name}('{doc(example)}')
@default '{param.default}'
- value :str - Image output format
"""
return self.__clone('chof', value)
def chs(self, value: str):
"""Maximum chart size for all charts except maps is 998,001 pixels total (Google Image Charts was limited to 300,000), and maximum width or length is 999 pixels.
[Reference documentation]{@link https://documentation.image-charts.com/reference/chart-size/}
* @example
* const chart = ImageCharts().{param.name}('{doc(example)}')
- value :str - Chart size (<width>x<height>)
"""
return self.__clone('chs', value)
def chdl(self, value: str):
"""Format: &lt;data_series_1_label&gt;|...|&lt;data_series_n_label&gt;. The text for the legend entries. Each label applies to the corresponding series in the chd array. Use a + mark for a space. If you do not specify this parameter, the chart will not get a legend. There is no way to specify a line break in a label. The legend will typically expand to hold your legend text, and the chart area will shrink to accommodate the legend.
[Reference documentation]{@link https://documentation.image-charts.com/reference/legend-text-and-style/}
* @example
* const chart = ImageCharts().{param.name}('{doc(example)}')
- value :str - Text for each series, to display in the legend
"""
return self.__clone('chdl', value)
def chdls(self, value: str):
"""Specifies the color and font size of the legend text. <color>,<size>
[Reference documentation]{@link https://documentation.image-charts.com/reference/legend-text-and-style/}
* @example
* const chart = ImageCharts().{param.name}('{doc(example)}')
@default '{param.default}'
- value :str - Chart legend text and style
"""
return self.__clone('chdls', value)
def chg(self, value: str):
"""Solid or dotted grid lines
[Reference documentation]{@link https://documentation.image-charts.com/reference/grid-lines/}
* @example
* const chart = ImageCharts().{param.name}('{doc(example)}')
* const chart = ImageCharts().{param.name}('{doc(example)}')
* const chart = ImageCharts().{param.name}('{doc(example)}')
* const chart = ImageCharts().{param.name}('{doc(example)}')
- value :str - Solid or dotted grid lines
"""
return self.__clone('chg', value)
def chco(self, value: str):
"""You can specify the colors of a specific series using the chco parameter.
* Format should be &lt;series_2&gt;,...,&lt;series_m&gt;, with each color in RRGGBB format hexadecimal number.
* The exact syntax and meaning can vary by chart type; see your specific chart type for details.
* Each entry in this string is an RRGGBB[AA] format hexadecimal number.
* If there are more series or elements in the chart than colors specified in your string, the API typically cycles through element colors from the start of that series (for elements) or for series colors from the start of the series list.
* Again, see individual chart documentation for details.
[Reference documentation]{@link https://documentation.image-charts.com/bar-charts/#examples}
* @example
* const chart = ImageCharts().{param.name}('{doc(example)}')
* const chart = ImageCharts().{param.name}('{doc(example)}')
@default '{param.default}'
- value :str - series colors
"""
return self.__clone('chco', value)
def chtt(self, value: str):
"""chart title
[Reference documentation]{@link https://documentation.image-charts.com/reference/chart-title/}
* @example
* const chart = ImageCharts().{param.name}('{doc(example)}')
- value :str - chart title
"""
return self.__clone('chtt', value)
def chts(self, value: str):
"""Format should be "<color>,<font_size>[,<opt_alignment>,<opt_font_family>,<opt_font_style>]", opt_alignement is not supported
[Reference documentation]{@link https://documentation.image-charts.com/reference/chart-title/}
* @example
* const chart = ImageCharts().{param.name}('{doc(example)}')
- value :str - chart title colors and font size
"""
return self.__clone('chts', value)
def chxt(self, value: str):
"""Specify which axes you want (from: "x", "y", "t" and "r"). You can use several of them, separated by a coma; for example: "x,x,y,r". Order is important.
[Reference documentation]{@link https://documentation.image-charts.com/reference/chart-axis/#visible-axes}
* @example
* const chart = ImageCharts().{param.name}('{doc(example)}')
* const chart = ImageCharts().{param.name}('{doc(example)}')
* const chart = ImageCharts().{param.name}('{doc(example)}')
* const chart = ImageCharts().{param.name}('{doc(example)}')
- value :str - Display values on your axis lines or change which axes are shown
"""
return self.__clone('chxt', value)
def chxl(self, value: str):
"""Specify one parameter set for each axis that you want to label. Format "<axis_index>:|<label_1>|...|<label_n>|...|<axis_index>:|<label_1>|...|<label_n>". Separate multiple sets of labels using the pipe character ( | ).
[Reference documentation]{@link https://documentation.image-charts.com/reference/chart-axis/#custom-axis-labels}
* @example
* const chart = ImageCharts().{param.name}('{doc(example)}')
* const chart = ImageCharts().{param.name}('{doc(example)}')
- value :str - Custom string axis labels on any axis
"""
return self.__clone('chxl', value)
def chxs(self, value: str):
"""You can specify the range of values that appear on each axis independently, using the chxr parameter. Note that this does not change the scale of the chart elements (use chds for that), only the scale of the axis labels.
[Reference documentation]{@link https://documentation.image-charts.com/reference/chart-axis/#axis-label-styles}
* @example
* const chart = ImageCharts().{param.name}('{doc(example)}')
* const chart = ImageCharts().{param.name}('{doc(example)}')
* const chart = ImageCharts().{param.name}('{doc(example)}')
* const chart = ImageCharts().{param.name}('{doc(example)}')
* const chart = ImageCharts().{param.name}('{doc(example)}')
* const chart = ImageCharts().{param.name}('{doc(example)}')
- value :str - Font size, color for axis labels, both custom labels and default label values
"""
return self.__clone('chxs', value)
def chm(self, value: str):
"""
* format should be either:
* - line fills (fill the area below a data line with a solid color): chm=<b_or_B>,<color>,<start_line_index>,<end_line_index>,<0> |...| <b_or_B>,<color>,<start_line_index>,<end_line_index>,<0>
* - line marker (add a line that traces data in your chart): chm=D,<color>,<series_index>,<which_points>,<width>,<opt_z_order>
* - Text and Data Value Markers: chm=N<formatting_string>,<color>,<series_index>,<which_points>,<width>,<opt_z_order>,<font_family>,<font_style>
*
[Reference documentation]{@link https://documentation.image-charts.com/reference/compound-charts/}
* @example
- value :str - compound charts and line fills
"""
return self.__clone('chm', value)
def chls(self, value: str):
"""line thickness and solid/dashed style
[Reference documentation]{@link https://documentation.image-charts.com/line-charts/#line-styles}
* @example
* const chart = ImageCharts().{param.name}('{doc(example)}')
* const chart = ImageCharts().{param.name}('{doc(example)}')
- value :str - line thickness and solid/dashed style
"""
return self.__clone('chls', value)
def chl(self, value: str):
"""If specified it will override "chdl" values
[Reference documentation]{@link https://documentation.image-charts.com/reference/chart-label/}
* @example
* const chart = ImageCharts().{param.name}('{doc(example)}')
* const chart = ImageCharts().{param.name}('{doc(example)}')
- value :str - bar, pie slice, doughnut slice and polar slice chart labels
"""
return self.__clone('chl', value)
def chlps(self, value: str):
"""Position and style of labels on data
[Reference documentation]{@link https://documentation.image-charts.com/reference/chart-label/#positionning-and-formatting}
* @example
* const chart = ImageCharts().{param.name}('{doc(example)}')
* const chart = ImageCharts().{param.name}('{doc(example)}')
- value :str - Position and style of labels on data
"""
return self.__clone('chlps', value)
def chma(self, value: str):
"""chart margins
[Reference documentation]{@link https://documentation.image-charts.com/reference/chart-margin/}
* @example
* const chart = ImageCharts().{param.name}('{doc(example)}')
* const chart = ImageCharts().{param.name}('{doc(example)}')
- value :str - chart margins
"""
return self.__clone('chma', value)
def chdlp(self, value: str):
"""Position of the legend and order of the legend entries
[Reference documentation]{@link https://documentation.image-charts.com/reference/legend-text-and-style/}
* @example
@default '{param.default}'
- value :str - Position of the legend and order of the legend entries
"""
return self.__clone('chdlp', value)
def chf(self, value: str):
"""Background Fills
[Reference documentation]{@link https://documentation.image-charts.com/reference/background-fill/}
* @example
* const chart = ImageCharts().{param.name}('{doc(example)}')
@default '{param.default}'
- value :str - Background Fills
"""
return self.__clone('chf', value)
def chbr(self, value: str):
"""Bar corner radius. Display bars with rounded corner.
[Reference documentation]{@link https://documentation.image-charts.com/bar-charts/#rounded-bar}
* @example
* const chart = ImageCharts().{param.name}('{doc(example)}')
* const chart = ImageCharts().{param.name}('{doc(example)}')
- value :str - Bar corner radius. Display bars with rounded corner.
"""
return self.__clone('chbr', value)
def chan(self, value: str):
"""gif configuration
[Reference documentation]{@link https://documentation.image-charts.com/reference/animation/}
* @example
* const chart = ImageCharts().{param.name}('{doc(example)}')
* const chart = ImageCharts().{param.name}('{doc(example)}')
- value :str - gif configuration
"""
return self.__clone('chan', value)
def chli(self, value: str):
"""doughnut chart inside label
[Reference documentation]{@link https://documentation.image-charts.com/pie-charts/#inside-label}
* @example
* const chart = ImageCharts().{param.name}('{doc(example)}')
* const chart = ImageCharts().{param.name}('{doc(example)}')
- value :str - doughnut chart inside label
"""
return self.__clone('chli', value)
def icac(self, value: str):
"""image-charts enterprise `account_id`
[Reference documentation]{@link https://documentation.image-charts.com/enterprise/}
* @example
* const chart = ImageCharts().{param.name}('{doc(example)}')
- value :str - image-charts enterprise `account_id`
"""
return self.__clone('icac', value)
def ichm(self, value: str):
"""HMAC-SHA256 signature required to activate paid features
[Reference documentation]{@link https://documentation.image-charts.com/enterprise/}
* @example
* const chart = ImageCharts().{param.name}('{doc(example)}')
- value :str - HMAC-SHA256 signature required to activate paid features
"""
return self.__clone('ichm', value)
def icff(self, value: str):
"""How to use icff to define font family as Google Font : https://developers.google.com/fonts/docs/css2
[Reference documentation]{@link https://documentation.image-charts.com/reference/chart-font/}
* @example
* const chart = ImageCharts().{param.name}('{doc(example)}')
* const chart = ImageCharts().{param.name}('{doc(example)}')
* const chart = ImageCharts().{param.name}('{doc(example)}')
- value :str - Default font family for all text from Google Fonts. Use same syntax as Google Font CSS API
"""
return self.__clone('icff', value)
def icfs(self, value: str):
"""Default font style for all text
[Reference documentation]{@link https://documentation.image-charts.com/reference/chart-font/}
* @example
* const chart = ImageCharts().{param.name}('{doc(example)}')
* const chart = ImageCharts().{param.name}('{doc(example)}')
- value :str - Default font style for all text
"""
return self.__clone('icfs', value)
def iclocale(self, value: str):
"""localization (ISO 639-1)
[Reference documentation]{@link }
* @example
* const chart = ImageCharts().{param.name}('{doc(example)}')
- value :str - localization (ISO 639-1)
"""
return self.__clone('iclocale', value)
def icretina(self, value: str):
"""Retina is a marketing term coined by Apple that refers to devices and monitors that have a resolution and pixel density so high — roughly 300 or more pixels per inch – that a person is unable to discern the individual pixels at a normal viewing distance.
* In order to generate beautiful charts for these Retina displays, Image-Charts supports a retina mode that can be activated through the icretina=1 parameter
[Reference documentation]{@link https://documentation.image-charts.com/reference/retina/}
* @example
* const chart = ImageCharts().{param.name}('{doc(example)}')
- value :str - retina mode
"""
return self.__clone('icretina', value)
def icqrb(self, value: str):
"""Background color for QR Codes
[Reference documentation]{@link https://documentation.image-charts.com/qr-codes/#background-color}
* @example
* const chart = ImageCharts().{param.name}('{doc(example)}')
@default '{param.default}'
- value :str - Background color for QR Codes
"""
return self.__clone('icqrb', value)
def icqrf(self, value: str):
"""Foreground color for QR Codes
[Reference documentation]{@link https://documentation.image-charts.com/qr-codes/#foreground-color}
* @example
* const chart = ImageCharts().{param.name}('{doc(example)}')
@default '{param.default}'
- value :str - Foreground color for QR Codes
"""
return self.__clone('icqrf', value)
def to_url(self) -> str:
"""Get the full Image-Charts API url (signed and encoded if necessary)"""
def sign(query, secretKey):
return codecs.getencoder('hex')(hmac.new(secretKey.encode('utf-8'), query.encode('utf-8'), hashlib.sha256).digest())[0].decode('utf-8')
query_string = "&".join( [ param + '=' + (quote_plus(str(self.query[param]))) for param in self.query.keys() ] )
url = '{protocol}://{host}:{port}{pathname}?'.format(protocol=self.protocol, host=self.host, port=self.port, pathname=self.pathname) + query_string
if 'icac' in self.query and self.secret and len(self.secret) > 0:
url += '&ichm=' + sign(query_string, self.secret)
return url
def to_binary(self):
"""Yield the content of the chart image as bytes (blocking)"""
self.request_headers = {'user-agent': 'python-image-charts/latest' + (' ({icac})'.format(icac=self.query['icac']) if 'icac' in self.query and len(self.query['icac']) > 0 else '')}
response = requests.get(self.to_url(), timeout=self.timeout, headers=self.request_headers)
self.response_headers = response.headers;
if response.status_code >= 200 and response.status_code < 300:
return response.content
if 'x-ic-error-validation' not in self.response_headers or len(self.response_headers['x-ic-error-validation']) == 0:
raise Exception(self.response_headers['x-ic-error-code'])
validation_message = json.loads(self.response_headers['x-ic-error-validation'])
if not validation_message or len(validation_message) < 1:
raise Exception(self.response_headers['x-ic-error-code'])
raise Exception(validation_message[0]['message'])
def to_data_uri(self) -> str:
"""Do a blocking request to Image-Charts API with current configuration and a base64 encoded data URI
Return base64 data URI as str
"""
encoding = 'base64'
mimetype = 'image/gif' if 'chan' in self.query else 'image/png'
encoded = b64encode(self.to_binary()).decode("utf-8")
return 'data:{mimetype};{encoding},{encoded}'.format(mimetype=mimetype, encoding=encoding, encoded=encoded)
def to_file(self, path) -> str:
"""Do a blocking request to Image-Charts API with current configuration and a base64 encoded data URI (blocking)
"""
with open(path, 'wb') as f:
f.write(self.to_binary())