sql >> データベース >  >> NoSQL >> MongoDB

Pythonを使用してJSONファイルをMongoDBにインポートする方法

    insert_one 方法:

    import json
    from pymongo import MongoClient
    
    client = MongoClient('localhost', 27017)
    db = client['countries_db']
    collection_currency = db['currency']
    
    with open('currencies.json') as f:
        file_data = json.load(f)
    
    # if pymongo < 3.0, use insert()
    collection_currency.insert(file_data)
    # if pymongo >= 3.0 use insert_one() for inserting one document
    collection_currency.insert_one(file_data)
    # if pymongo >= 3.0 use insert_many() for inserting many documents
    collection_currency.insert_many(file_data)
    
    client.close()
    



    1. AzureのASP.NETCoreを使用してRedisでユーザーセッションを保存する

    2. nodeJSdockerコンテナをmongoDBに接続する方法

    3. MongoDbを使用した移行の処理

    4. MongodbTTLはドキュメントを早期に期限切れにします