Metadata-Version: 2.1
Name: mysqldump
Version: 0.0.5
Summary: Mysqldump is a django package that is used to generate the logical backup of the MySQL database
Home-page: UNKNOWN
Author: Nandhakumar D
Author-email: dnandhakumars@gmail.com
License: MIT
Description: Mysqldump is a django package used to generate
        the logical backup of the MySQL database.
        
        Installation
        
        <ul>
            <li>
                <pre> <code> pip install mysqldump </code> </pre>
            </li>
            <li>
                <pre> Add <code>backupdb</code> to your settings.py </pre>
            </li>
            <li>
                <pre> Run the below command </pre> <br>
                <code> ./manage.py dumpdb </code>
            </li>
        </ul>
        
        
        setting.py
        -------------- 
        
        <h2> Installed Apps </h2>
        
        <code>
            INSTALLED_APPS = [
            'backupdb',
        ]
        </code>
        
        <h2> TMP_DIR </h2>
        
        To define custom temporary dir, if not django will use default system tmp directory
        
        0.0.1
        ========
        
        first release
        --------------------
Keywords: mysqldump
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Education
Classifier: Operating System :: POSIX :: Linux
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Description-Content-Type: text/markdown
