Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/myint/unify
Modifies strings to all use the same quote where possible
https://github.com/myint/unify
formatter python
Last synced: 4 days ago
JSON representation
Modifies strings to all use the same quote where possible
- Host: GitHub
- URL: https://github.com/myint/unify
- Owner: myint
- License: mit
- Created: 2013-03-24T18:02:19.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2022-07-04T21:06:04.000Z (over 2 years ago)
- Last Synced: 2024-08-03T17:09:51.478Z (3 months ago)
- Topics: formatter, python
- Language: Python
- Homepage: https://pypi.python.org/pypi/unify
- Size: 37.1 KB
- Stars: 93
- Watchers: 7
- Forks: 15
- Open Issues: 12
-
Metadata Files:
- Readme: README.rst
- License: LICENSE
Awesome Lists containing this project
- awesome-python-code-formatters - unify
README
=====
unify
=====.. image:: https://travis-ci.org/myint/unify.svg?branch=master
:target: https://travis-ci.org/myint/unify
:alt: Build statusModifies strings to all use the same quote where possible.
Example
=======After running::
$ unify --in-place example.py
this code
.. code-block:: python
x = "abc"
y = 'hello'gets formatted into this
.. code-block:: python
x = 'abc'
y = 'hello'