newsworthycharts 1.75.0__py3-none-any.whl → 1.76.1__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- newsworthycharts/__init__.py +1 -1
- newsworthycharts/chart.py +2 -1
- newsworthycharts/choroplethmap.py +2 -2
- newsworthycharts/lib/locator.py +3 -3
- newsworthycharts/serialchart.py +1 -1
- {newsworthycharts-1.75.0.dist-info → newsworthycharts-1.76.1.dist-info}/METADATA +22 -22
- {newsworthycharts-1.75.0.dist-info → newsworthycharts-1.76.1.dist-info}/RECORD +10 -10
- {newsworthycharts-1.75.0.dist-info → newsworthycharts-1.76.1.dist-info}/WHEEL +1 -1
- {newsworthycharts-1.75.0.dist-info/licenses → newsworthycharts-1.76.1.dist-info}/LICENSE.txt +0 -0
- {newsworthycharts-1.75.0.dist-info → newsworthycharts-1.76.1.dist-info}/top_level.txt +0 -0
newsworthycharts/__init__.py
CHANGED
newsworthycharts/chart.py
CHANGED
@@ -427,10 +427,11 @@ class Chart(object):
|
|
427
427
|
if self.interval == "weekly":
|
428
428
|
# We consider dates to be more informative than week numbers
|
429
429
|
def fmt(x, pos):
|
430
|
+
d = num2date(x).isoformat()[:10]
|
430
431
|
if pos > len(self.data.x_points):
|
431
432
|
return None
|
432
433
|
try:
|
433
|
-
return formatter.date(
|
434
|
+
return formatter.date(d, "d MMM")
|
434
435
|
except IndexError:
|
435
436
|
return None
|
436
437
|
# fmt = DateFormatter('%-d %b')
|
@@ -235,8 +235,8 @@ class ChoroplethMap(Map):
|
|
235
235
|
ax=axin,
|
236
236
|
**args,
|
237
237
|
)
|
238
|
-
|
239
|
-
for _line in
|
238
|
+
artist = self.ax.indicate_inset_zoom(axin)
|
239
|
+
for _line in artist.connectors:
|
240
240
|
_line.set_visible(False)
|
241
241
|
|
242
242
|
if len(patches):
|
newsworthycharts/lib/locator.py
CHANGED
@@ -75,13 +75,13 @@ def get_best_locator(delta, points, interval=None, max_ticks=None):
|
|
75
75
|
|
76
76
|
elif interval == "weekly":
|
77
77
|
# NB The threshold are not tested thoroughly. Consider adjusting.
|
78
|
-
if delta.days <=
|
78
|
+
if delta.days <= 9 * 7:
|
79
79
|
return WeekdayLocator(MO, interval=1)
|
80
80
|
|
81
|
-
elif delta.days <=
|
81
|
+
elif delta.days <= 18 * 7:
|
82
82
|
return WeekdayLocator(MO, interval=2)
|
83
83
|
|
84
|
-
elif delta.days <=
|
84
|
+
elif delta.days <= 27 * 7:
|
85
85
|
return WeekdayLocator(MO, interval=3)
|
86
86
|
|
87
87
|
else:
|
newsworthycharts/serialchart.py
CHANGED
@@ -1,39 +1,28 @@
|
|
1
|
-
Metadata-Version: 2.
|
1
|
+
Metadata-Version: 2.1
|
2
2
|
Name: newsworthycharts
|
3
|
-
Version: 1.
|
3
|
+
Version: 1.76.1
|
4
4
|
Summary: Matplotlib wrapper to create charts and publish them on Amazon S3
|
5
5
|
Home-page: https://github.com/jplusplus/newsworthycharts
|
6
|
-
Download-URL: https://github.com/jplusplus/newsworthycharts/archive/1.
|
6
|
+
Download-URL: https://github.com/jplusplus/newsworthycharts/archive/1.76.1.tar.gz
|
7
7
|
Author: Jens Finnäs and Leo Wallentin, J++ Stockholm
|
8
8
|
Author-email: stockholm@jplusplus.org
|
9
9
|
License: MIT
|
10
|
-
Requires-Python: >=3.
|
10
|
+
Requires-Python: >=3.10
|
11
11
|
Description-Content-Type: text/x-rst
|
12
12
|
License-File: LICENSE.txt
|
13
|
-
Requires-Dist: boto3>=1.26
|
14
|
-
Requires-Dist: matplotlib==3.10.3
|
15
|
-
Requires-Dist: langcodes>=3.3
|
16
13
|
Requires-Dist: Babel<3,>=2.14.0
|
14
|
+
Requires-Dist: Pillow==11.3.0
|
17
15
|
Requires-Dist: PyYAML>=3
|
18
16
|
Requires-Dist: adjustText==1.3.0
|
17
|
+
Requires-Dist: boto3>=1.26
|
18
|
+
Requires-Dist: geopandas==1.1.1
|
19
|
+
Requires-Dist: langcodes>=3.3
|
20
|
+
Requires-Dist: mapclassify==2.10.0
|
21
|
+
Requires-Dist: matplotlib-label-lines==0.5.1
|
22
|
+
Requires-Dist: matplotlib==3.10.3
|
19
23
|
Requires-Dist: numpy>2
|
20
24
|
Requires-Dist: python-dateutil<3,>=2
|
21
|
-
Requires-Dist: Pillow==11.2.1
|
22
25
|
Requires-Dist: requests>=2.22
|
23
|
-
Requires-Dist: matplotlib-label-lines==0.5.1
|
24
|
-
Requires-Dist: geopandas==1.1.0
|
25
|
-
Requires-Dist: mapclassify==2.8.1
|
26
|
-
Dynamic: author
|
27
|
-
Dynamic: author-email
|
28
|
-
Dynamic: description
|
29
|
-
Dynamic: description-content-type
|
30
|
-
Dynamic: download-url
|
31
|
-
Dynamic: home-page
|
32
|
-
Dynamic: license
|
33
|
-
Dynamic: license-file
|
34
|
-
Dynamic: requires-dist
|
35
|
-
Dynamic: requires-python
|
36
|
-
Dynamic: summary
|
37
26
|
|
38
27
|
This module contains methods for producing graphs and publishing them on Amazon S3, or in the location of your choice.
|
39
28
|
|
@@ -282,10 +271,21 @@ Roadmap
|
|
282
271
|
- Remove custom charts (add missing api interfaces to Chart class instead)
|
283
272
|
- Remove DataWrapper class (out-of-scope)
|
284
273
|
- Custom month locator with equal-width month bars
|
274
|
+
- TODO: avif support
|
285
275
|
|
286
276
|
Changelog
|
287
277
|
---------
|
288
278
|
|
279
|
+
- 1.76.1
|
280
|
+
|
281
|
+
- Fixed a bug where x axis labels would sometimes get mixed up in long weekly data series
|
282
|
+
|
283
|
+
- 1.76.0
|
284
|
+
|
285
|
+
- Pillow==11.3.0
|
286
|
+
- Minimum required Python version is now 3.10
|
287
|
+
- Minor fixes to weekly serial chart x axis
|
288
|
+
|
289
289
|
- 1.75.0
|
290
290
|
|
291
291
|
- geopandas==1.1.0
|
@@ -1,15 +1,15 @@
|
|
1
|
-
newsworthycharts/__init__.py,sha256=
|
1
|
+
newsworthycharts/__init__.py,sha256=LPW7UvPQBBiHwuKd504r3HoYS7hZsHT8FoxSZlyPa5g,1221
|
2
2
|
newsworthycharts/bubblemap.py,sha256=nkocWmpiFgfjEuJGAsthjY5X7Q56jXWsZHUGXw4PwgE,2587
|
3
3
|
newsworthycharts/categoricalchart.py,sha256=Vr-0yFms0hEVCeUa3vLt3FYBqpX4xLQ8YGPc4LGQN_A,18368
|
4
|
-
newsworthycharts/chart.py,sha256=
|
5
|
-
newsworthycharts/choroplethmap.py,sha256=
|
4
|
+
newsworthycharts/chart.py,sha256=j4iDVom87v8S8wxott-JtOLiZv0Rsm0GrYsa3Snlj9o,35472
|
5
|
+
newsworthycharts/choroplethmap.py,sha256=3ztB8C0Pm9yUvPucnsRgmdPmnlCxvkiB42JuSOJmWSk,9834
|
6
6
|
newsworthycharts/datawrapper.py,sha256=RRkAVTpfP4updKxUIBaSmKuBi2RUVPaBRF8HDQhlGGA,11250
|
7
7
|
newsworthycharts/map.py,sha256=tECE7bZhJnvJxFV2pSitDxaHrKOwjBjoSA15H-MdzeI,6123
|
8
8
|
newsworthycharts/rangeplot.py,sha256=NE1W9TnmlpK6T3RvBJOU3nd73EXqkj17OY9i5zlw_cQ,8366
|
9
9
|
newsworthycharts/rankchart.py,sha256=vMzNMVOv1jae6wuHC_riAdb1lm9oPltO3TT3YQpc0Oc,9376
|
10
10
|
newsworthycharts/scatterplot.py,sha256=weHubdMsDGaBTXejg2TqBNPTQ1K-QBpZqJiyQ8EOEc4,5084
|
11
11
|
newsworthycharts/seasonalchart.py,sha256=ttT8JpvWB3DL0EcTBQor_Uxlow_6tdcl7ibEmLCpUrQ,1982
|
12
|
-
newsworthycharts/serialchart.py,sha256=
|
12
|
+
newsworthycharts/serialchart.py,sha256=5tHj-UocgHRKKSwEclqcQjm9zPBlsOP_gt7D4O-gPns,32071
|
13
13
|
newsworthycharts/storage.py,sha256=myERhlpvXyExXxUByBq9eW1bWkCyfH9SwTZbsWSyy3Q,4301
|
14
14
|
newsworthycharts/stripechart.py,sha256=9B6PX2MyLuKNQ8W0OGdKbP0-U32kju0K_NHHwwz_J68,1547
|
15
15
|
newsworthycharts/custom/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -20,7 +20,7 @@ newsworthycharts/lib/colors.py,sha256=U04TDkvoMQkcldRFXfnwyLOTwq1SWW2se-Ad-DNcw9
|
|
20
20
|
newsworthycharts/lib/datalist.py,sha256=-LdGFE0SOvjLnIRZ6eoJoijDaG3SeUPNIDPBjbm5A2U,6433
|
21
21
|
newsworthycharts/lib/formatter.py,sha256=GNH43hE0bC17OgiV8LYH3YUrEhm7OJh9XzfSV4HVtHo,4838
|
22
22
|
newsworthycharts/lib/geography.py,sha256=K0_teFmuPJwXX7Py-amJB_1YY5_gL2kBYhz1LrRCyTg,584
|
23
|
-
newsworthycharts/lib/locator.py,sha256=
|
23
|
+
newsworthycharts/lib/locator.py,sha256=M0TsMWYQF9i5Rnw4Ortjyv6OltPjXDJifxR1NtEe-TY,3599
|
24
24
|
newsworthycharts/lib/mimetypes.py,sha256=bL9HtVWbn2Of39LcBt4u4yelkr4bGZiyebq3OfLnfFY,237
|
25
25
|
newsworthycharts/lib/utils.py,sha256=zk2hfbZluRcwwxa-N9LocP65HKiHmvgkBw9saAq1lgU,7403
|
26
26
|
newsworthycharts/maps/se-4.gpkg,sha256=oWw5j7FPVpI0ig67jNDim8qSn5SG8rcHp0014-uTKZM,290816
|
@@ -29,8 +29,8 @@ newsworthycharts/rc/newsworthy,sha256=yOIZvYS6PG1u19VMcdtfj9vbihKQsey5IprwqK59Kg
|
|
29
29
|
newsworthycharts/translations/datawrapper_regions.csv,sha256=fzZcQRX6RFMlNNP8mpgfYNdR3Y0QAlQxDXk8FXTaWWI,9214
|
30
30
|
newsworthycharts/translations/regions.py,sha256=Nv1McQjggD4S3JRu82rDMTG3pqUVR13E5-FBpSYbm98,239
|
31
31
|
newsworthycharts/translations/se_municipalities.csv,sha256=br_mm-IvzQtj_W55_ATREhJ97jWnCweBFlDAVY2EBxA,7098
|
32
|
-
newsworthycharts-1.
|
33
|
-
newsworthycharts-1.
|
34
|
-
newsworthycharts-1.
|
35
|
-
newsworthycharts-1.
|
36
|
-
newsworthycharts-1.
|
32
|
+
newsworthycharts-1.76.1.dist-info/LICENSE.txt,sha256=Sq6kGICrehbhC_FolNdXf0djKjTpv3YqjFCIYsxdQN4,1069
|
33
|
+
newsworthycharts-1.76.1.dist-info/METADATA,sha256=XRUhmqYRSPArtvHTKo8PJGvGHK4MrYPZlTsNzQ3XT5Q,35564
|
34
|
+
newsworthycharts-1.76.1.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
|
35
|
+
newsworthycharts-1.76.1.dist-info/top_level.txt,sha256=dn_kzIj8UgUCMsh1PHdVEQJHVGSsN7Z8YJF-8xXa8n0,17
|
36
|
+
newsworthycharts-1.76.1.dist-info/RECORD,,
|
{newsworthycharts-1.75.0.dist-info/licenses → newsworthycharts-1.76.1.dist-info}/LICENSE.txt
RENAMED
File without changes
|
File without changes
|