Sophie

Sophie

distrib > Mageia > 7 > i586 > media > core-release > by-pkgid > bc55833f04f370ac3ed453ef5b0ad686 > files > 261

python2-gridfs-3.7.2-1.mga7.i586.rpm


<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
  "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">
  <head>
    <meta http-equiv="X-UA-Compatible" content="IE=Edge" />
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>results – Result class definitions &#8212; PyMongo 3.7.2 documentation</title>
    <link rel="stylesheet" href="../../_static/pydoctheme.css" type="text/css" />
    <link rel="stylesheet" href="../../_static/pygments.css" type="text/css" />
    
    <script type="text/javascript" id="documentation_options" data-url_root="../../" src="../../_static/documentation_options.js"></script>
    <script type="text/javascript" src="../../_static/jquery.js"></script>
    <script type="text/javascript" src="../../_static/underscore.js"></script>
    <script type="text/javascript" src="../../_static/doctools.js"></script>
    <script type="text/javascript" src="../../_static/language_data.js"></script>
    
    <script type="text/javascript" src="../../_static/sidebar.js"></script>
    
    <link rel="index" title="Index" href="../../genindex.html" />
    <link rel="search" title="Search" href="../../search.html" />
    <link rel="next" title="son_manipulator – Manipulators that can edit SON documents as they are saved or retrieved" href="son_manipulator.html" />
    <link rel="prev" title="read_preferences – Utilities for choosing which member of a replica set to read from." href="read_preferences.html" /> 
  </head><body>
    <div class="related" role="navigation" aria-label="related navigation">
      <h3>Navigation</h3>
      <ul>
        <li class="right" style="margin-right: 10px">
          <a href="../../genindex.html" title="General Index"
             accesskey="I">index</a></li>
        <li class="right" >
          <a href="../../py-modindex.html" title="Python Module Index"
             >modules</a> |</li>
        <li class="right" >
          <a href="son_manipulator.html" title="son_manipulator – Manipulators that can edit SON documents as they are saved or retrieved"
             accesskey="N">next</a> |</li>
        <li class="right" >
          <a href="read_preferences.html" title="read_preferences – Utilities for choosing which member of a replica set to read from."
             accesskey="P">previous</a> |</li>
        <li class="nav-item nav-item-0"><a href="../../index.html">PyMongo 3.7.2 documentation</a> &#187;</li>
          <li class="nav-item nav-item-1"><a href="../index.html" >API Documentation</a> &#187;</li>
          <li class="nav-item nav-item-2"><a href="index.html" accesskey="U"><code class="docutils literal notranslate"><span class="pre">pymongo</span></code> – Python driver for MongoDB</a> &#187;</li> 
      </ul>
    </div>  

    <div class="document">
      <div class="documentwrapper">
        <div class="bodywrapper">
          <div class="body" role="main">
            
  <div class="section" id="module-pymongo.results">
<span id="results-result-class-definitions"></span><h1><code class="xref py py-mod docutils literal notranslate"><span class="pre">results</span></code> – Result class definitions<a class="headerlink" href="#module-pymongo.results" title="Permalink to this headline">¶</a></h1>
<p>Result class definitions.</p>
<dl class="class">
<dt id="pymongo.results.BulkWriteResult">
<em class="property">class </em><code class="descclassname">pymongo.results.</code><code class="descname">BulkWriteResult</code><span class="sig-paren">(</span><em>bulk_api_result</em>, <em>acknowledged</em><span class="sig-paren">)</span><a class="headerlink" href="#pymongo.results.BulkWriteResult" title="Permalink to this definition">¶</a></dt>
<dd><p>Create a BulkWriteResult instance.</p>
<table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first last simple">
<li><cite>bulk_api_result</cite>: A result dict from the bulk API</li>
<li><cite>acknowledged</cite>: Was this write result acknowledged? If <code class="docutils literal notranslate"><span class="pre">False</span></code>
then all properties of this object will raise
<a class="reference internal" href="errors.html#pymongo.errors.InvalidOperation" title="pymongo.errors.InvalidOperation"><code class="xref py py-exc docutils literal notranslate"><span class="pre">InvalidOperation</span></code></a>.</li>
</ul>
</td>
</tr>
</tbody>
</table>
<dl class="attribute">
<dt id="pymongo.results.BulkWriteResult.acknowledged">
<code class="descname">acknowledged</code><a class="headerlink" href="#pymongo.results.BulkWriteResult.acknowledged" title="Permalink to this definition">¶</a></dt>
<dd><p>Is this the result of an acknowledged write operation?</p>
<p>The <a class="reference internal" href="#pymongo.results.BulkWriteResult.acknowledged" title="pymongo.results.BulkWriteResult.acknowledged"><code class="xref py py-attr docutils literal notranslate"><span class="pre">acknowledged</span></code></a> attribute will be <code class="docutils literal notranslate"><span class="pre">False</span></code> when using
<code class="docutils literal notranslate"><span class="pre">WriteConcern(w=0)</span></code>, otherwise <code class="docutils literal notranslate"><span class="pre">True</span></code>.</p>
<div class="admonition note">
<p class="first admonition-title">Note</p>
<p class="last">If the <a class="reference internal" href="#pymongo.results.BulkWriteResult.acknowledged" title="pymongo.results.BulkWriteResult.acknowledged"><code class="xref py py-attr docutils literal notranslate"><span class="pre">acknowledged</span></code></a> attribute is <code class="docutils literal notranslate"><span class="pre">False</span></code> all other
attibutes of this class will raise
<a class="reference internal" href="errors.html#pymongo.errors.InvalidOperation" title="pymongo.errors.InvalidOperation"><code class="xref py py-class docutils literal notranslate"><span class="pre">InvalidOperation</span></code></a> when accessed. Values for
other attributes cannot be determined if the write operation was
unacknowledged.</p>
</div>
<div class="admonition seealso">
<p class="first admonition-title">See also</p>
<p class="last"><a class="reference internal" href="write_concern.html#pymongo.write_concern.WriteConcern" title="pymongo.write_concern.WriteConcern"><code class="xref py py-class docutils literal notranslate"><span class="pre">WriteConcern</span></code></a></p>
</div>
</dd></dl>

<dl class="attribute">
<dt id="pymongo.results.BulkWriteResult.bulk_api_result">
<code class="descname">bulk_api_result</code><a class="headerlink" href="#pymongo.results.BulkWriteResult.bulk_api_result" title="Permalink to this definition">¶</a></dt>
<dd><p>The raw bulk API result.</p>
</dd></dl>

<dl class="attribute">
<dt id="pymongo.results.BulkWriteResult.deleted_count">
<code class="descname">deleted_count</code><a class="headerlink" href="#pymongo.results.BulkWriteResult.deleted_count" title="Permalink to this definition">¶</a></dt>
<dd><p>The number of documents deleted.</p>
</dd></dl>

<dl class="attribute">
<dt id="pymongo.results.BulkWriteResult.inserted_count">
<code class="descname">inserted_count</code><a class="headerlink" href="#pymongo.results.BulkWriteResult.inserted_count" title="Permalink to this definition">¶</a></dt>
<dd><p>The number of documents inserted.</p>
</dd></dl>

<dl class="attribute">
<dt id="pymongo.results.BulkWriteResult.matched_count">
<code class="descname">matched_count</code><a class="headerlink" href="#pymongo.results.BulkWriteResult.matched_count" title="Permalink to this definition">¶</a></dt>
<dd><p>The number of documents matched for an update.</p>
</dd></dl>

<dl class="attribute">
<dt id="pymongo.results.BulkWriteResult.modified_count">
<code class="descname">modified_count</code><a class="headerlink" href="#pymongo.results.BulkWriteResult.modified_count" title="Permalink to this definition">¶</a></dt>
<dd><p>The number of documents modified.</p>
<div class="admonition note">
<p class="first admonition-title">Note</p>
<p class="last">modified_count is only reported by MongoDB 2.6 and later.
When connected to an earlier server version, or in certain mixed
version sharding configurations, this attribute will be set to
<code class="docutils literal notranslate"><span class="pre">None</span></code>.</p>
</div>
</dd></dl>

<dl class="attribute">
<dt id="pymongo.results.BulkWriteResult.upserted_count">
<code class="descname">upserted_count</code><a class="headerlink" href="#pymongo.results.BulkWriteResult.upserted_count" title="Permalink to this definition">¶</a></dt>
<dd><p>The number of documents upserted.</p>
</dd></dl>

<dl class="attribute">
<dt id="pymongo.results.BulkWriteResult.upserted_ids">
<code class="descname">upserted_ids</code><a class="headerlink" href="#pymongo.results.BulkWriteResult.upserted_ids" title="Permalink to this definition">¶</a></dt>
<dd><p>A map of operation index to the _id of the upserted document.</p>
</dd></dl>

</dd></dl>

<dl class="class">
<dt id="pymongo.results.DeleteResult">
<em class="property">class </em><code class="descclassname">pymongo.results.</code><code class="descname">DeleteResult</code><span class="sig-paren">(</span><em>raw_result</em>, <em>acknowledged</em><span class="sig-paren">)</span><a class="headerlink" href="#pymongo.results.DeleteResult" title="Permalink to this definition">¶</a></dt>
<dd><p>The return type for <a class="reference internal" href="collection.html#pymongo.collection.Collection.delete_one" title="pymongo.collection.Collection.delete_one"><code class="xref py py-meth docutils literal notranslate"><span class="pre">delete_one()</span></code></a>
and <a class="reference internal" href="collection.html#pymongo.collection.Collection.delete_many" title="pymongo.collection.Collection.delete_many"><code class="xref py py-meth docutils literal notranslate"><span class="pre">delete_many()</span></code></a></p>
<dl class="attribute">
<dt id="pymongo.results.DeleteResult.acknowledged">
<code class="descname">acknowledged</code><a class="headerlink" href="#pymongo.results.DeleteResult.acknowledged" title="Permalink to this definition">¶</a></dt>
<dd><p>Is this the result of an acknowledged write operation?</p>
<p>The <a class="reference internal" href="#pymongo.results.DeleteResult.acknowledged" title="pymongo.results.DeleteResult.acknowledged"><code class="xref py py-attr docutils literal notranslate"><span class="pre">acknowledged</span></code></a> attribute will be <code class="docutils literal notranslate"><span class="pre">False</span></code> when using
<code class="docutils literal notranslate"><span class="pre">WriteConcern(w=0)</span></code>, otherwise <code class="docutils literal notranslate"><span class="pre">True</span></code>.</p>
<div class="admonition note">
<p class="first admonition-title">Note</p>
<p class="last">If the <a class="reference internal" href="#pymongo.results.DeleteResult.acknowledged" title="pymongo.results.DeleteResult.acknowledged"><code class="xref py py-attr docutils literal notranslate"><span class="pre">acknowledged</span></code></a> attribute is <code class="docutils literal notranslate"><span class="pre">False</span></code> all other
attibutes of this class will raise
<a class="reference internal" href="errors.html#pymongo.errors.InvalidOperation" title="pymongo.errors.InvalidOperation"><code class="xref py py-class docutils literal notranslate"><span class="pre">InvalidOperation</span></code></a> when accessed. Values for
other attributes cannot be determined if the write operation was
unacknowledged.</p>
</div>
<div class="admonition seealso">
<p class="first admonition-title">See also</p>
<p class="last"><a class="reference internal" href="write_concern.html#pymongo.write_concern.WriteConcern" title="pymongo.write_concern.WriteConcern"><code class="xref py py-class docutils literal notranslate"><span class="pre">WriteConcern</span></code></a></p>
</div>
</dd></dl>

<dl class="attribute">
<dt id="pymongo.results.DeleteResult.deleted_count">
<code class="descname">deleted_count</code><a class="headerlink" href="#pymongo.results.DeleteResult.deleted_count" title="Permalink to this definition">¶</a></dt>
<dd><p>The number of documents deleted.</p>
</dd></dl>

<dl class="attribute">
<dt id="pymongo.results.DeleteResult.raw_result">
<code class="descname">raw_result</code><a class="headerlink" href="#pymongo.results.DeleteResult.raw_result" title="Permalink to this definition">¶</a></dt>
<dd><p>The raw result document returned by the server.</p>
</dd></dl>

</dd></dl>

<dl class="class">
<dt id="pymongo.results.InsertManyResult">
<em class="property">class </em><code class="descclassname">pymongo.results.</code><code class="descname">InsertManyResult</code><span class="sig-paren">(</span><em>inserted_ids</em>, <em>acknowledged</em><span class="sig-paren">)</span><a class="headerlink" href="#pymongo.results.InsertManyResult" title="Permalink to this definition">¶</a></dt>
<dd><p>The return type for <a class="reference internal" href="collection.html#pymongo.collection.Collection.insert_many" title="pymongo.collection.Collection.insert_many"><code class="xref py py-meth docutils literal notranslate"><span class="pre">insert_many()</span></code></a>.</p>
<dl class="attribute">
<dt id="pymongo.results.InsertManyResult.acknowledged">
<code class="descname">acknowledged</code><a class="headerlink" href="#pymongo.results.InsertManyResult.acknowledged" title="Permalink to this definition">¶</a></dt>
<dd><p>Is this the result of an acknowledged write operation?</p>
<p>The <a class="reference internal" href="#pymongo.results.InsertManyResult.acknowledged" title="pymongo.results.InsertManyResult.acknowledged"><code class="xref py py-attr docutils literal notranslate"><span class="pre">acknowledged</span></code></a> attribute will be <code class="docutils literal notranslate"><span class="pre">False</span></code> when using
<code class="docutils literal notranslate"><span class="pre">WriteConcern(w=0)</span></code>, otherwise <code class="docutils literal notranslate"><span class="pre">True</span></code>.</p>
<div class="admonition note">
<p class="first admonition-title">Note</p>
<p class="last">If the <a class="reference internal" href="#pymongo.results.InsertManyResult.acknowledged" title="pymongo.results.InsertManyResult.acknowledged"><code class="xref py py-attr docutils literal notranslate"><span class="pre">acknowledged</span></code></a> attribute is <code class="docutils literal notranslate"><span class="pre">False</span></code> all other
attibutes of this class will raise
<a class="reference internal" href="errors.html#pymongo.errors.InvalidOperation" title="pymongo.errors.InvalidOperation"><code class="xref py py-class docutils literal notranslate"><span class="pre">InvalidOperation</span></code></a> when accessed. Values for
other attributes cannot be determined if the write operation was
unacknowledged.</p>
</div>
<div class="admonition seealso">
<p class="first admonition-title">See also</p>
<p class="last"><a class="reference internal" href="write_concern.html#pymongo.write_concern.WriteConcern" title="pymongo.write_concern.WriteConcern"><code class="xref py py-class docutils literal notranslate"><span class="pre">WriteConcern</span></code></a></p>
</div>
</dd></dl>

<dl class="attribute">
<dt id="pymongo.results.InsertManyResult.inserted_ids">
<code class="descname">inserted_ids</code><a class="headerlink" href="#pymongo.results.InsertManyResult.inserted_ids" title="Permalink to this definition">¶</a></dt>
<dd><p>A list of _ids of the inserted documents, in the order provided.</p>
<div class="admonition note">
<p class="first admonition-title">Note</p>
<p class="last">If <code class="docutils literal notranslate"><span class="pre">False</span></code> is passed for the <cite>ordered</cite> parameter to
<a class="reference internal" href="collection.html#pymongo.collection.Collection.insert_many" title="pymongo.collection.Collection.insert_many"><code class="xref py py-meth docutils literal notranslate"><span class="pre">insert_many()</span></code></a> the server
may have inserted the documents in a different order than what
is presented here.</p>
</div>
</dd></dl>

</dd></dl>

<dl class="class">
<dt id="pymongo.results.InsertOneResult">
<em class="property">class </em><code class="descclassname">pymongo.results.</code><code class="descname">InsertOneResult</code><span class="sig-paren">(</span><em>inserted_id</em>, <em>acknowledged</em><span class="sig-paren">)</span><a class="headerlink" href="#pymongo.results.InsertOneResult" title="Permalink to this definition">¶</a></dt>
<dd><p>The return type for <a class="reference internal" href="collection.html#pymongo.collection.Collection.insert_one" title="pymongo.collection.Collection.insert_one"><code class="xref py py-meth docutils literal notranslate"><span class="pre">insert_one()</span></code></a>.</p>
<dl class="attribute">
<dt id="pymongo.results.InsertOneResult.acknowledged">
<code class="descname">acknowledged</code><a class="headerlink" href="#pymongo.results.InsertOneResult.acknowledged" title="Permalink to this definition">¶</a></dt>
<dd><p>Is this the result of an acknowledged write operation?</p>
<p>The <a class="reference internal" href="#pymongo.results.InsertOneResult.acknowledged" title="pymongo.results.InsertOneResult.acknowledged"><code class="xref py py-attr docutils literal notranslate"><span class="pre">acknowledged</span></code></a> attribute will be <code class="docutils literal notranslate"><span class="pre">False</span></code> when using
<code class="docutils literal notranslate"><span class="pre">WriteConcern(w=0)</span></code>, otherwise <code class="docutils literal notranslate"><span class="pre">True</span></code>.</p>
<div class="admonition note">
<p class="first admonition-title">Note</p>
<p class="last">If the <a class="reference internal" href="#pymongo.results.InsertOneResult.acknowledged" title="pymongo.results.InsertOneResult.acknowledged"><code class="xref py py-attr docutils literal notranslate"><span class="pre">acknowledged</span></code></a> attribute is <code class="docutils literal notranslate"><span class="pre">False</span></code> all other
attibutes of this class will raise
<a class="reference internal" href="errors.html#pymongo.errors.InvalidOperation" title="pymongo.errors.InvalidOperation"><code class="xref py py-class docutils literal notranslate"><span class="pre">InvalidOperation</span></code></a> when accessed. Values for
other attributes cannot be determined if the write operation was
unacknowledged.</p>
</div>
<div class="admonition seealso">
<p class="first admonition-title">See also</p>
<p class="last"><a class="reference internal" href="write_concern.html#pymongo.write_concern.WriteConcern" title="pymongo.write_concern.WriteConcern"><code class="xref py py-class docutils literal notranslate"><span class="pre">WriteConcern</span></code></a></p>
</div>
</dd></dl>

<dl class="attribute">
<dt id="pymongo.results.InsertOneResult.inserted_id">
<code class="descname">inserted_id</code><a class="headerlink" href="#pymongo.results.InsertOneResult.inserted_id" title="Permalink to this definition">¶</a></dt>
<dd><p>The inserted document’s _id.</p>
</dd></dl>

</dd></dl>

<dl class="class">
<dt id="pymongo.results.UpdateResult">
<em class="property">class </em><code class="descclassname">pymongo.results.</code><code class="descname">UpdateResult</code><span class="sig-paren">(</span><em>raw_result</em>, <em>acknowledged</em><span class="sig-paren">)</span><a class="headerlink" href="#pymongo.results.UpdateResult" title="Permalink to this definition">¶</a></dt>
<dd><p>The return type for <a class="reference internal" href="collection.html#pymongo.collection.Collection.update_one" title="pymongo.collection.Collection.update_one"><code class="xref py py-meth docutils literal notranslate"><span class="pre">update_one()</span></code></a>,
<a class="reference internal" href="collection.html#pymongo.collection.Collection.update_many" title="pymongo.collection.Collection.update_many"><code class="xref py py-meth docutils literal notranslate"><span class="pre">update_many()</span></code></a>, and
<a class="reference internal" href="collection.html#pymongo.collection.Collection.replace_one" title="pymongo.collection.Collection.replace_one"><code class="xref py py-meth docutils literal notranslate"><span class="pre">replace_one()</span></code></a>.</p>
<dl class="attribute">
<dt id="pymongo.results.UpdateResult.acknowledged">
<code class="descname">acknowledged</code><a class="headerlink" href="#pymongo.results.UpdateResult.acknowledged" title="Permalink to this definition">¶</a></dt>
<dd><p>Is this the result of an acknowledged write operation?</p>
<p>The <a class="reference internal" href="#pymongo.results.UpdateResult.acknowledged" title="pymongo.results.UpdateResult.acknowledged"><code class="xref py py-attr docutils literal notranslate"><span class="pre">acknowledged</span></code></a> attribute will be <code class="docutils literal notranslate"><span class="pre">False</span></code> when using
<code class="docutils literal notranslate"><span class="pre">WriteConcern(w=0)</span></code>, otherwise <code class="docutils literal notranslate"><span class="pre">True</span></code>.</p>
<div class="admonition note">
<p class="first admonition-title">Note</p>
<p class="last">If the <a class="reference internal" href="#pymongo.results.UpdateResult.acknowledged" title="pymongo.results.UpdateResult.acknowledged"><code class="xref py py-attr docutils literal notranslate"><span class="pre">acknowledged</span></code></a> attribute is <code class="docutils literal notranslate"><span class="pre">False</span></code> all other
attibutes of this class will raise
<a class="reference internal" href="errors.html#pymongo.errors.InvalidOperation" title="pymongo.errors.InvalidOperation"><code class="xref py py-class docutils literal notranslate"><span class="pre">InvalidOperation</span></code></a> when accessed. Values for
other attributes cannot be determined if the write operation was
unacknowledged.</p>
</div>
<div class="admonition seealso">
<p class="first admonition-title">See also</p>
<p class="last"><a class="reference internal" href="write_concern.html#pymongo.write_concern.WriteConcern" title="pymongo.write_concern.WriteConcern"><code class="xref py py-class docutils literal notranslate"><span class="pre">WriteConcern</span></code></a></p>
</div>
</dd></dl>

<dl class="attribute">
<dt id="pymongo.results.UpdateResult.matched_count">
<code class="descname">matched_count</code><a class="headerlink" href="#pymongo.results.UpdateResult.matched_count" title="Permalink to this definition">¶</a></dt>
<dd><p>The number of documents matched for this update.</p>
</dd></dl>

<dl class="attribute">
<dt id="pymongo.results.UpdateResult.modified_count">
<code class="descname">modified_count</code><a class="headerlink" href="#pymongo.results.UpdateResult.modified_count" title="Permalink to this definition">¶</a></dt>
<dd><p>The number of documents modified.</p>
<div class="admonition note">
<p class="first admonition-title">Note</p>
<p class="last">modified_count is only reported by MongoDB 2.6 and later.
When connected to an earlier server version, or in certain mixed
version sharding configurations, this attribute will be set to
<code class="docutils literal notranslate"><span class="pre">None</span></code>.</p>
</div>
</dd></dl>

<dl class="attribute">
<dt id="pymongo.results.UpdateResult.raw_result">
<code class="descname">raw_result</code><a class="headerlink" href="#pymongo.results.UpdateResult.raw_result" title="Permalink to this definition">¶</a></dt>
<dd><p>The raw result document returned by the server.</p>
</dd></dl>

<dl class="attribute">
<dt id="pymongo.results.UpdateResult.upserted_id">
<code class="descname">upserted_id</code><a class="headerlink" href="#pymongo.results.UpdateResult.upserted_id" title="Permalink to this definition">¶</a></dt>
<dd><p>The _id of the inserted document if an upsert took place. Otherwise
<code class="docutils literal notranslate"><span class="pre">None</span></code>.</p>
</dd></dl>

</dd></dl>

</div>


          </div>
        </div>
      </div>
      <div class="sphinxsidebar" role="navigation" aria-label="main navigation">
        <div class="sphinxsidebarwrapper">
  <h4>Previous topic</h4>
  <p class="topless"><a href="read_preferences.html"
                        title="previous chapter"><code class="docutils literal notranslate"><span class="pre">read_preferences</span></code> – Utilities for choosing which member of a replica set to read from.</a></p>
  <h4>Next topic</h4>
  <p class="topless"><a href="son_manipulator.html"
                        title="next chapter"><code class="docutils literal notranslate"><span class="pre">son_manipulator</span></code> – Manipulators that can edit SON documents as they are saved or retrieved</a></p>
  <div role="note" aria-label="source link">
    <h3>This Page</h3>
    <ul class="this-page-menu">
      <li><a href="../../_sources/api/pymongo/results.rst.txt"
            rel="nofollow">Show Source</a></li>
    </ul>
   </div>
<div id="searchbox" style="display: none" role="search">
  <h3>Quick search</h3>
    <div class="searchformwrapper">
    <form class="search" action="../../search.html" method="get">
      <input type="text" name="q" />
      <input type="submit" value="Go" />
      <input type="hidden" name="check_keywords" value="yes" />
      <input type="hidden" name="area" value="default" />
    </form>
    </div>
</div>
<script type="text/javascript">$('#searchbox').show(0);</script>
        </div>
      </div>
      <div class="clearer"></div>
    </div>
    <div class="related" role="navigation" aria-label="related navigation">
      <h3>Navigation</h3>
      <ul>
        <li class="right" style="margin-right: 10px">
          <a href="../../genindex.html" title="General Index"
             >index</a></li>
        <li class="right" >
          <a href="../../py-modindex.html" title="Python Module Index"
             >modules</a> |</li>
        <li class="right" >
          <a href="son_manipulator.html" title="son_manipulator – Manipulators that can edit SON documents as they are saved or retrieved"
             >next</a> |</li>
        <li class="right" >
          <a href="read_preferences.html" title="read_preferences – Utilities for choosing which member of a replica set to read from."
             >previous</a> |</li>
        <li class="nav-item nav-item-0"><a href="../../index.html">PyMongo 3.7.2 documentation</a> &#187;</li>
          <li class="nav-item nav-item-1"><a href="../index.html" >API Documentation</a> &#187;</li>
          <li class="nav-item nav-item-2"><a href="index.html" ><code class="docutils literal notranslate"><span class="pre">pymongo</span></code> – Python driver for MongoDB</a> &#187;</li> 
      </ul>
    </div>
    <div class="footer" role="contentinfo">
        &#169; Copyright MongoDB, Inc. 2008-present. MongoDB, Mongo, and the leaf logo are registered trademarks of MongoDB, Inc.
    </div>
  </body>
</html>