2013-12-17 08:42:53 +00:00
|
|
|
<!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>accounting.storage — Accounting API 0.1-beta documentation</title>
|
|
|
|
|
2013-12-18 18:17:02 +00:00
|
|
|
<link rel="stylesheet" href="../../_static/pydoctheme.css" type="text/css" />
|
2013-12-17 08:42:53 +00:00
|
|
|
<link rel="stylesheet" href="../../_static/pygments.css" type="text/css" />
|
|
|
|
|
|
|
|
<script type="text/javascript">
|
|
|
|
var DOCUMENTATION_OPTIONS = {
|
|
|
|
URL_ROOT: '../../',
|
|
|
|
VERSION: '0.1-beta',
|
|
|
|
COLLAPSE_INDEX: false,
|
|
|
|
FILE_SUFFIX: '.html',
|
|
|
|
HAS_SOURCE: true
|
|
|
|
};
|
|
|
|
</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="Accounting API 0.1-beta documentation" href="../../index.html" />
|
|
|
|
<link rel="up" title="accounting" href="../accounting.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>
|
2013-12-18 21:46:19 +00:00
|
|
|
<li class="right" >
|
|
|
|
<a href="../../http-routingtable.html" title="HTTP Routing Table"
|
|
|
|
>routing table</a> |</li>
|
2013-12-17 08:42:53 +00:00
|
|
|
<li class="right" >
|
|
|
|
<a href="../../py-modindex.html" title="Python Module Index"
|
|
|
|
>modules</a> |</li>
|
|
|
|
<li><a href="../../index.html">Accounting API 0.1-beta documentation</a> »</li>
|
|
|
|
<li><a href="../index.html" >Module code</a> »</li>
|
|
|
|
<li><a href="../accounting.html" accesskey="U">accounting</a> »</li>
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="document">
|
|
|
|
<div class="documentwrapper">
|
|
|
|
<div class="bodywrapper">
|
|
|
|
<div class="body">
|
|
|
|
|
|
|
|
<h1>Source code for accounting.storage</h1><div class="highlight"><pre>
|
|
|
|
<span class="k">class</span> <span class="nc">Storage</span><span class="p">:</span>
|
|
|
|
<div class="viewcode-block" id="Storage"><a class="viewcode-back" href="../../api/accounting.storage.html#accounting.storage.Storage">[docs]</a> <span class="sd">'''</span>
|
|
|
|
<span class="sd"> ABC for accounting storage</span>
|
|
|
|
<span class="sd"> '''</span>
|
|
|
|
<span class="k">def</span> <span class="nf">__init__</span><span class="p">(</span><span class="bp">self</span><span class="p">,</span> <span class="o">*</span><span class="n">args</span><span class="p">,</span> <span class="o">**</span><span class="n">kw</span><span class="p">):</span>
|
|
|
|
<span class="k">raise</span> <span class="ne">NotImplementedError</span><span class="p">()</span>
|
|
|
|
|
|
|
|
<span class="k">def</span> <span class="nf">get_transactions</span><span class="p">(</span><span class="bp">self</span><span class="p">,</span> <span class="o">*</span><span class="n">args</span><span class="p">,</span> <span class="o">**</span><span class="n">kw</span><span class="p">):</span>
|
|
|
|
<div class="viewcode-block" id="Storage.get_transactions"><a class="viewcode-back" href="../../api/accounting.storage.html#accounting.storage.Storage.get_transactions">[docs]</a> <span class="k">raise</span> <span class="ne">NotImplementedError</span><span class="p">()</span>
|
|
|
|
|
|
|
|
<span class="k">def</span> <span class="nf">get_transaction</span><span class="p">(</span><span class="bp">self</span><span class="p">,</span> <span class="o">*</span><span class="n">args</span><span class="p">,</span> <span class="o">**</span><span class="n">kw</span><span class="p">):</span></div>
|
|
|
|
<div class="viewcode-block" id="Storage.get_transaction"><a class="viewcode-back" href="../../api/accounting.storage.html#accounting.storage.Storage.get_transaction">[docs]</a> <span class="k">raise</span> <span class="ne">NotImplementedError</span><span class="p">()</span>
|
|
|
|
|
|
|
|
<span class="k">def</span> <span class="nf">get_account</span><span class="p">(</span><span class="bp">self</span><span class="p">,</span> <span class="o">*</span><span class="n">args</span><span class="p">,</span> <span class="o">**</span><span class="n">kw</span><span class="p">):</span></div>
|
|
|
|
<div class="viewcode-block" id="Storage.get_account"><a class="viewcode-back" href="../../api/accounting.storage.html#accounting.storage.Storage.get_account">[docs]</a> <span class="k">raise</span> <span class="ne">NotImplementedError</span><span class="p">()</span>
|
|
|
|
|
|
|
|
<span class="k">def</span> <span class="nf">get_accounts</span><span class="p">(</span><span class="bp">self</span><span class="p">,</span> <span class="o">*</span><span class="n">args</span><span class="p">,</span> <span class="o">**</span><span class="n">kw</span><span class="p">):</span></div>
|
|
|
|
<div class="viewcode-block" id="Storage.get_accounts"><a class="viewcode-back" href="../../api/accounting.storage.html#accounting.storage.Storage.get_accounts">[docs]</a> <span class="k">raise</span> <span class="ne">NotImplementedError</span><span class="p">()</span>
|
|
|
|
</pre></div></div></div>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="sphinxsidebar">
|
|
|
|
<div class="sphinxsidebarwrapper">
|
|
|
|
<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>
|
2013-12-18 21:46:19 +00:00
|
|
|
<li class="right" >
|
|
|
|
<a href="../../http-routingtable.html" title="HTTP Routing Table"
|
|
|
|
>routing table</a> |</li>
|
2013-12-17 08:42:53 +00:00
|
|
|
<li class="right" >
|
|
|
|
<a href="../../py-modindex.html" title="Python Module Index"
|
|
|
|
>modules</a> |</li>
|
|
|
|
<li><a href="../../index.html">Accounting API 0.1-beta documentation</a> »</li>
|
|
|
|
<li><a href="../index.html" >Module code</a> »</li>
|
|
|
|
<li><a href="../accounting.html" >accounting</a> »</li>
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
<div class="footer">
|
|
|
|
© Copyright 2013, Joar Wandborg.
|
|
|
|
Created using <a href="http://sphinx-doc.org/">Sphinx</a> 1.2.
|
|
|
|
</div>
|
|
|
|
</body>
|
|
|
|
</html>
|