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
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
|
%global _empty_manifest_terminate_build 0
Name: python-reorder-python-imports
Version: 3.9.0
Release: 1
Summary: Tool for reordering python imports
License: MIT
URL: https://github.com/asottile/reorder_python_imports
Source0: https://mirrors.nju.edu.cn/pypi/web/packages/23/98/f2c8c5ee8cc406e1352b5aaad7b2f927b9a5a081ee2050eb302f5ec1b780/reorder_python_imports-3.9.0.tar.gz
BuildArch: noarch
Requires: python3-classify-imports
%description
Tool for automatically reordering python imports. Similar to `isort` but
uses static analysis more.
## Installation
```bash
pip install reorder-python-imports
```
## Console scripts
Consult `reorder-python-imports --help` for the full set of options.
`reorder-python-imports` takes filenames as positional arguments
Common options:
- `--py##-plus`: [see below](#removing-obsolete-__future__-imports).
- `--add-import` / `--remove-import`: [see below](#adding--removing-imports).
- `--replace-import`: [see below](#replacing-imports).
- `--application-directories`: by default, `reorder-python-imports` assumes
your project is rooted at `.`. If this isn't true, tell it where your
import roots live. For example, when using the popular `./src` layout you'd
use `--application-directories=.:src` (note: multiple paths are separated
using a `:`).
- `--unclassifiable-application-module`: (may be specified multiple times)
modules names that are considered application modules. this setting is
intended to be used for things like C modules which may not always appear on
the filesystem.
## As a pre-commit hook
See [pre-commit](https://github.com/pre-commit/pre-commit) for instructions
Sample `.pre-commit-config.yaml`
```yaml
- repo: https://github.com/asottile/reorder_python_imports
rev: v3.9.0
hooks:
- id: reorder-python-imports
```
## What does it do?
### Separates imports into three sections
```python
import sys
import pyramid
import reorder_python_imports
```
becomes (stdlib, third party, first party)
```python
import sys
import pyramid
import reorder_python_imports
```
### `import` imports before `from` imports
```python
from os import path
import sys
```
becomes
```python
import sys
from os import path
```
### Splits `from` imports
```python
from os.path import abspath, exists
```
becomes
```python
from os.path import abspath
from os.path import exists
```
### Removes duplicate imports
```python
import os
import os.path
import sys
import sys
```
becomes
```python
import os.path
import sys
```
## Using `# noreorder`
Lines containing and after lines which contain a `# noreorder` comment will
be ignored. Additionally any imports that appear after non-whitespace
non-comment lines will be ignored.
For instance, these will not be changed:
```python
import sys
try: # not import, not whitespace
import foo
except ImportError:
pass
```
```python
import sys
import reorder_python_imports
import matplotlib # noreorder
matplotlib.use('Agg')
import matplotlib.pyplot as plt
```
```python
# noreorder
import sys
import pyramid
import reorder_python_imports
```
## why this style?
The style chosen by `reorder-python-imports` has a single aim: reduce merge
conflicts.
By having a single import per line, multiple contributors can
add / remove imports from a single module without resulting in a conflict.
Consider the following example which causes a merge conflict:
```diff
# developer 1
-from typing import Dict, List
+from typing import Any, Dict, List
```
```diff
# developer 2
-from typing import Dict, List
+from typing import Dict, List, Tuple
```
no conflict with the style enforced by `reorder-python-imports`:
```diff
+from typing import Any
from typing import Dict
from typing import List
+from typing import Tuple
```
## Adding / Removing Imports
Let's say I want to enforce `absolute_import` across my codebase. I can use:
`--add-import 'from __future__ import absolute_import'`.
```console
$ cat test.py
print('Hello world')
$ reorder-python-imports --add-import 'from __future__ import absolute_import' test.py
Reordering imports in test.py
$ cat test.py
from __future__ import absolute_import
print('Hello world')
```
Let's say I no longer care about supporting Python 2.5, I can remove
`from __future__ import with_statement` with
`--remove-import 'from __future__ import with_statement'`
```console
$ cat test.py
from __future__ import with_statement
with open('foo.txt', 'w') as foo_f:
foo_f.write('hello world')
$ reorder-python-imports --remove-import 'from __future__ import with_statement' test.py
Reordering imports in test.py
$ cat test.py
with open('foo.txt', 'w') as foo_f:
foo_f.write('hello world')
```
## Replacing imports
Imports can be replaced with others automatically (if they provide the same
names). This can be useful for factoring out compatibility libraries such
as `six` (see below for automated `six` rewriting).
This rewrite avoids `NameError`s as such it only occurs when:
- the imported symbol is the same before and after
- the import is a `from` import
The argument is specified as `orig.mod=new.mod` or with an optional
checked attribute `orig.mod=new.mod:attr`. The checked attribute is useful
for renaming some imports from a module instead of a full module.
For example:
```bash
# full module move
--replace-import six.moves.queue=queue
# specific attribute move
--replace-import six.moves=io:StringIO
```
## Removing obsolete `__future__` imports
The cli provides a few options to help "burn the bridges" with old python
versions by removing `__future__` imports automatically. Each option implies
all older versions.
- `--py22-plus`: `nested_scopes`
- `--py23-plus`: `generators`
- `--py26-plus`: `with_statement`
- `--py3-plus`: `division`, `absolute_import`, `print_function`,
`unicode_literals`
- `--py37-plus`: `generator_stop`
## Removing / rewriting obsolete `six` imports
With `--py3-plus`, `reorder-python-imports` will also remove / rewrite imports
from `six`. Rewrites follow the same rules as
[replacing imports](#replacing-imports) above.
For example:
```diff
+import queue
+from io import StringIO
+from urllib.parse import quote_plus
+
import six.moves.urllib.parse
-from six.moves import queue
-from six.moves import range
-from six.moves import StringIO
-from six.moves.urllib.parse import quote_plus
```
## Rewriting mock imports
With `--py3-plus`, `reorder-python-imports` will also rewrite various `mock` imports:
```diff
-from mock import patch
+from unittest.mock import patch
```
## Rewriting `mypy_extensions` and `typing_extension` imports
With `--py36-plus` and higher, `reorder-python-imports` will also rewrite
`mypy_extensions` and `typing_extensions` imports ported to `typing`.
```diff
-from mypy_extensions import TypedDict
+from typing import TypedDict
```
## Rewriting pep 585 typing imports
With `--py39-plus` and higher, `reorder-python-imports` will replace imports
which were moved out of the typing module in [pep 585].
```diff
-from typing import Sequence
+from collections.abc import Sequence
```
[pep 585]: https://www.python.org/dev/peps/pep-0585/
%package -n python3-reorder-python-imports
Summary: Tool for reordering python imports
Provides: python-reorder-python-imports
BuildRequires: python3-devel
BuildRequires: python3-setuptools
BuildRequires: python3-pip
%description -n python3-reorder-python-imports
Tool for automatically reordering python imports. Similar to `isort` but
uses static analysis more.
## Installation
```bash
pip install reorder-python-imports
```
## Console scripts
Consult `reorder-python-imports --help` for the full set of options.
`reorder-python-imports` takes filenames as positional arguments
Common options:
- `--py##-plus`: [see below](#removing-obsolete-__future__-imports).
- `--add-import` / `--remove-import`: [see below](#adding--removing-imports).
- `--replace-import`: [see below](#replacing-imports).
- `--application-directories`: by default, `reorder-python-imports` assumes
your project is rooted at `.`. If this isn't true, tell it where your
import roots live. For example, when using the popular `./src` layout you'd
use `--application-directories=.:src` (note: multiple paths are separated
using a `:`).
- `--unclassifiable-application-module`: (may be specified multiple times)
modules names that are considered application modules. this setting is
intended to be used for things like C modules which may not always appear on
the filesystem.
## As a pre-commit hook
See [pre-commit](https://github.com/pre-commit/pre-commit) for instructions
Sample `.pre-commit-config.yaml`
```yaml
- repo: https://github.com/asottile/reorder_python_imports
rev: v3.9.0
hooks:
- id: reorder-python-imports
```
## What does it do?
### Separates imports into three sections
```python
import sys
import pyramid
import reorder_python_imports
```
becomes (stdlib, third party, first party)
```python
import sys
import pyramid
import reorder_python_imports
```
### `import` imports before `from` imports
```python
from os import path
import sys
```
becomes
```python
import sys
from os import path
```
### Splits `from` imports
```python
from os.path import abspath, exists
```
becomes
```python
from os.path import abspath
from os.path import exists
```
### Removes duplicate imports
```python
import os
import os.path
import sys
import sys
```
becomes
```python
import os.path
import sys
```
## Using `# noreorder`
Lines containing and after lines which contain a `# noreorder` comment will
be ignored. Additionally any imports that appear after non-whitespace
non-comment lines will be ignored.
For instance, these will not be changed:
```python
import sys
try: # not import, not whitespace
import foo
except ImportError:
pass
```
```python
import sys
import reorder_python_imports
import matplotlib # noreorder
matplotlib.use('Agg')
import matplotlib.pyplot as plt
```
```python
# noreorder
import sys
import pyramid
import reorder_python_imports
```
## why this style?
The style chosen by `reorder-python-imports` has a single aim: reduce merge
conflicts.
By having a single import per line, multiple contributors can
add / remove imports from a single module without resulting in a conflict.
Consider the following example which causes a merge conflict:
```diff
# developer 1
-from typing import Dict, List
+from typing import Any, Dict, List
```
```diff
# developer 2
-from typing import Dict, List
+from typing import Dict, List, Tuple
```
no conflict with the style enforced by `reorder-python-imports`:
```diff
+from typing import Any
from typing import Dict
from typing import List
+from typing import Tuple
```
## Adding / Removing Imports
Let's say I want to enforce `absolute_import` across my codebase. I can use:
`--add-import 'from __future__ import absolute_import'`.
```console
$ cat test.py
print('Hello world')
$ reorder-python-imports --add-import 'from __future__ import absolute_import' test.py
Reordering imports in test.py
$ cat test.py
from __future__ import absolute_import
print('Hello world')
```
Let's say I no longer care about supporting Python 2.5, I can remove
`from __future__ import with_statement` with
`--remove-import 'from __future__ import with_statement'`
```console
$ cat test.py
from __future__ import with_statement
with open('foo.txt', 'w') as foo_f:
foo_f.write('hello world')
$ reorder-python-imports --remove-import 'from __future__ import with_statement' test.py
Reordering imports in test.py
$ cat test.py
with open('foo.txt', 'w') as foo_f:
foo_f.write('hello world')
```
## Replacing imports
Imports can be replaced with others automatically (if they provide the same
names). This can be useful for factoring out compatibility libraries such
as `six` (see below for automated `six` rewriting).
This rewrite avoids `NameError`s as such it only occurs when:
- the imported symbol is the same before and after
- the import is a `from` import
The argument is specified as `orig.mod=new.mod` or with an optional
checked attribute `orig.mod=new.mod:attr`. The checked attribute is useful
for renaming some imports from a module instead of a full module.
For example:
```bash
# full module move
--replace-import six.moves.queue=queue
# specific attribute move
--replace-import six.moves=io:StringIO
```
## Removing obsolete `__future__` imports
The cli provides a few options to help "burn the bridges" with old python
versions by removing `__future__` imports automatically. Each option implies
all older versions.
- `--py22-plus`: `nested_scopes`
- `--py23-plus`: `generators`
- `--py26-plus`: `with_statement`
- `--py3-plus`: `division`, `absolute_import`, `print_function`,
`unicode_literals`
- `--py37-plus`: `generator_stop`
## Removing / rewriting obsolete `six` imports
With `--py3-plus`, `reorder-python-imports` will also remove / rewrite imports
from `six`. Rewrites follow the same rules as
[replacing imports](#replacing-imports) above.
For example:
```diff
+import queue
+from io import StringIO
+from urllib.parse import quote_plus
+
import six.moves.urllib.parse
-from six.moves import queue
-from six.moves import range
-from six.moves import StringIO
-from six.moves.urllib.parse import quote_plus
```
## Rewriting mock imports
With `--py3-plus`, `reorder-python-imports` will also rewrite various `mock` imports:
```diff
-from mock import patch
+from unittest.mock import patch
```
## Rewriting `mypy_extensions` and `typing_extension` imports
With `--py36-plus` and higher, `reorder-python-imports` will also rewrite
`mypy_extensions` and `typing_extensions` imports ported to `typing`.
```diff
-from mypy_extensions import TypedDict
+from typing import TypedDict
```
## Rewriting pep 585 typing imports
With `--py39-plus` and higher, `reorder-python-imports` will replace imports
which were moved out of the typing module in [pep 585].
```diff
-from typing import Sequence
+from collections.abc import Sequence
```
[pep 585]: https://www.python.org/dev/peps/pep-0585/
%package help
Summary: Development documents and examples for reorder-python-imports
Provides: python3-reorder-python-imports-doc
%description help
Tool for automatically reordering python imports. Similar to `isort` but
uses static analysis more.
## Installation
```bash
pip install reorder-python-imports
```
## Console scripts
Consult `reorder-python-imports --help` for the full set of options.
`reorder-python-imports` takes filenames as positional arguments
Common options:
- `--py##-plus`: [see below](#removing-obsolete-__future__-imports).
- `--add-import` / `--remove-import`: [see below](#adding--removing-imports).
- `--replace-import`: [see below](#replacing-imports).
- `--application-directories`: by default, `reorder-python-imports` assumes
your project is rooted at `.`. If this isn't true, tell it where your
import roots live. For example, when using the popular `./src` layout you'd
use `--application-directories=.:src` (note: multiple paths are separated
using a `:`).
- `--unclassifiable-application-module`: (may be specified multiple times)
modules names that are considered application modules. this setting is
intended to be used for things like C modules which may not always appear on
the filesystem.
## As a pre-commit hook
See [pre-commit](https://github.com/pre-commit/pre-commit) for instructions
Sample `.pre-commit-config.yaml`
```yaml
- repo: https://github.com/asottile/reorder_python_imports
rev: v3.9.0
hooks:
- id: reorder-python-imports
```
## What does it do?
### Separates imports into three sections
```python
import sys
import pyramid
import reorder_python_imports
```
becomes (stdlib, third party, first party)
```python
import sys
import pyramid
import reorder_python_imports
```
### `import` imports before `from` imports
```python
from os import path
import sys
```
becomes
```python
import sys
from os import path
```
### Splits `from` imports
```python
from os.path import abspath, exists
```
becomes
```python
from os.path import abspath
from os.path import exists
```
### Removes duplicate imports
```python
import os
import os.path
import sys
import sys
```
becomes
```python
import os.path
import sys
```
## Using `# noreorder`
Lines containing and after lines which contain a `# noreorder` comment will
be ignored. Additionally any imports that appear after non-whitespace
non-comment lines will be ignored.
For instance, these will not be changed:
```python
import sys
try: # not import, not whitespace
import foo
except ImportError:
pass
```
```python
import sys
import reorder_python_imports
import matplotlib # noreorder
matplotlib.use('Agg')
import matplotlib.pyplot as plt
```
```python
# noreorder
import sys
import pyramid
import reorder_python_imports
```
## why this style?
The style chosen by `reorder-python-imports` has a single aim: reduce merge
conflicts.
By having a single import per line, multiple contributors can
add / remove imports from a single module without resulting in a conflict.
Consider the following example which causes a merge conflict:
```diff
# developer 1
-from typing import Dict, List
+from typing import Any, Dict, List
```
```diff
# developer 2
-from typing import Dict, List
+from typing import Dict, List, Tuple
```
no conflict with the style enforced by `reorder-python-imports`:
```diff
+from typing import Any
from typing import Dict
from typing import List
+from typing import Tuple
```
## Adding / Removing Imports
Let's say I want to enforce `absolute_import` across my codebase. I can use:
`--add-import 'from __future__ import absolute_import'`.
```console
$ cat test.py
print('Hello world')
$ reorder-python-imports --add-import 'from __future__ import absolute_import' test.py
Reordering imports in test.py
$ cat test.py
from __future__ import absolute_import
print('Hello world')
```
Let's say I no longer care about supporting Python 2.5, I can remove
`from __future__ import with_statement` with
`--remove-import 'from __future__ import with_statement'`
```console
$ cat test.py
from __future__ import with_statement
with open('foo.txt', 'w') as foo_f:
foo_f.write('hello world')
$ reorder-python-imports --remove-import 'from __future__ import with_statement' test.py
Reordering imports in test.py
$ cat test.py
with open('foo.txt', 'w') as foo_f:
foo_f.write('hello world')
```
## Replacing imports
Imports can be replaced with others automatically (if they provide the same
names). This can be useful for factoring out compatibility libraries such
as `six` (see below for automated `six` rewriting).
This rewrite avoids `NameError`s as such it only occurs when:
- the imported symbol is the same before and after
- the import is a `from` import
The argument is specified as `orig.mod=new.mod` or with an optional
checked attribute `orig.mod=new.mod:attr`. The checked attribute is useful
for renaming some imports from a module instead of a full module.
For example:
```bash
# full module move
--replace-import six.moves.queue=queue
# specific attribute move
--replace-import six.moves=io:StringIO
```
## Removing obsolete `__future__` imports
The cli provides a few options to help "burn the bridges" with old python
versions by removing `__future__` imports automatically. Each option implies
all older versions.
- `--py22-plus`: `nested_scopes`
- `--py23-plus`: `generators`
- `--py26-plus`: `with_statement`
- `--py3-plus`: `division`, `absolute_import`, `print_function`,
`unicode_literals`
- `--py37-plus`: `generator_stop`
## Removing / rewriting obsolete `six` imports
With `--py3-plus`, `reorder-python-imports` will also remove / rewrite imports
from `six`. Rewrites follow the same rules as
[replacing imports](#replacing-imports) above.
For example:
```diff
+import queue
+from io import StringIO
+from urllib.parse import quote_plus
+
import six.moves.urllib.parse
-from six.moves import queue
-from six.moves import range
-from six.moves import StringIO
-from six.moves.urllib.parse import quote_plus
```
## Rewriting mock imports
With `--py3-plus`, `reorder-python-imports` will also rewrite various `mock` imports:
```diff
-from mock import patch
+from unittest.mock import patch
```
## Rewriting `mypy_extensions` and `typing_extension` imports
With `--py36-plus` and higher, `reorder-python-imports` will also rewrite
`mypy_extensions` and `typing_extensions` imports ported to `typing`.
```diff
-from mypy_extensions import TypedDict
+from typing import TypedDict
```
## Rewriting pep 585 typing imports
With `--py39-plus` and higher, `reorder-python-imports` will replace imports
which were moved out of the typing module in [pep 585].
```diff
-from typing import Sequence
+from collections.abc import Sequence
```
[pep 585]: https://www.python.org/dev/peps/pep-0585/
%prep
%autosetup -n reorder-python-imports-3.9.0
%build
%py3_build
%install
%py3_install
install -d -m755 %{buildroot}/%{_pkgdocdir}
if [ -d doc ]; then cp -arf doc %{buildroot}/%{_pkgdocdir}; fi
if [ -d docs ]; then cp -arf docs %{buildroot}/%{_pkgdocdir}; fi
if [ -d example ]; then cp -arf example %{buildroot}/%{_pkgdocdir}; fi
if [ -d examples ]; then cp -arf examples %{buildroot}/%{_pkgdocdir}; fi
pushd %{buildroot}
if [ -d usr/lib ]; then
find usr/lib -type f -printf "/%h/%f\n" >> filelist.lst
fi
if [ -d usr/lib64 ]; then
find usr/lib64 -type f -printf "/%h/%f\n" >> filelist.lst
fi
if [ -d usr/bin ]; then
find usr/bin -type f -printf "/%h/%f\n" >> filelist.lst
fi
if [ -d usr/sbin ]; then
find usr/sbin -type f -printf "/%h/%f\n" >> filelist.lst
fi
touch doclist.lst
if [ -d usr/share/man ]; then
find usr/share/man -type f -printf "/%h/%f.gz\n" >> doclist.lst
fi
popd
mv %{buildroot}/filelist.lst .
mv %{buildroot}/doclist.lst .
%files -n python3-reorder-python-imports -f filelist.lst
%dir %{python3_sitelib}/*
%files help -f doclist.lst
%{_docdir}/*
%changelog
* Tue Apr 11 2023 Python_Bot <Python_Bot@openeuler.org> - 3.9.0-1
- Package Spec generated
|