renumerate 1.1.10__py3-none-any.whl → 1.1.11__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.

Potentially problematic release.


This version of renumerate might be problematic. Click here for more details.

renumerate/__about__.py CHANGED
@@ -1,6 +1,6 @@
1
- # Copyright (c) 2016-2022 Adam Karpierz
1
+ # Copyright (c) 2016 Adam Karpierz
2
2
  # Licensed under the zlib/libpng License
3
- # https://opensource.org/licenses/Zlib
3
+ # https://opensource.org/license/zlib
4
4
 
5
5
  __import__("pkg_about").about()
6
- __copyright__ = f"Copyright (c) 2016-2022 {__author__}" # noqa
6
+ __copyright__ = f"Copyright (c) 2016-2024 {__author__}" # noqa
renumerate/__init__.py CHANGED
@@ -1,6 +1,6 @@
1
- # Copyright (c) 2016-2022 Adam Karpierz
1
+ # Copyright (c) 2016 Adam Karpierz
2
2
  # Licensed under the zlib/libpng License
3
- # https://opensource.org/licenses/Zlib
3
+ # https://opensource.org/license/zlib
4
4
 
5
5
  from .__about__ import * ; del __about__ # noqa
6
6
 
renumerate/_renumerate.py CHANGED
@@ -1,6 +1,6 @@
1
- # Copyright (c) 2016-2022 Adam Karpierz
1
+ # Copyright (c) 2016 Adam Karpierz
2
2
  # Licensed under the zlib/libpng License
3
- # https://opensource.org/licenses/Zlib
3
+ # https://opensource.org/license/zlib
4
4
 
5
5
  __all__ = ('renumerate',)
6
6
 
@@ -1,6 +1,6 @@
1
1
  zlib License
2
2
 
3
- Copyright (C) 2016-2022 Adam Karpierz
3
+ Copyright (C) 2016-2024 Adam Karpierz
4
4
 
5
5
  This software is provided 'as-is', without any express or implied
6
6
  warranty. In no event will the authors be held liable for any damages
@@ -1,285 +1,290 @@
1
- Metadata-Version: 2.1
2
- Name: renumerate
3
- Version: 1.1.10
4
- Summary: Reverse enumerate.
5
- Author: Adam Karpierz
6
- Author-email: adam@karpierz.net
7
- Maintainer: Adam Karpierz
8
- Maintainer-email: adam@karpierz.net
9
- License: zlib/libpng License ; https://opensource.org/licenses/Zlib
10
- Project-URL: Homepage, https://pypi.org/project/renumerate/
11
- Project-URL: Documentation, https://renumerate.readthedocs.io/
12
- Project-URL: Download, https://pypi.org/project/renumerate/
13
- Project-URL: Source, https://github.com/karpierz/renumerate
14
- Project-URL: Issues, https://github.com/karpierz/renumerate/issues
15
- Keywords: renumerate,enumerate
16
- Platform: any
17
- Classifier: Development Status :: 5 - Production/Stable
18
- Classifier: Intended Audience :: Developers
19
- Classifier: License :: OSI Approved :: zlib/libpng License
20
- Classifier: Operating System :: OS Independent
21
- Classifier: Natural Language :: Polish
22
- Classifier: Programming Language :: Python
23
- Classifier: Programming Language :: Python :: 3
24
- Classifier: Programming Language :: Python :: 3.7
25
- Classifier: Programming Language :: Python :: 3.8
26
- Classifier: Programming Language :: Python :: 3.9
27
- Classifier: Programming Language :: Python :: 3.10
28
- Classifier: Programming Language :: Python :: 3.11
29
- Classifier: Programming Language :: Python :: 3 :: Only
30
- Classifier: Programming Language :: Python :: Implementation :: CPython
31
- Classifier: Programming Language :: Python :: Implementation :: PyPy
32
- Classifier: Programming Language :: Python :: Implementation :: Stackless
33
- Classifier: Topic :: Software Development :: Libraries :: Python Modules
34
- Requires-Python: <4.0.0,>=3.7.0
35
- Description-Content-Type: text/x-rst; charset=UTF-8
36
- License-File: LICENSE
37
- Requires-Dist: setuptools (>=63.2.0)
38
- Requires-Dist: pkg-about (>=1.0.8)
39
- Provides-Extra: doc
40
- Requires-Dist: docutils (<0.19,>=0.14) ; extra == 'doc'
41
- Requires-Dist: Sphinx (>=4.5.0) ; extra == 'doc'
42
- Requires-Dist: sphinx-tabs (>=3.4.1) ; extra == 'doc'
43
- Requires-Dist: sphinx-copybutton (>=0.5.0) ; extra == 'doc'
44
- Requires-Dist: sphinxcontrib-spelling (>=7.6.0) ; extra == 'doc'
45
- Requires-Dist: restructuredtext-lint (>=1.4.0) ; extra == 'doc'
46
- Requires-Dist: nbsphinx (>=0.8.9) ; extra == 'doc'
47
- Provides-Extra: test
48
- Requires-Dist: deepdiff (>=5.8.1) ; extra == 'test'
49
-
50
- renumerate
51
- ==========
52
-
53
- Reverse enumerate.
54
-
55
- Overview
56
- ========
57
-
58
- **renumerate(sequence, start=len(sequence)-1, end=0):**
59
-
60
- | Return an enumerate_ object.
61
- | *sequence* must be an object that has a __reversed__() method or supports the
62
- sequence protocol (the __len__() method and the __getitem__() method with
63
- integer arguments starting at 0).
64
- | The __next__() method of the iterator returned by renumerate() returns a tuple
65
- containing a count (from *start* which defaults to len(*sequence*) - 1 or ends at
66
- *end* which defaults to 0 - but not both) and the values obtained from reverse
67
- iterating over *sequence*.
68
-
69
- `PyPI record`_.
70
-
71
- `Documentation`_.
72
-
73
- Usage
74
- -----
75
-
76
- .. code:: python
77
-
78
- >>> from renumerate import renumerate
79
- >>> seasons = ['Spring', 'Summer', 'Fall', 'Winter']
80
- >>> list(renumerate(seasons))
81
- [(3, 'Winter'), (2, 'Fall'), (1, 'Summer'), (0, 'Spring')]
82
- >>> list(renumerate(seasons, start=4))
83
- [(4, 'Winter'), (3, 'Fall'), (2, 'Summer'), (1, 'Spring')]
84
- >>> list(renumerate(seasons, end=2))
85
- [(5, 'Winter'), (4, 'Fall'), (3, 'Summer'), (2, 'Spring')]
86
-
87
- Equivalent to:
88
-
89
- .. code:: python
90
-
91
- def renumerate(sequence, start=None, end=None):
92
- if start is not None and end is not None:
93
- raise TypeError("renumerate() only accepts start argument or end argument"
94
- " - not both.")
95
- if start is None: start = len(sequence) - 1
96
- if end is None: end = 0
97
- n = start + end
98
- for elem in reversed(sequence):
99
- yield n, elem
100
- n -= 1
101
-
102
- Installation
103
- ============
104
-
105
- Prerequisites:
106
-
107
- + Python 3.7 or higher
108
-
109
- * https://www.python.org/
110
- * 3.7 is a primary test environment.
111
-
112
- + pip and setuptools
113
-
114
- * https://pypi.org/project/pip/
115
- * https://pypi.org/project/setuptools/
116
-
117
- To install run:
118
-
119
- .. parsed-literal::
120
-
121
- python -m pip install --upgrade |package|
122
-
123
- Development
124
- ===========
125
-
126
- Prerequisites:
127
-
128
- + Development is strictly based on *tox*. To install it run::
129
-
130
- python -m pip install --upgrade tox
131
-
132
- Visit `development page`_.
133
-
134
- Installation from sources:
135
-
136
- clone the sources:
137
-
138
- .. parsed-literal::
139
-
140
- git clone |respository| |package|
141
-
142
- and run:
143
-
144
- .. parsed-literal::
145
-
146
- python -m pip install ./|package|
147
-
148
- or on development mode:
149
-
150
- .. parsed-literal::
151
-
152
- python -m pip install --editable ./|package|
153
-
154
- License
155
- =======
156
-
157
- | Copyright (c) 2016-2022 Adam Karpierz
158
- | Licensed under the zlib/libpng License
159
- | https://opensource.org/licenses/Zlib
160
- | Please refer to the accompanying LICENSE file.
161
-
162
- Authors
163
- =======
164
-
165
- * Adam Karpierz <adam@karpierz.net>
166
-
167
- .. |package| replace:: renumerate
168
- .. |package_bold| replace:: **renumerate**
169
- .. |respository| replace:: https://github.com/karpierz/renumerate.git
170
- .. _development page: https://github.com/karpierz/renumerate
171
- .. _PyPI record: https://pypi.org/project/renumerate/
172
- .. _Documentation: https://renumerate.readthedocs.io/
173
- .. _enumerate: https://docs.python.org/library/functions.html#enumerate
174
-
175
- Changelog
176
- =========
177
-
178
- 1.1.10 (2022-10-18)
179
- -------------------
180
- - Tox configuration has been moved to pyproject.toml
181
-
182
- 1.1.9 (2022-08-22)
183
- ------------------
184
- - Setup update.
185
-
186
- 1.1.8 (2022-07-24)
187
- ------------------
188
- - Add support for Python 3.10 and 3.11
189
- - Setup update (currently based mainly on pyproject.toml).
190
-
191
- 1.1.7 (2022-01-10)
192
- ------------------
193
- - Drop support for Python 3.6.
194
- - Copyright year update.
195
- - Setup update.
196
-
197
- 1.1.6 (2021-12-11)
198
- ------------------
199
- - Setup update.
200
-
201
- 1.1.5 (2021-07-20)
202
- ------------------
203
- - Setup general update and improvement.
204
-
205
- 1.1.4 (2020-10-18)
206
- ------------------
207
- - Drop support for Python 3.5.
208
- - Add unittests.
209
- - Fixed docs setup.
210
-
211
- 1.0.13 (2020-09-22)
212
- -------------------
213
- - Add support for Python 3.8 and 3.9.
214
- - Drop support for Python 3.4.
215
- - Setup: fix an improper dependencies versions.
216
- - Setup general update and cleanup.
217
-
218
- 1.0.9 (2019-05-22)
219
- ------------------
220
- - Drop support for Python 2.
221
-
222
- 1.0.8 (2019-05-21)
223
- ------------------
224
- - Update required setuptools version.
225
- - Setup update and improvements.
226
- - This is the latest release that supports Python 2.
227
-
228
- 1.0.7 (2018-11-08)
229
- ------------------
230
- - Drop support for Python 2.6 and 3.0-3.3.
231
- - Update required setuptools version.
232
-
233
- 1.0.6 (2018-05-08)
234
- ------------------
235
- - Fix a bug in description.
236
- - Update required setuptools version.
237
- - Improve and simplify setup and packaging.
238
-
239
- 1.0.5 (2018-02-26)
240
- ------------------
241
- - Improve and simplify setup and packaging.
242
-
243
- 1.0.4 (2018-01-28)
244
- ------------------
245
- - Fix a bug and inconsistencies in tox.ini
246
- - Update of README.rst.
247
-
248
- 1.0.1 (2018-01-24)
249
- ------------------
250
- - Update required Sphinx version.
251
- - Update doc Sphinx configuration files.
252
-
253
- 1.0.0 (2017-11-18)
254
- ------------------
255
- - Setup improvements.
256
- - Other minor improvements.
257
-
258
- 1.0.0b1 (2017-11-18)
259
- --------------------
260
- - Minor improvements.
261
-
262
- 0.3.4 (2017-01-05)
263
- ------------------
264
- - Minor setup improvements.
265
-
266
- 0.3.3 (2016-09-25)
267
- ------------------
268
- - Fix bug in setup.py
269
-
270
- 0.3.1 (2016-09-25)
271
- ------------------
272
- - More PEP8 compliant.
273
-
274
- 0.2.2 (2016-09-24)
275
- ------------------
276
- - Description suplement
277
- - Minor fixes.
278
-
279
- 0.1.1 (2016-09-24)
280
- ------------------
281
- - First useful release.
282
-
283
- 0.0.2 (2016-09-23)
284
- ------------------
285
- - Initial release.
1
+ Metadata-Version: 2.1
2
+ Name: renumerate
3
+ Version: 1.1.11
4
+ Summary: Reverse enumerate.
5
+ Author: Adam Karpierz
6
+ Author-email: adam@karpierz.net
7
+ Maintainer: Adam Karpierz
8
+ Maintainer-email: adam@karpierz.net
9
+ License: zlib/libpng License ; https://opensource.org/license/zlib
10
+ Project-URL: Homepage, https://pypi.org/project/renumerate/
11
+ Project-URL: Documentation, https://renumerate.readthedocs.io/
12
+ Project-URL: Download, https://pypi.org/project/renumerate/
13
+ Project-URL: Source, https://github.com/karpierz/renumerate
14
+ Project-URL: Issues, https://github.com/karpierz/renumerate/issues
15
+ Keywords: renumerate,enumerate
16
+ Platform: any
17
+ Classifier: Development Status :: 5 - Production/Stable
18
+ Classifier: Intended Audience :: Developers
19
+ Classifier: License :: OSI Approved :: zlib/libpng License
20
+ Classifier: Operating System :: OS Independent
21
+ Classifier: Natural Language :: Polish
22
+ Classifier: Programming Language :: Python
23
+ Classifier: Programming Language :: Python :: 3
24
+ Classifier: Programming Language :: Python :: 3.8
25
+ Classifier: Programming Language :: Python :: 3.9
26
+ Classifier: Programming Language :: Python :: 3.10
27
+ Classifier: Programming Language :: Python :: 3.11
28
+ Classifier: Programming Language :: Python :: 3.12
29
+ Classifier: Programming Language :: Python :: 3 :: Only
30
+ Classifier: Programming Language :: Python :: Implementation :: CPython
31
+ Classifier: Programming Language :: Python :: Implementation :: PyPy
32
+ Classifier: Topic :: Software Development :: Libraries :: Python Modules
33
+ Requires-Python: <4.0.0,>=3.8.1
34
+ Description-Content-Type: text/x-rst; charset=UTF-8
35
+ License-File: LICENSE
36
+ Requires-Dist: setuptools >=68.2.2
37
+ Requires-Dist: pkg-about >=1.1.3
38
+ Provides-Extra: doc
39
+ Requires-Dist: Sphinx >=7.1.2 ; extra == 'doc'
40
+ Requires-Dist: sphinx-toolbox >=3.5.0 ; extra == 'doc'
41
+ Requires-Dist: sphinx-tabs >=3.4.1 ; extra == 'doc'
42
+ Requires-Dist: sphinx-copybutton >=0.5.1 ; extra == 'doc'
43
+ Requires-Dist: sphinxcontrib-spelling >=7.7.0 ; extra == 'doc'
44
+ Requires-Dist: sphinx-lint >=0.6.7 ; extra == 'doc'
45
+ Requires-Dist: restructuredtext-lint >=1.4.0 ; extra == 'doc'
46
+ Requires-Dist: nbsphinx >=0.8.10 ; extra == 'doc'
47
+ Provides-Extra: test
48
+ Requires-Dist: deepdiff >=6.7.1 ; extra == 'test'
49
+ Requires-Dist: rich >=13.7.0 ; extra == 'test'
50
+
51
+ renumerate
52
+ ==========
53
+
54
+ Reverse enumerate.
55
+
56
+ Overview
57
+ ========
58
+
59
+ **renumerate(sequence, start=len(sequence)-1, end=0):**
60
+
61
+ | Return an enumerate_ object.
62
+ | *sequence* must be an object that has a __reversed__() method or supports the
63
+ sequence protocol (the __len__() method and the __getitem__() method with
64
+ integer arguments starting at 0).
65
+ | The __next__() method of the iterator returned by renumerate() returns a tuple
66
+ containing a count (from *start* which defaults to len(*sequence*) - 1 or ends at
67
+ *end* which defaults to 0 - but not both) and the values obtained from reverse
68
+ iterating over *sequence*.
69
+
70
+ `PyPI record`_.
71
+
72
+ `Documentation`_.
73
+
74
+ Usage
75
+ -----
76
+
77
+ .. code:: python
78
+
79
+ >>> from renumerate import renumerate
80
+ >>> seasons = ['Spring', 'Summer', 'Fall', 'Winter']
81
+ >>> list(renumerate(seasons))
82
+ [(3, 'Winter'), (2, 'Fall'), (1, 'Summer'), (0, 'Spring')]
83
+ >>> list(renumerate(seasons, start=4))
84
+ [(4, 'Winter'), (3, 'Fall'), (2, 'Summer'), (1, 'Spring')]
85
+ >>> list(renumerate(seasons, end=2))
86
+ [(5, 'Winter'), (4, 'Fall'), (3, 'Summer'), (2, 'Spring')]
87
+
88
+ Equivalent to:
89
+
90
+ .. code:: python
91
+
92
+ def renumerate(sequence, start=None, end=None):
93
+ if start is not None and end is not None:
94
+ raise TypeError("renumerate() only accepts start argument or end argument"
95
+ " - not both.")
96
+ if start is None: start = len(sequence) - 1
97
+ if end is None: end = 0
98
+ n = start + end
99
+ for elem in reversed(sequence):
100
+ yield n, elem
101
+ n -= 1
102
+
103
+ Installation
104
+ ============
105
+
106
+ Prerequisites:
107
+
108
+ + Python 3.8 or higher
109
+
110
+ * https://www.python.org/
111
+
112
+ + pip and setuptools
113
+
114
+ * https://pypi.org/project/pip/
115
+ * https://pypi.org/project/setuptools/
116
+
117
+ To install run:
118
+
119
+ .. parsed-literal::
120
+
121
+ python -m pip install --upgrade |package|
122
+
123
+ Development
124
+ ===========
125
+
126
+ Prerequisites:
127
+
128
+ + Development is strictly based on *tox*. To install it run::
129
+
130
+ python -m pip install --upgrade tox
131
+
132
+ Visit `Development page`_.
133
+
134
+ Installation from sources:
135
+
136
+ clone the sources:
137
+
138
+ .. parsed-literal::
139
+
140
+ git clone |respository| |package|
141
+
142
+ and run:
143
+
144
+ .. parsed-literal::
145
+
146
+ python -m pip install ./|package|
147
+
148
+ or on development mode:
149
+
150
+ .. parsed-literal::
151
+
152
+ python -m pip install --editable ./|package|
153
+
154
+ License
155
+ =======
156
+
157
+ | Copyright (c) 2016-2024 Adam Karpierz
158
+ | Licensed under the zlib/libpng License
159
+ | https://opensource.org/license/zlib
160
+ | Please refer to the accompanying LICENSE file.
161
+
162
+ Authors
163
+ =======
164
+
165
+ * Adam Karpierz <adam@karpierz.net>
166
+
167
+ .. |package| replace:: renumerate
168
+ .. |package_bold| replace:: **renumerate**
169
+ .. |respository| replace:: https://github.com/karpierz/renumerate.git
170
+ .. _Development page: https://github.com/karpierz/renumerate
171
+ .. _PyPI record: https://pypi.org/project/renumerate/
172
+ .. _Documentation: https://renumerate.readthedocs.io/
173
+ .. _enumerate: https://docs.python.org/library/functions.html#enumerate
174
+
175
+ Changelog
176
+ =========
177
+
178
+ 1.1.11 (2024-01-25)
179
+ -------------------
180
+ - Setup update (now based on tox >= 4.0).
181
+ - Cleanup.
182
+
183
+ 1.1.10 (2022-10-18)
184
+ -------------------
185
+ - Tox configuration has been moved to pyproject.toml
186
+
187
+ 1.1.9 (2022-08-22)
188
+ ------------------
189
+ - Setup update.
190
+
191
+ 1.1.8 (2022-07-24)
192
+ ------------------
193
+ - Add support for Python 3.10 and 3.11
194
+ - Setup update (currently based mainly on pyproject.toml).
195
+
196
+ 1.1.7 (2022-01-10)
197
+ ------------------
198
+ - Drop support for Python 3.6.
199
+ - Copyright year update.
200
+ - Setup update.
201
+
202
+ 1.1.6 (2021-12-11)
203
+ ------------------
204
+ - Setup update.
205
+
206
+ 1.1.5 (2021-07-20)
207
+ ------------------
208
+ - Setup general update and improvement.
209
+
210
+ 1.1.4 (2020-10-18)
211
+ ------------------
212
+ - Drop support for Python 3.5.
213
+ - Add unittests.
214
+ - Fixed docs setup.
215
+
216
+ 1.0.13 (2020-09-22)
217
+ -------------------
218
+ - Add support for Python 3.8 and 3.9.
219
+ - Drop support for Python 3.4.
220
+ - Setup: fix an improper dependencies versions.
221
+ - Setup general update and cleanup.
222
+
223
+ 1.0.9 (2019-05-22)
224
+ ------------------
225
+ - Drop support for Python 2.
226
+
227
+ 1.0.8 (2019-05-21)
228
+ ------------------
229
+ - Update required setuptools version.
230
+ - Setup update and improvements.
231
+ - This is the latest release that supports Python 2.
232
+
233
+ 1.0.7 (2018-11-08)
234
+ ------------------
235
+ - Drop support for Python 2.6 and 3.0-3.3.
236
+ - Update required setuptools version.
237
+
238
+ 1.0.6 (2018-05-08)
239
+ ------------------
240
+ - Fix a bug in description.
241
+ - Update required setuptools version.
242
+ - Improve and simplify setup and packaging.
243
+
244
+ 1.0.5 (2018-02-26)
245
+ ------------------
246
+ - Improve and simplify setup and packaging.
247
+
248
+ 1.0.4 (2018-01-28)
249
+ ------------------
250
+ - Fix a bug and inconsistencies in tox.ini
251
+ - Update of README.rst.
252
+
253
+ 1.0.1 (2018-01-24)
254
+ ------------------
255
+ - Update required Sphinx version.
256
+ - Update doc Sphinx configuration files.
257
+
258
+ 1.0.0 (2017-11-18)
259
+ ------------------
260
+ - Setup improvements.
261
+ - Other minor improvements.
262
+
263
+ 1.0.0b1 (2017-11-18)
264
+ --------------------
265
+ - Minor improvements.
266
+
267
+ 0.3.4 (2017-01-05)
268
+ ------------------
269
+ - Minor setup improvements.
270
+
271
+ 0.3.3 (2016-09-25)
272
+ ------------------
273
+ - Fix bug in setup.py
274
+
275
+ 0.3.1 (2016-09-25)
276
+ ------------------
277
+ - More PEP8 compliant.
278
+
279
+ 0.2.2 (2016-09-24)
280
+ ------------------
281
+ - Description suplement
282
+ - Minor fixes.
283
+
284
+ 0.1.1 (2016-09-24)
285
+ ------------------
286
+ - First useful release.
287
+
288
+ 0.0.2 (2016-09-23)
289
+ ------------------
290
+ - Initial release.
@@ -0,0 +1,9 @@
1
+ renumerate/__about__.py,sha256=uegf7jO_npw3Rrk2sxt3rbUAJ6p8Ynrx0l0f23rC4nI,211
2
+ renumerate/__init__.py,sha256=3Zl648T7KppaMQIzEiwPfta7GHMV_dFqbByMaNiotS8,218
3
+ renumerate/_renumerate.py,sha256=imzH1hTRbK3RIkS4viRO8coGsT7n0PyINzHSdUI-ZGA,1311
4
+ renumerate-1.1.11.dist-info/LICENSE,sha256=Yq3H1bjtcSHnCqnjOcpNfmowyjpI0JDo4ddaMcigeCI,872
5
+ renumerate-1.1.11.dist-info/METADATA,sha256=kwgwIczYRK0Lo5SHCTbEI99N4hJPatRf5BlEM0Hf8QY,7706
6
+ renumerate-1.1.11.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
7
+ renumerate-1.1.11.dist-info/top_level.txt,sha256=X996I0OJFxiV3UpE1ZxK1O9hinNjy21t5wBSKRwXeBY,11
8
+ renumerate-1.1.11.dist-info/zip-safe,sha256=frcCV1k9oG9oKj3dpUqdJg1PxRT2RSN_XKdLCPjaYaY,2
9
+ renumerate-1.1.11.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: bdist_wheel (0.37.1)
2
+ Generator: bdist_wheel (0.42.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5
 
@@ -1,9 +0,0 @@
1
- renumerate/__about__.py,sha256=nwAk-NHy1XTojUbf7yniAbe6Irm5OVknJYyIhKRzAUs,217
2
- renumerate/__init__.py,sha256=AOriW10v8fRqry0YryV_aEUeG_YVb0yH4_iECC-aJOw,224
3
- renumerate/_renumerate.py,sha256=w43idzsv3lkeIxSwFRc24YnyCXRC8uzSNK-Yb2bp3vQ,1317
4
- renumerate-1.1.10.dist-info/LICENSE,sha256=FWCprg_MwtH1hl_38IaqCHcO0mUoxvg7QPDKotC5ZwQ,872
5
- renumerate-1.1.10.dist-info/METADATA,sha256=nvOlLC7zbsjI3MBL_8ZFa69QBlFtcWqjQC0wCdWcmUI,7355
6
- renumerate-1.1.10.dist-info/WHEEL,sha256=G16H4A3IeoQmnOrYV4ueZGKSjhipXx8zc8nu9FGlvMA,92
7
- renumerate-1.1.10.dist-info/top_level.txt,sha256=X996I0OJFxiV3UpE1ZxK1O9hinNjy21t5wBSKRwXeBY,11
8
- renumerate-1.1.10.dist-info/zip-safe,sha256=frcCV1k9oG9oKj3dpUqdJg1PxRT2RSN_XKdLCPjaYaY,2
9
- renumerate-1.1.10.dist-info/RECORD,,