Metadata-Version: 2.1
Name: mysql-to-mongo
Version: 1.0.2
Summary: Migrate your MySql databse to MongoDb.
Home-page: UNKNOWN
Author: ArJun Gawali
Author-email: arjungawali111@gmail.com
License: MIT
Description: #### A Simple python Script to migrate data from MySQL to MongoDB
        
        ---
        
                    Author: ArJun Gawali (arjungawali111@gmail.com)
                    Date: 27 Oct, 2021
                    Version: 1.0.1
                    Purpose: Migrate Data from MySQL to Mongo
        
        ---
        
        You can find the module [here](https://pypi.org/project/mysql-to-mongo/1.0.1/)
        You can install it with following command :
        
        > pip install mysql-to-mongo==0.0.1
        
        ## Functions :
        
        1.  **migrate_all** : Migrate all tables from mysql to mongodb
        
            - **Parameters** :
        
              - **mysqldb_dict** : A Python dictionary of your mysql database details
        
                              Ex :
                                  mysqldb_dict = {
                                      "mysql_host" :"localhost",
                                      "mysql_database" : "sample_database",
                                      "mysql_user" : "root",
                                      "mysql_password" : "*******",
                                  }
        
              - **mongodb_host** : Your MongoDb hostname/Url
              - **mongodb_dbname** : Choose the name of Database in which the data has to migrate.
        
        2.  **migrate_single** : Migrate specified table
        
            - **Parameters** :
        
              - **mysqldb_dict** : A Python dictionary of your mysql database details
        
                              Ex :
                                  mysqldb_dict = {
                                      "mysql_host" :"localhost",
                                      "mysql_database" : "sample_database",
                                      "mysql_user" : "root",
                                      "mysql_password" : "*******",
                                  }
        
              - **mongodb_host** : Your MongoDb hostname/Url
              - **mongodb_dbname** : Choose the name of Database in which the data has to migrate.
              - **table** : Specific table which has to migrate
        
        
        Change Log
        ==========
        
        1.0.1 (27/10/2021)
        -------------------
        - First Release
        
        1.0.2 (27/10/2021)
        -------------------
        - adding linux in os 
Keywords: mysql-to-mongodb,migrate,mysql,mongodb
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Education
Classifier: Operating System :: Microsoft :: Windows :: Windows 10
Classifier: Operating System :: Unix
Classifier: Operating System :: MacOS :: MacOS X
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Description-Content-Type: text/markdown
