Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/emacsorphanage/pyimpsort

Sort python imports
https://github.com/emacsorphanage/pyimpsort

Last synced: about 2 months ago
JSON representation

Sort python imports

Awesome Lists containing this project

README

        

Emacs Logo
## pyimpsort.el
*Sort python imports.*

---
[![License GPLv3](https://img.shields.io/badge/license-GPL_v3-green.svg)](http://www.gnu.org/licenses/gpl-3.0.html)
[![MELPA](http://melpa.org/packages/pyimpsort-badge.svg)](http://melpa.org/#/pyimpsort)

`pyimpsort.el` sort the python imports of a file.
Currently uses [pyimpsort.py](pyimpsort.py) to process the way to sort python
imports.

### Setup

Add the following snippet to your `init.el`:

(require 'pyimpsort)
(eval-after-load 'python
'(define-key python-mode-map "\C-c\C-u" #'pyimpsort-buffer))

### Troubleshooting

+ **Doesn't sort correctly third party libraries**

`pyimpsort.el` tries to identify the third party libraries if are installed
in in the PYTHONPATH, if a package is not installed it is assumed that
belongs to the application.
`pyimpsort.el` also tries to identify if a python virtualenv
is activated.

### Related projects

+ [isort][] ([emacs integration](https://github.com/paetzke/py-isort.el))

[isort]: https://github.com/timothycrosley/isort

### Customization Documentation

#### `pyimpsort-display-error-buffer`

Display error buffer on error.

#### `pyimpsort-error-buffer-name`

Buffer name of pyimpsort error.

### Function and Macro Documentation

#### `(pyimpsort-region BEGIN END)`

Sort python imports from region BEGIN to END points.

#### `(pyimpsort-buffer)`

Sort python imports from current buffer.

-----


Markdown README file generated by
make-readme-markdown.el