datetick 0.9.0__tar.gz

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.
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026- Bob Weigel, Brendan Gallagher
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -0,0 +1,216 @@
1
+ Metadata-Version: 2.4
2
+ Name: datetick
3
+ Version: 0.9.0
4
+ Summary: Sensible date tick locator for matplotlib
5
+ Author: Brendan Gallagher
6
+ Author-email: Bob Weigel <rweigel@gmu.edu>
7
+ License-Expression: MIT
8
+ Project-URL: Homepage, http://pypi.python.org/pypi/datetick/
9
+ Requires-Python: >=3.7
10
+ Description-Content-Type: text/markdown
11
+ License-File: LICENSE.txt
12
+ Requires-Dist: matplotlib
13
+ Requires-Dist: numpy
14
+ Requires-Dist: python-dateutil
15
+ Dynamic: license-file
16
+
17
+ # datetick
18
+
19
+ Sensible numeric time and date tick labels for Matplotlib
20
+
21
+ # Motivation
22
+
23
+ Matplotlib's default time tick labels are often poor, and adjusting them requires using [locators and formatters](https://matplotlib.org/stable/api/ticker_api.html) on an ad-hoc basis. In addition, the interfaces for locators and formatters complex and non-intuitive and require study and experimentation.
24
+
25
+ `datetick()` contains logic for locators and formatters that apply to plots with arbitrary time ranges. One only needs to add the command `datetick()` after the usual Matplotlib `plt.plot(...)` command to have sensible and useable time tick labels.
26
+
27
+ # Usage
28
+
29
+ ```
30
+ import datetime as dt
31
+ import matplotlib.pyplot as plt
32
+ from datetick import datetick
33
+
34
+ dt1 = dt.datetime(2011, 1, 2)
35
+ dt2 = dt1 + dt.timedelta(days=1, hours=1, minutes=1)
36
+
37
+ plt.plot([dt1, dt2], [0.0,1.0])
38
+ datetick()
39
+ plt.show()
40
+ # or
41
+ # datetick('x') (use 'y' if y variable is a time)
42
+ # or
43
+ # datetick('x', axes=plt.gca())
44
+ # or
45
+ # fig, axes = plt.subplots(2)
46
+ # plt.plot([dt1, dt2], [0.0, 1.0])
47
+ # datetick('x', axes=axes[0])
48
+ ```
49
+
50
+ # Comparison to default Matplotlib
51
+
52
+ ![test/mpl-3.10.9/20010101000000.0-20010101000000.1.svg](test/mpl-3.10.9/20010101000000.0-20010101000000.1.svg)
53
+
54
+ ![test/mpl-3.10.9/20010101000000.0-20010101000000.2.svg](test/mpl-3.10.9/20010101000000.0-20010101000000.2.svg)
55
+
56
+ ![test/mpl-3.10.9/20010101000000.0-20010101000000.5.svg](test/mpl-3.10.9/20010101000000.0-20010101000000.5.svg)
57
+
58
+ ![test/mpl-3.10.9/20010101000000.01-20010101000000.99.svg](test/mpl-3.10.9/20010101000000.01-20010101000000.99.svg)
59
+
60
+ ![test/mpl-3.10.9/20010101000059.8-20010101000100.3.svg](test/mpl-3.10.9/20010101000059.8-20010101000100.3.svg)
61
+
62
+ ![test/mpl-3.10.9/20010101005959.8-20010101010003.0.svg](test/mpl-3.10.9/20010101005959.8-20010101010003.0.svg)
63
+
64
+ ![test/mpl-3.10.9/20010101235959.8-20010102000003.0.svg](test/mpl-3.10.9/20010101235959.8-20010102000003.0.svg)
65
+
66
+ ![test/mpl-3.10.9/20010101000000-20010101000001.svg](test/mpl-3.10.9/20010101000000-20010101000001.svg)
67
+
68
+ ![test/mpl-3.10.9/20010101000000-20010101000005.svg](test/mpl-3.10.9/20010101000000-20010101000005.svg)
69
+
70
+ ![test/mpl-3.10.9/20010101000059-20010101000103.svg](test/mpl-3.10.9/20010101000059-20010101000103.svg)
71
+
72
+ ![test/mpl-3.10.9/20010101005958-20010101010003.svg](test/mpl-3.10.9/20010101005958-20010101010003.svg)
73
+
74
+ ![test/mpl-3.10.9/20010101005959-20010101010004.svg](test/mpl-3.10.9/20010101005959-20010101010004.svg)
75
+
76
+ ![test/mpl-3.10.9/20010101235958-20010102000003.svg](test/mpl-3.10.9/20010101235958-20010102000003.svg)
77
+
78
+ ![test/mpl-3.10.9/20010101000000-20010101000007.svg](test/mpl-3.10.9/20010101000000-20010101000007.svg)
79
+
80
+ ![test/mpl-3.10.9/20010101000000-20010101000009.svg](test/mpl-3.10.9/20010101000000-20010101000009.svg)
81
+
82
+ ![test/mpl-3.10.9/20010101000001-20010101000006.svg](test/mpl-3.10.9/20010101000001-20010101000006.svg)
83
+
84
+ ![test/mpl-3.10.9/20010101235958-20010102000005.svg](test/mpl-3.10.9/20010101235958-20010102000005.svg)
85
+
86
+ ![test/mpl-3.10.9/20010101235959-20010102000005.svg](test/mpl-3.10.9/20010101235959-20010102000005.svg)
87
+
88
+ ![test/mpl-3.10.9/20010101005958-20010101010005.svg](test/mpl-3.10.9/20010101005958-20010101010005.svg)
89
+
90
+ ![test/mpl-3.10.9/20010101005958-20010101010007.svg](test/mpl-3.10.9/20010101005958-20010101010007.svg)
91
+
92
+ ![test/mpl-3.10.9/20010101005958-20010101010003_2.svg](test/mpl-3.10.9/20010101005958-20010101010003_2.svg)
93
+
94
+ ![test/mpl-3.10.9/20010101235956-20010102000010.svg](test/mpl-3.10.9/20010101235956-20010102000010.svg)
95
+
96
+ ![test/mpl-3.10.9/20010101235958-20010102000010.svg](test/mpl-3.10.9/20010101235958-20010102000010.svg)
97
+
98
+ ![test/mpl-3.10.9/20010101005956-20010101010010.svg](test/mpl-3.10.9/20010101005956-20010101010010.svg)
99
+
100
+ ![test/mpl-3.10.9/20010101005956-20010101010015.svg](test/mpl-3.10.9/20010101005956-20010101010015.svg)
101
+
102
+ ![test/mpl-3.10.9/20010101005956-20010101010006.svg](test/mpl-3.10.9/20010101005956-20010101010006.svg)
103
+
104
+ ![test/mpl-3.10.9/20010101000000-20010101000021.svg](test/mpl-3.10.9/20010101000000-20010101000021.svg)
105
+
106
+ ![test/mpl-3.10.9/20010101000000-20010101060000.svg](test/mpl-3.10.9/20010101000000-20010101060000.svg)
107
+
108
+ ![test/mpl-3.10.9/20010101000000-20010101090000.svg](test/mpl-3.10.9/20010101000000-20010101090000.svg)
109
+
110
+ ![test/mpl-3.10.9/20010101000000-20010101110000.svg](test/mpl-3.10.9/20010101000000-20010101110000.svg)
111
+
112
+ ![test/mpl-3.10.9/20010101000000-20010101110000_2.svg](test/mpl-3.10.9/20010101000000-20010101110000_2.svg)
113
+
114
+ ![test/mpl-3.10.9/20010101005958-20010101010028.svg](test/mpl-3.10.9/20010101005958-20010101010028.svg)
115
+
116
+ ![test/mpl-3.10.9/20010101000058-20010101000118.svg](test/mpl-3.10.9/20010101000058-20010101000118.svg)
117
+
118
+ ![test/mpl-3.10.9/20010101000000-20010101180000.svg](test/mpl-3.10.9/20010101000000-20010101180000.svg)
119
+
120
+ ![test/mpl-3.10.9/20010101000000-20010101120000.svg](test/mpl-3.10.9/20010101000000-20010101120000.svg)
121
+
122
+ ![test/mpl-3.10.9/20010101000000-20010101230000.svg](test/mpl-3.10.9/20010101000000-20010101230000.svg)
123
+
124
+ ![test/mpl-3.10.9/20010101020000-20010102010000.svg](test/mpl-3.10.9/20010101020000-20010102010000.svg)
125
+
126
+ ![test/mpl-3.10.9/20010101000000-20010102010000.svg](test/mpl-3.10.9/20010101000000-20010102010000.svg)
127
+
128
+ ![test/mpl-3.10.9/20010101000000-20010102230000.svg](test/mpl-3.10.9/20010101000000-20010102230000.svg)
129
+
130
+ ![test/mpl-3.10.9/20010101000000-20010102230000_2.svg](test/mpl-3.10.9/20010101000000-20010102230000_2.svg)
131
+
132
+ ![test/mpl-3.10.9/20010101000000-20010102230000_3.svg](test/mpl-3.10.9/20010101000000-20010102230000_3.svg)
133
+
134
+ ![test/mpl-3.10.9/20010101000000-20010102230000_4.svg](test/mpl-3.10.9/20010101000000-20010102230000_4.svg)
135
+
136
+ ![test/mpl-3.10.9/20010101060000-20010102070000.svg](test/mpl-3.10.9/20010101060000-20010102070000.svg)
137
+
138
+ ![test/mpl-3.10.9/20010101003000-20010102010000.svg](test/mpl-3.10.9/20010101003000-20010102010000.svg)
139
+
140
+ ![test/mpl-3.10.9/20010101000000-20010103000000.svg](test/mpl-3.10.9/20010101000000-20010103000000.svg)
141
+
142
+ ![test/mpl-3.10.9/20010101000000-20010103123000.svg](test/mpl-3.10.9/20010101000000-20010103123000.svg)
143
+
144
+ ![test/mpl-3.10.9/20010101000000-20010103235959.svg](test/mpl-3.10.9/20010101000000-20010103235959.svg)
145
+
146
+ ![test/mpl-3.10.9/20010101000000-20010105000000.svg](test/mpl-3.10.9/20010101000000-20010105000000.svg)
147
+
148
+ ![test/mpl-3.10.9/20010101000000-20010105000000_2.svg](test/mpl-3.10.9/20010101000000-20010105000000_2.svg)
149
+
150
+ ![test/mpl-3.10.9/20010130000000-20010201230000.svg](test/mpl-3.10.9/20010130000000-20010201230000.svg)
151
+
152
+ ![test/mpl-3.10.9/20011230000000-20020101230000.svg](test/mpl-3.10.9/20011230000000-20020101230000.svg)
153
+
154
+ ![test/mpl-3.10.9/20010101000000-20010109000000.svg](test/mpl-3.10.9/20010101000000-20010109000000.svg)
155
+
156
+ ![test/mpl-3.10.9/20010101000000-20010116230000.svg](test/mpl-3.10.9/20010101000000-20010116230000.svg)
157
+
158
+ ![test/mpl-3.10.9/20010130000000-20010204230000.svg](test/mpl-3.10.9/20010130000000-20010204230000.svg)
159
+
160
+ ![test/mpl-3.10.9/20011230000000-20020104230000.svg](test/mpl-3.10.9/20011230000000-20020104230000.svg)
161
+
162
+ ![test/mpl-3.10.9/20010101000000-20010131000000.svg](test/mpl-3.10.9/20010101000000-20010131000000.svg)
163
+
164
+ ![test/mpl-3.10.9/20010101000000-20010116230000_2.svg](test/mpl-3.10.9/20010101000000-20010116230000_2.svg)
165
+
166
+ ![test/mpl-3.10.9/20010130000000-20010215230000.svg](test/mpl-3.10.9/20010130000000-20010215230000.svg)
167
+
168
+ ![test/mpl-3.10.9/20011230000000-20010115230000.svg](test/mpl-3.10.9/20011230000000-20010115230000.svg)
169
+
170
+ ![test/mpl-3.10.9/20010101000000-20010202000000.svg](test/mpl-3.10.9/20010101000000-20010202000000.svg)
171
+
172
+ ![test/mpl-3.10.9/20010101000000-20010227230000.svg](test/mpl-3.10.9/20010101000000-20010227230000.svg)
173
+
174
+ ![test/mpl-3.10.9/20010115000000-20010216230000.svg](test/mpl-3.10.9/20010115000000-20010216230000.svg)
175
+
176
+ ![test/mpl-3.10.9/20011231000000-20020226230000.svg](test/mpl-3.10.9/20011231000000-20020226230000.svg)
177
+
178
+ ![test/mpl-3.10.9/20010101000000-20010502000000.svg](test/mpl-3.10.9/20010101000000-20010502000000.svg)
179
+
180
+ ![test/mpl-3.10.9/20010101000000-20010227230000_2.svg](test/mpl-3.10.9/20010101000000-20010227230000_2.svg)
181
+
182
+ ![test/mpl-3.10.9/20011231000000-20020226230000_2.svg](test/mpl-3.10.9/20011231000000-20020226230000_2.svg)
183
+
184
+ ![test/mpl-3.10.9/20010101000000-20010702000000.svg](test/mpl-3.10.9/20010101000000-20010702000000.svg)
185
+
186
+ ![test/mpl-3.10.9/20010101000000-20011231000000.svg](test/mpl-3.10.9/20010101000000-20011231000000.svg)
187
+
188
+ ![test/mpl-3.10.9/20010212000000-20020131000000.svg](test/mpl-3.10.9/20010212000000-20020131000000.svg)
189
+
190
+ ![test/mpl-3.10.9/20010101000000-20020103000000.svg](test/mpl-3.10.9/20010101000000-20020103000000.svg)
191
+
192
+ ![test/mpl-3.10.9/20010101000000-20021231000000.svg](test/mpl-3.10.9/20010101000000-20021231000000.svg)
193
+
194
+ ![test/mpl-3.10.9/20010401000000-20020430000000.svg](test/mpl-3.10.9/20010401000000-20020430000000.svg)
195
+
196
+ ![test/mpl-3.10.9/20011001000000-20031004000000.svg](test/mpl-3.10.9/20011001000000-20031004000000.svg)
197
+
198
+ ![test/mpl-3.10.9/20010101000000-20081231000000.svg](test/mpl-3.10.9/20010101000000-20081231000000.svg)
199
+
200
+ ![test/mpl-3.10.9/20010101000000-20030104000000.svg](test/mpl-3.10.9/20010101000000-20030104000000.svg)
201
+
202
+ ![test/mpl-3.10.9/20010101000000-20090104000000.svg](test/mpl-3.10.9/20010101000000-20090104000000.svg)
203
+
204
+ ![test/mpl-3.10.9/20010101000000-20120104000000.svg](test/mpl-3.10.9/20010101000000-20120104000000.svg)
205
+
206
+ ![test/mpl-3.10.9/20000101000000-20170104000000.svg](test/mpl-3.10.9/20000101000000-20170104000000.svg)
207
+
208
+ ![test/mpl-3.10.9/20010101000000-20180104000000.svg](test/mpl-3.10.9/20010101000000-20180104000000.svg)
209
+
210
+ ![test/mpl-3.10.9/20020101000000-20190104000000.svg](test/mpl-3.10.9/20020101000000-20190104000000.svg)
211
+
212
+ ![test/mpl-3.10.9/20030101000000-20200104000000.svg](test/mpl-3.10.9/20030101000000-20200104000000.svg)
213
+
214
+ ![test/mpl-3.10.9/20040101000000-20300104000000.svg](test/mpl-3.10.9/20040101000000-20300104000000.svg)
215
+
216
+ ![test/mpl-3.10.9/19500101000000-20120104000000.svg](test/mpl-3.10.9/19500101000000-20120104000000.svg)
@@ -0,0 +1,200 @@
1
+ # datetick
2
+
3
+ Sensible numeric time and date tick labels for Matplotlib
4
+
5
+ # Motivation
6
+
7
+ Matplotlib's default time tick labels are often poor, and adjusting them requires using [locators and formatters](https://matplotlib.org/stable/api/ticker_api.html) on an ad-hoc basis. In addition, the interfaces for locators and formatters complex and non-intuitive and require study and experimentation.
8
+
9
+ `datetick()` contains logic for locators and formatters that apply to plots with arbitrary time ranges. One only needs to add the command `datetick()` after the usual Matplotlib `plt.plot(...)` command to have sensible and useable time tick labels.
10
+
11
+ # Usage
12
+
13
+ ```
14
+ import datetime as dt
15
+ import matplotlib.pyplot as plt
16
+ from datetick import datetick
17
+
18
+ dt1 = dt.datetime(2011, 1, 2)
19
+ dt2 = dt1 + dt.timedelta(days=1, hours=1, minutes=1)
20
+
21
+ plt.plot([dt1, dt2], [0.0,1.0])
22
+ datetick()
23
+ plt.show()
24
+ # or
25
+ # datetick('x') (use 'y' if y variable is a time)
26
+ # or
27
+ # datetick('x', axes=plt.gca())
28
+ # or
29
+ # fig, axes = plt.subplots(2)
30
+ # plt.plot([dt1, dt2], [0.0, 1.0])
31
+ # datetick('x', axes=axes[0])
32
+ ```
33
+
34
+ # Comparison to default Matplotlib
35
+
36
+ ![test/mpl-3.10.9/20010101000000.0-20010101000000.1.svg](test/mpl-3.10.9/20010101000000.0-20010101000000.1.svg)
37
+
38
+ ![test/mpl-3.10.9/20010101000000.0-20010101000000.2.svg](test/mpl-3.10.9/20010101000000.0-20010101000000.2.svg)
39
+
40
+ ![test/mpl-3.10.9/20010101000000.0-20010101000000.5.svg](test/mpl-3.10.9/20010101000000.0-20010101000000.5.svg)
41
+
42
+ ![test/mpl-3.10.9/20010101000000.01-20010101000000.99.svg](test/mpl-3.10.9/20010101000000.01-20010101000000.99.svg)
43
+
44
+ ![test/mpl-3.10.9/20010101000059.8-20010101000100.3.svg](test/mpl-3.10.9/20010101000059.8-20010101000100.3.svg)
45
+
46
+ ![test/mpl-3.10.9/20010101005959.8-20010101010003.0.svg](test/mpl-3.10.9/20010101005959.8-20010101010003.0.svg)
47
+
48
+ ![test/mpl-3.10.9/20010101235959.8-20010102000003.0.svg](test/mpl-3.10.9/20010101235959.8-20010102000003.0.svg)
49
+
50
+ ![test/mpl-3.10.9/20010101000000-20010101000001.svg](test/mpl-3.10.9/20010101000000-20010101000001.svg)
51
+
52
+ ![test/mpl-3.10.9/20010101000000-20010101000005.svg](test/mpl-3.10.9/20010101000000-20010101000005.svg)
53
+
54
+ ![test/mpl-3.10.9/20010101000059-20010101000103.svg](test/mpl-3.10.9/20010101000059-20010101000103.svg)
55
+
56
+ ![test/mpl-3.10.9/20010101005958-20010101010003.svg](test/mpl-3.10.9/20010101005958-20010101010003.svg)
57
+
58
+ ![test/mpl-3.10.9/20010101005959-20010101010004.svg](test/mpl-3.10.9/20010101005959-20010101010004.svg)
59
+
60
+ ![test/mpl-3.10.9/20010101235958-20010102000003.svg](test/mpl-3.10.9/20010101235958-20010102000003.svg)
61
+
62
+ ![test/mpl-3.10.9/20010101000000-20010101000007.svg](test/mpl-3.10.9/20010101000000-20010101000007.svg)
63
+
64
+ ![test/mpl-3.10.9/20010101000000-20010101000009.svg](test/mpl-3.10.9/20010101000000-20010101000009.svg)
65
+
66
+ ![test/mpl-3.10.9/20010101000001-20010101000006.svg](test/mpl-3.10.9/20010101000001-20010101000006.svg)
67
+
68
+ ![test/mpl-3.10.9/20010101235958-20010102000005.svg](test/mpl-3.10.9/20010101235958-20010102000005.svg)
69
+
70
+ ![test/mpl-3.10.9/20010101235959-20010102000005.svg](test/mpl-3.10.9/20010101235959-20010102000005.svg)
71
+
72
+ ![test/mpl-3.10.9/20010101005958-20010101010005.svg](test/mpl-3.10.9/20010101005958-20010101010005.svg)
73
+
74
+ ![test/mpl-3.10.9/20010101005958-20010101010007.svg](test/mpl-3.10.9/20010101005958-20010101010007.svg)
75
+
76
+ ![test/mpl-3.10.9/20010101005958-20010101010003_2.svg](test/mpl-3.10.9/20010101005958-20010101010003_2.svg)
77
+
78
+ ![test/mpl-3.10.9/20010101235956-20010102000010.svg](test/mpl-3.10.9/20010101235956-20010102000010.svg)
79
+
80
+ ![test/mpl-3.10.9/20010101235958-20010102000010.svg](test/mpl-3.10.9/20010101235958-20010102000010.svg)
81
+
82
+ ![test/mpl-3.10.9/20010101005956-20010101010010.svg](test/mpl-3.10.9/20010101005956-20010101010010.svg)
83
+
84
+ ![test/mpl-3.10.9/20010101005956-20010101010015.svg](test/mpl-3.10.9/20010101005956-20010101010015.svg)
85
+
86
+ ![test/mpl-3.10.9/20010101005956-20010101010006.svg](test/mpl-3.10.9/20010101005956-20010101010006.svg)
87
+
88
+ ![test/mpl-3.10.9/20010101000000-20010101000021.svg](test/mpl-3.10.9/20010101000000-20010101000021.svg)
89
+
90
+ ![test/mpl-3.10.9/20010101000000-20010101060000.svg](test/mpl-3.10.9/20010101000000-20010101060000.svg)
91
+
92
+ ![test/mpl-3.10.9/20010101000000-20010101090000.svg](test/mpl-3.10.9/20010101000000-20010101090000.svg)
93
+
94
+ ![test/mpl-3.10.9/20010101000000-20010101110000.svg](test/mpl-3.10.9/20010101000000-20010101110000.svg)
95
+
96
+ ![test/mpl-3.10.9/20010101000000-20010101110000_2.svg](test/mpl-3.10.9/20010101000000-20010101110000_2.svg)
97
+
98
+ ![test/mpl-3.10.9/20010101005958-20010101010028.svg](test/mpl-3.10.9/20010101005958-20010101010028.svg)
99
+
100
+ ![test/mpl-3.10.9/20010101000058-20010101000118.svg](test/mpl-3.10.9/20010101000058-20010101000118.svg)
101
+
102
+ ![test/mpl-3.10.9/20010101000000-20010101180000.svg](test/mpl-3.10.9/20010101000000-20010101180000.svg)
103
+
104
+ ![test/mpl-3.10.9/20010101000000-20010101120000.svg](test/mpl-3.10.9/20010101000000-20010101120000.svg)
105
+
106
+ ![test/mpl-3.10.9/20010101000000-20010101230000.svg](test/mpl-3.10.9/20010101000000-20010101230000.svg)
107
+
108
+ ![test/mpl-3.10.9/20010101020000-20010102010000.svg](test/mpl-3.10.9/20010101020000-20010102010000.svg)
109
+
110
+ ![test/mpl-3.10.9/20010101000000-20010102010000.svg](test/mpl-3.10.9/20010101000000-20010102010000.svg)
111
+
112
+ ![test/mpl-3.10.9/20010101000000-20010102230000.svg](test/mpl-3.10.9/20010101000000-20010102230000.svg)
113
+
114
+ ![test/mpl-3.10.9/20010101000000-20010102230000_2.svg](test/mpl-3.10.9/20010101000000-20010102230000_2.svg)
115
+
116
+ ![test/mpl-3.10.9/20010101000000-20010102230000_3.svg](test/mpl-3.10.9/20010101000000-20010102230000_3.svg)
117
+
118
+ ![test/mpl-3.10.9/20010101000000-20010102230000_4.svg](test/mpl-3.10.9/20010101000000-20010102230000_4.svg)
119
+
120
+ ![test/mpl-3.10.9/20010101060000-20010102070000.svg](test/mpl-3.10.9/20010101060000-20010102070000.svg)
121
+
122
+ ![test/mpl-3.10.9/20010101003000-20010102010000.svg](test/mpl-3.10.9/20010101003000-20010102010000.svg)
123
+
124
+ ![test/mpl-3.10.9/20010101000000-20010103000000.svg](test/mpl-3.10.9/20010101000000-20010103000000.svg)
125
+
126
+ ![test/mpl-3.10.9/20010101000000-20010103123000.svg](test/mpl-3.10.9/20010101000000-20010103123000.svg)
127
+
128
+ ![test/mpl-3.10.9/20010101000000-20010103235959.svg](test/mpl-3.10.9/20010101000000-20010103235959.svg)
129
+
130
+ ![test/mpl-3.10.9/20010101000000-20010105000000.svg](test/mpl-3.10.9/20010101000000-20010105000000.svg)
131
+
132
+ ![test/mpl-3.10.9/20010101000000-20010105000000_2.svg](test/mpl-3.10.9/20010101000000-20010105000000_2.svg)
133
+
134
+ ![test/mpl-3.10.9/20010130000000-20010201230000.svg](test/mpl-3.10.9/20010130000000-20010201230000.svg)
135
+
136
+ ![test/mpl-3.10.9/20011230000000-20020101230000.svg](test/mpl-3.10.9/20011230000000-20020101230000.svg)
137
+
138
+ ![test/mpl-3.10.9/20010101000000-20010109000000.svg](test/mpl-3.10.9/20010101000000-20010109000000.svg)
139
+
140
+ ![test/mpl-3.10.9/20010101000000-20010116230000.svg](test/mpl-3.10.9/20010101000000-20010116230000.svg)
141
+
142
+ ![test/mpl-3.10.9/20010130000000-20010204230000.svg](test/mpl-3.10.9/20010130000000-20010204230000.svg)
143
+
144
+ ![test/mpl-3.10.9/20011230000000-20020104230000.svg](test/mpl-3.10.9/20011230000000-20020104230000.svg)
145
+
146
+ ![test/mpl-3.10.9/20010101000000-20010131000000.svg](test/mpl-3.10.9/20010101000000-20010131000000.svg)
147
+
148
+ ![test/mpl-3.10.9/20010101000000-20010116230000_2.svg](test/mpl-3.10.9/20010101000000-20010116230000_2.svg)
149
+
150
+ ![test/mpl-3.10.9/20010130000000-20010215230000.svg](test/mpl-3.10.9/20010130000000-20010215230000.svg)
151
+
152
+ ![test/mpl-3.10.9/20011230000000-20010115230000.svg](test/mpl-3.10.9/20011230000000-20010115230000.svg)
153
+
154
+ ![test/mpl-3.10.9/20010101000000-20010202000000.svg](test/mpl-3.10.9/20010101000000-20010202000000.svg)
155
+
156
+ ![test/mpl-3.10.9/20010101000000-20010227230000.svg](test/mpl-3.10.9/20010101000000-20010227230000.svg)
157
+
158
+ ![test/mpl-3.10.9/20010115000000-20010216230000.svg](test/mpl-3.10.9/20010115000000-20010216230000.svg)
159
+
160
+ ![test/mpl-3.10.9/20011231000000-20020226230000.svg](test/mpl-3.10.9/20011231000000-20020226230000.svg)
161
+
162
+ ![test/mpl-3.10.9/20010101000000-20010502000000.svg](test/mpl-3.10.9/20010101000000-20010502000000.svg)
163
+
164
+ ![test/mpl-3.10.9/20010101000000-20010227230000_2.svg](test/mpl-3.10.9/20010101000000-20010227230000_2.svg)
165
+
166
+ ![test/mpl-3.10.9/20011231000000-20020226230000_2.svg](test/mpl-3.10.9/20011231000000-20020226230000_2.svg)
167
+
168
+ ![test/mpl-3.10.9/20010101000000-20010702000000.svg](test/mpl-3.10.9/20010101000000-20010702000000.svg)
169
+
170
+ ![test/mpl-3.10.9/20010101000000-20011231000000.svg](test/mpl-3.10.9/20010101000000-20011231000000.svg)
171
+
172
+ ![test/mpl-3.10.9/20010212000000-20020131000000.svg](test/mpl-3.10.9/20010212000000-20020131000000.svg)
173
+
174
+ ![test/mpl-3.10.9/20010101000000-20020103000000.svg](test/mpl-3.10.9/20010101000000-20020103000000.svg)
175
+
176
+ ![test/mpl-3.10.9/20010101000000-20021231000000.svg](test/mpl-3.10.9/20010101000000-20021231000000.svg)
177
+
178
+ ![test/mpl-3.10.9/20010401000000-20020430000000.svg](test/mpl-3.10.9/20010401000000-20020430000000.svg)
179
+
180
+ ![test/mpl-3.10.9/20011001000000-20031004000000.svg](test/mpl-3.10.9/20011001000000-20031004000000.svg)
181
+
182
+ ![test/mpl-3.10.9/20010101000000-20081231000000.svg](test/mpl-3.10.9/20010101000000-20081231000000.svg)
183
+
184
+ ![test/mpl-3.10.9/20010101000000-20030104000000.svg](test/mpl-3.10.9/20010101000000-20030104000000.svg)
185
+
186
+ ![test/mpl-3.10.9/20010101000000-20090104000000.svg](test/mpl-3.10.9/20010101000000-20090104000000.svg)
187
+
188
+ ![test/mpl-3.10.9/20010101000000-20120104000000.svg](test/mpl-3.10.9/20010101000000-20120104000000.svg)
189
+
190
+ ![test/mpl-3.10.9/20000101000000-20170104000000.svg](test/mpl-3.10.9/20000101000000-20170104000000.svg)
191
+
192
+ ![test/mpl-3.10.9/20010101000000-20180104000000.svg](test/mpl-3.10.9/20010101000000-20180104000000.svg)
193
+
194
+ ![test/mpl-3.10.9/20020101000000-20190104000000.svg](test/mpl-3.10.9/20020101000000-20190104000000.svg)
195
+
196
+ ![test/mpl-3.10.9/20030101000000-20200104000000.svg](test/mpl-3.10.9/20030101000000-20200104000000.svg)
197
+
198
+ ![test/mpl-3.10.9/20040101000000-20300104000000.svg](test/mpl-3.10.9/20040101000000-20300104000000.svg)
199
+
200
+ ![test/mpl-3.10.9/19500101000000-20120104000000.svg](test/mpl-3.10.9/19500101000000-20120104000000.svg)
@@ -0,0 +1,7 @@
1
+ from datetick.datetick import datetick
2
+ from importlib.metadata import version, PackageNotFoundError
3
+
4
+ try:
5
+ __version__ = version('datetick')
6
+ except PackageNotFoundError:
7
+ __version__ = 'unknown'