Metadata-Version: 2.0
Name: shortbus
Version: 0.1.0
Summary: Tools to convert Sublime Text snippets into Jetbrains live templates and vice versa
Home-page: https://github.com/brmc/shortbus
Author: Brian McClure
Author-email: brian@mcclure.pw
License: MIT license
Keywords: shortbus
Platform: UNKNOWN
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3.6
Requires-Dist: lxml
Requires-Dist: pyyaml

.. image:: https://img.shields.io/pypi/v/shortbus.svg
        :target: https://pypi.python.org/pypi/shortbus

.. image:: https://img.shields.io/travis/brmc/shortbus.svg
        :target: https://travis-ci.org/brmc/shortbus

.. image:: https://readthedocs.org/projects/shortbus/badge/?version=latest
        :target: https://shortbus.readthedocs.io/en/latest/?badge=latest
        :alt: Documentation Status

.. image:: https://pyup.io/repos/github/brmc/shortbus/shield.svg
     :target: https://pyup.io/repos/github/brmc/shortbus/
     :alt: Updates

========
shortbus
========

Tools to convert Sublime Text snippets into Jetbrains live templates and vice versa


* Free software: MIT license
* Documentation: https://shortbus.readthedocs.io.

Requirements:
-------------

- python3.6+
- lxml
- pyyaml

Quick Start
-----------

Install library:

.. code-block:: console

    $ pip install shortbus

Do stuff:

.. code-block:: python

    transpilers.import_from_yml('./my.yml')
        .import_from_sublimetext('~/path/to/sublimetext/snippetdir/)
        .import_from_jetbrains('~/.PyCharm2016.3/config/liveTemplates/Djaneiro.xml')
        .export_to_jetbrains('shortbus.xml')
        .export_to_yml('shortbus.yml')

.. include:: ./docs/ymlsyntax.rst



=======
History
=======

0.1.0 (2017-02-12)
------------------

* First release on PyPI.


