Skip to content
This repository has been archived by the owner on Jan 13, 2019. It is now read-only.

Commit

Permalink
0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jjangsangy committed Dec 1, 2014
1 parent bec7f39 commit 47a6ef0
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 9 deletions.
7 changes: 7 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@
Release History
=================

0.2.0 (2014-11-30)
------------------

- Bug fixes
- Implmented concurrency based on Asyncronous threads and coroutines
- Up to 10x performance speedup

0.1.6 (2014-11-30)
-------------------

Expand Down
18 changes: 10 additions & 8 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ Py-translate is an easy to use translation tool for the command line.
.. figure:: https://raw.githubusercontent.com/jjangsangy/py-translate/master/img/alice.gif
:alt: Translate Lewis Carroll: Alice in Wonderland

Translate Lewis Carroll: Alice in Wonderland
The end goal is a simple application for translating text in the
terminal. Text can be generated interactively or programmatically in the
shell environment. Through command line arguments, file descriptors or
Expand All @@ -30,7 +31,7 @@ Installation
From PyPI with pip (easy)
~~~~~~~~~~~~~~~~~~~~~~~~~

.. code-block:: sh
.. code:: sh
$ pip install py-translate
Expand All @@ -39,13 +40,13 @@ From Source at Github

- Clone the repository

.. code-block:: sh
.. code:: sh
$ git clone https://github.com/jjangsangy/py-translate.git
- Install with setup.py

.. code-block:: sh
.. code:: sh
$ python setup.py install
Expand All @@ -54,21 +55,22 @@ Usage

- Default will translate from english to target language

.. code-block:: sh
.. code:: sh
$ translate zh-TW <<< 'Hello World!'
你好世界!
.. figure:: https://raw.githubusercontent.com/jjangsangy/py-translate/master/img/helloworld.gif
:alt: Hello World

Hello World
Examples
--------

- Just as easily specify a source language by providing it as first
argument

.. code-block:: sh
.. code:: sh
# Translate Hello from French to English
$ translate fr en <<< 'Bonjour, comment allez-vous!'
Expand All @@ -77,7 +79,7 @@ Examples
Redirect from File
~~~~~~~~~~~~~~~~~~

.. code-block:: sh
.. code:: sh
$ translate zh-TW < 'alice.txt'
Expand All @@ -94,7 +96,7 @@ Redirect from File
Chaining together Pipes
~~~~~~~~~~~~~~~~~~~~~~~

.. code-block:: sh
.. code:: sh
# Multiple Chaining
$ echo 'What is love?' | translate zh-TW | translate zh-TW ko | translate ko fr | translate fr en
Expand All @@ -103,7 +105,7 @@ Chaining together Pipes
Be Creative!
~~~~~~~~~~~~

.. code-block:: sh
.. code:: sh
# Grocery List
$ cat << BUY | translate ko
Expand Down
2 changes: 1 addition & 1 deletion translate/__version__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
__version__ = '0.1.6'
__version__ = '0.2.0'
__build__ = 'release'

0 comments on commit 47a6ef0

Please sign in to comment.