Metadata-Version: 2.1
Name: dataplus
Version: 0.1.4
Summary: A tool written in Python to synchronize databases in a simple way
Home-page: https://github.com/hupong/datasync
Author: Paul Hu
Author-email: hupong@gmail.com
License: MIT
Description: 
        # datasync
        A tool written in Python to synchronize databases in a simple way
        
        The format of the configuration file is as follows:
        
        ```
        [sourcedb]
        host = *.*.*.*
        user = yourusername
        password = yourpassword
        port = 1521
        database = databasename
        charset = AL32UTF8
        timestamp = UPDATETIME
        [targetdb]
        host = *.*.*.*
        user = yourusername
        password = yourpassword
        port = 3306
        database = databasename
        charset = utf8mb4
        timestamp = UPDATETIME
        tablelist = tablename1
                    tablename2
                    tablename3
        ```
        
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Requires-Python: >=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*
Description-Content-Type: text/markdown
Provides-Extra: fancy feature
