0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

pymongoを使う

Last updated at Posted at 2022-06-07

まずすること

 pip install pymongo

mongodbにアクセスしてアカウント作成。

Databaseを立てる

mongodbの左のメニューからdatabaseを選択してBuild a databaseをクリック。
sharedを選択して、名前をCluster0から好きな名前に変更し、createをクリック。
そしたら、quick startに飛ぶのでusernamepasswordに好きな値を入れる。
このuserとpasswordは後に使うのでメモしておいてください。
create userをクリック。
network accessをクリックして、add ip addressをクリック。
connect from anywhereを選択して追加。
databaseに戻り、connectをクリックし、
connect your applicationを選択。
Pythonを選択し、下に出てくるアドレスをコピー。
<password>のところを先程のパスワードに置き換えて、replitならsecretに入れる。

コード

import pymongo
from pymongo import MongoClient
import os
class DataBase(object):
  def __init__(self):
    self.client=MongoClient(os.getenv("client"))
    self.db=self.client['test']
  #def …………
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?