/usr/share/doc/python-bsddb3/html/contents.html is in python-bsddb3-doc 6.0.1-1build1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 | <!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="Content-Type" content="text/html; charset=utf-8" />
<title>Python Bindings for Berkeley DB 4.3 thru 6.0 — PyBSDDB 6.0.0 documentation</title>
<link rel="stylesheet" href="static/default.css" type="text/css" />
<link rel="stylesheet" href="static/pygments.css" type="text/css" />
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT: '',
VERSION: '6.0.0',
COLLAPSE_INDEX: false,
FILE_SUFFIX: '.html',
HAS_SOURCE: false
};
</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>
<link rel="top" title="PyBSDDB 6.0.0 documentation" href="index.html" />
<link rel="next" title="Berkeley DB 4.3 thru 6.0 Python Extension Package" href="introduction.html" />
</head>
<body>
<div class="related">
<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="introduction.html" title="Berkeley DB 4.3 thru 6.0 Python Extension Package"
accesskey="N">next</a> |</li>
<li><a href="#">PyBSDDB 6.0.0 documentation</a> »</li>
</ul>
</div>
<div class="document">
<div class="documentwrapper">
<div class="bodywrapper">
<div class="body">
<div class="section" id="python-bindings-for-berkeley-db-4-3-thru-6-0">
<h1>Python Bindings for Berkeley DB 4.3 thru 6.0<a class="headerlink" href="#python-bindings-for-berkeley-db-4-3-thru-6-0" title="Permalink to this headline">¶</a></h1>
<div class="section" id="introduction">
<h2>Introduction<a class="headerlink" href="#introduction" title="Permalink to this headline">¶</a></h2>
<p>This handcrafted package contains Python wrappers for <a class="reference external" href="http://www.oracle.com/technetwork/database/berkeleydb/overview/index.html">Berkeley DB</a>,
the Open Source embedded database system. Berkeley DB is a programmatic
toolkit that provides high-performance built-in database support for
desktop and server applications.</p>
<p>The Berkeley DB access methods include B+tree, Extended Linear Hashing,
Fixed and Variable-length records, and Queues. Berkeley DB provides full
transactional support, database recovery, online backups, multi-threaded
and multi-process access, etc.</p>
<p>The Python wrappers allow you to store Python string objects of any
length, keyed either by strings or integers depending on the database
access method. With the use of another module in the package standard
shelve-like functionality is provided allowing you to store any
picklable Python object!</p>
<p>Berkeley DB is very powerful and versatile, but it is complex to
use correctly. <a class="reference external" href="http://docs.oracle.com/cd/E17076_03/html/toc.htm">Oracle documentation</a> is very
complete. Please, review it.</p>
<p>Since June 2013 (release 6.0.0), this project accepts donations. Please,
contribute if you can. Details.</p>
</div>
<div class="section" id="documentation-index">
<h2>Documentation Index<a class="headerlink" href="#documentation-index" title="Permalink to this headline">¶</a></h2>
<div class="toctree-wrapper compound">
<ul>
<li class="toctree-l1"><a class="reference internal" href="introduction.html">Berkeley DB 4.3 thru 6.0 Python Extension Package</a><ul>
<li class="toctree-l2"><a class="reference internal" href="introduction.html#introduction">Introduction</a></li>
<li class="toctree-l2"><a class="reference internal" href="introduction.html#types-provided">Types Provided</a></li>
<li class="toctree-l2"><a class="reference internal" href="introduction.html#top-level-functions">Top level functions</a></li>
<li class="toctree-l2"><a class="reference internal" href="introduction.html#exceptions-provided">Exceptions Provided</a></li>
<li class="toctree-l2"><a class="reference internal" href="introduction.html#other-package-modules">Other Package Modules</a></li>
<li class="toctree-l2"><a class="reference internal" href="introduction.html#testing">Testing</a></li>
<li class="toctree-l2"><a class="reference internal" href="introduction.html#reference">Reference</a></li>
</ul>
</li>
<li class="toctree-l1"><a class="reference internal" href="dbenv.html">DBEnv</a><ul>
<li class="toctree-l2"><a class="reference internal" href="dbenv.html#dbenv-attributes">DBEnv Attributes</a></li>
<li class="toctree-l2"><a class="reference internal" href="dbenv.html#dbenv-methods">DBEnv Methods</a></li>
<li class="toctree-l2"><a class="reference internal" href="dbenv.html#dbenv-replication-manager-methods">DBEnv Replication Manager Methods</a></li>
<li class="toctree-l2"><a class="reference internal" href="dbenv.html#dbenv-replication-methods">DBEnv Replication Methods</a></li>
</ul>
</li>
<li class="toctree-l1"><a class="reference internal" href="db.html">DB</a><ul>
<li class="toctree-l2"><a class="reference internal" href="db.html#db-methods">DB Methods</a></li>
<li class="toctree-l2"><a class="reference internal" href="db.html#db-mapping-and-compatibility-methods">DB Mapping and Compatibility Methods</a></li>
</ul>
</li>
<li class="toctree-l1"><a class="reference internal" href="dbcursor.html">DBCursor</a><ul>
<li class="toctree-l2"><a class="reference internal" href="dbcursor.html#dbcursor-methods">DBCursor Methods</a></li>
<li class="toctree-l2"><a class="reference internal" href="dbcursor.html#dbcursor-get-methods">DBCursor Get Methods</a></li>
</ul>
</li>
<li class="toctree-l1"><a class="reference internal" href="dblogcursor.html">DBLogCursor</a><ul>
<li class="toctree-l2"><a class="reference internal" href="dblogcursor.html#dblogcursor-methods">DBLogCursor Methods</a></li>
<li class="toctree-l2"><a class="reference internal" href="dblogcursor.html#dblogcursor-get-methods">DBLogCursor Get Methods</a></li>
</ul>
</li>
<li class="toctree-l1"><a class="reference internal" href="dbtxn.html">DBTxn</a><ul>
<li class="toctree-l2"><a class="reference internal" href="dbtxn.html#dbtxn-methods">DBTxn Methods</a></li>
</ul>
</li>
<li class="toctree-l1"><a class="reference internal" href="dblock.html">DBLock</a></li>
<li class="toctree-l1"><a class="reference internal" href="dbsequence.html">DBSequence</a><ul>
<li class="toctree-l2"><a class="reference internal" href="dbsequence.html#dbsequence-methods">DBSequence Methods</a></li>
</ul>
</li>
<li class="toctree-l1"><a class="reference internal" href="dbsite.html">DBSite</a><ul>
<li class="toctree-l2"><a class="reference internal" href="dbsite.html#dbsite-methods">DBSite Methods</a></li>
</ul>
</li>
<li class="toctree-l1"><a class="reference internal" href="history.html">History</a></li>
<li class="toctree-l1"><a class="reference internal" href="donate.html">DONATE!</a></li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="sphinxsidebar">
<div class="sphinxsidebarwrapper">
<h3><a href="#">Table Of Contents</a></h3>
<ul>
<li><a class="reference internal" href="#">Python Bindings for Berkeley DB 4.3 thru 6.0</a><ul>
<li><a class="reference internal" href="#introduction">Introduction</a></li>
<li><a class="reference internal" href="#documentation-index">Documentation Index</a><ul>
</ul>
</li>
</ul>
</li>
</ul>
<h4>Next topic</h4>
<p class="topless"><a href="introduction.html"
title="next chapter">Berkeley DB 4.3 thru 6.0 Python Extension Package</a></p>
<div id="searchbox" style="display: none">
<h3>Quick search</h3>
<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>
<p class="searchtip" style="font-size: 90%">
Enter search terms or a module, class or function name.
</p>
</div>
<script type="text/javascript">$('#searchbox').show(0);</script>
</div>
</div>
<div class="clearer"></div>
</div>
<div class="related">
<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="introduction.html" title="Berkeley DB 4.3 thru 6.0 Python Extension Package"
>next</a> |</li>
<li><a href="#">PyBSDDB 6.0.0 documentation</a> »</li>
</ul>
</div>
<div class="footer">
© Copyright 2008-2013 Jesus Cea Avion.
Last updated on Dec 04, 2013.
Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3.
</div>
</body>
</html>
|