Skip to content

Commit

Permalink
add some tutorial and history
Browse files Browse the repository at this point in the history
  • Loading branch information
caoshuai03 committed Nov 26, 2019
1 parent 4241021 commit 8f751e5
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 0 deletions.
5 changes: 5 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@
History
=======

2.2.0 (2019-11-25)
------------------

* Add support DDL(CREATE table, ALTER table), DML(simple SELECT, INSERT, DELETE, UPDATE).

2.0.0 (2019-11-14)
------------------

Expand Down
4 changes: 4 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,10 @@ Quickstart
0x02 Tutorial

* The library is so simple.
* All types of SQL have different keys that are easy to identify.
* And then You need to explore it.

.. code:: python
import mysqltokenparser as mtp
Expand Down
6 changes: 6 additions & 0 deletions mysqltokenparser/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,9 @@
__author__ = """gra55"""
__email__ = 'shuai.grass@gmail.com'
__version__ = '2.2.0'


from .mysqltokenparser import mysql_token_parser
import constant

__all__ = ['mysql_token_parser', 'constant']

0 comments on commit 8f751e5

Please sign in to comment.