Utility for organizing Python imports using PEP8 or custom rules
Project description
Utility for organizing Python imports using PEP8 or custom rules
Free software: MIT license
Installing
You can install importanize using pip:
$ pip install importanize
Why?
I think imports are important in Python. I also think PEP8 is awesome (if you disagree, read some PHP) and there are many tools to help developers reformat code to match PEP8. Unfortunately there are no tools to reliably organize Python imports to match PEP8 suggestions. This is where importanize comes in. It allows to organize Python imports using PEP8 or your custom rules. Read on for more information.
Using
Using importanize is super easy. Just run:
$ importanize file_to_organize.py
That will re-format all imports in the given file. As part of the default configuration, importanize will try it’s best to organize imports to follow PEP8 however that is rather challenging task since it is difficult to determine all import groups as suggested by PEP8:
standard library imports
related third party imports
local application/library specific imports
To help importanize distinguish between different import groups in most cases it would be recommended to use custom config file:
$ importanize file_to_organize.py config.json
Config file is simply a json file. Default config looks something like:
{ "groups": [ { "type": "stdlib", }, { "type": "remainder", }, { "type": "local", } ], }
Currently the only required key is "groups" which must be an array of group definitions. importanize will use these group definitions to organize imports and will output import groups in the same order as defined in the config file. These are the supported group types:
stdlib - standard library imports including __future__
local - local imports which start with ".". for example from .foo import bar
packages - if this group is specified, additional key packages is required within import group definition which should list all Python packages (root level) which should be included in that group:
{ "type": "packages", "packages": ["foo", "bar"] }
remaining - all remaining imports which did not satisfy requirements of all other groups will go to this group
You can use the config file by specifying it in the importanize command as shown above however you can also create an .importanizerc file and commit that to your repository. As a matter of fact, you can see the .importanizerc config file used for the importanize repository itself.
Finally, you can see all other available importanize options:
$ importanize --help
Example
Here is a before and after (on hypothetical file):
Before
from __future__ import unicode_literals, print_function import os.path as ospath import datetime from package.subpackage.module.submodule import CONSTANT, Klass, foo, bar, rainbows from .module import foo, bar from ..othermodule import rainbows
After
from __future__ import print_function, unicode_literals import datetime from os import path as ospath from package.subpackage.module.submodule import ( CONSTANT, Klass, bar, foo, rainbows, ) from ..othermodule import rainbows from .module import bar, foo
Here is what importanize did:
alphabetical sort, even inside import line (look at __future__)
normalized import .. as .. into from .. import .. as ..
broke long import (>80 chars) which has more than one import into multiple lines
reordered some imports (e.g. local imports .. should be before .)
Testing
To run the tests you need to install testing requirements first:
$ make install
Then to run tests, you can use nosetests or simply use Makefile command:
$ nosetests -sv # or $ make test
History
0.1.4 (2014-10-12)
Multiple imports (e.g. import a, b) are normalized instead of exiting
Multiple imports with the same stem are combined into single import statement (see #17 for example)
0.1.3 (2014-09-15)
Fixed where single line triple-quote docstrings would cause none of the imports to be recognized
0.1.2 (2014-09-15)
Fixed where import leafs were not properly sorted for mixed case (aka CamelCase)
0.1.1 (2014-09-07)
Ignoring comment blocks when parsing for imports
Fixed bug when imports start on a first line, extra lines were being added to the file.
0.1.0 (2014-09-07)
First release on PyPI.
Credits
Development Lead
Miroslav Shubernetskiy - https://github.com/miki725
Contributors
None yet. Why not be the first?
License
The MIT License (MIT)
Copyright (c) 2014, Miroslav Shubernetskiy
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.