Python
 Computer >> コンピューター >  >> プログラミング >> Python

PymongoでカスタムPythonオブジェクトをBSONとしてエンコードする方法は?


カスタムPythonオブジェクトをPymongoでBSONとしてエンコードするには、SONManipulatorを作成する必要があります。ドキュメントから:

SONManipulatorインスタンスを使用すると、PyMongoによって自動的に適用される変換を指定できます。

from pymongo.son_manipulator import SONManipulator
class Transform(SONManipulator):
  def transform_incoming(self, son, collection):
    for (key, value) in son.items():
      if isinstance(value, Custom):
        son[key] = encode_custom(value)
      elif isinstance(value, dict): # Make sure we recurse into sub-docs
        son[key] = self.transform_incoming(value, collection)
    return son
  def transform_outgoing(self, son, collection):
    for (key, value) in son.items():
      if isinstance(value, dict):
        if "_type" in value and value["_type"] == "custom":
          son[key] = decode_custom(value)
        else: # Again, make sure to recurse into sub-docs
          son[key] = self.transform_outgoing(value, collection)
    return son

次に、それをpymongoデータベースオブジェクトに追加します-

db.add_son_manipulator(Transform())

numpy配列をPython配列にサイレントにキャストする場合は、_typeフィールドを追加する必要がないことに注意してください。


  1. Pythonパンダ-RangeIndexを作成する方法

    RangeIndexを作成するには、 pandas.RangeIndex()を使用します パンダのメソッド。まず、必要なライブラリをインポートします- import pandas as pd RangeIndexは、単調な範囲の表現に限定されたInt64Indexのメモリ節約の特殊なケースです。 RangeIndexを使用すると、場合によっては計算速度が向上する可能性があります。 start、stop、stepを使用して範囲インデックスを作成します。名前は、インデックスに格納される名前です- index = pd.RangeIndex(start=10, stop=30, step=2,

  2. Bokeh(Python)で画像を操作する方法は?

    Bokehで画像を操作するには、 image_url()を使用します メソッドと画像のリストを渡します。 ステップ :func:show のときにファイルに保存された出力を生成するように、デフォルトの出力状態を構成します と呼ばれます。 プロット用の新しい図を作成します。 指定されたURLから読み込まれた画像をレンダリングします。 Bokehオブジェクトまたはアプリケーションをすぐに表示します。 例 from bokeh.plotting import figure, show, output_file output_file('image.html') p = fi