Skip to content
This repository has been archived by the owner on Nov 10, 2020. It is now read-only.

Commit

Permalink
Initialized docs
Browse files Browse the repository at this point in the history
  • Loading branch information
lycantropos committed Sep 13, 2017
1 parent 4ff9bcd commit 7856fdd
Show file tree
Hide file tree
Showing 105 changed files with 23,363 additions and 0 deletions.
20 changes: 20 additions & 0 deletions docs/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# Minimal makefile for Sphinx documentation
#

# You can set these variables from the command line.
SPHINXOPTS = -a
SPHINXBUILD = python3.6 -msphinx
SPHINXPROJ = asynctmdb
SOURCEDIR = .
BUILDDIR = _build

# Put it first so that "make" without argument is like "make help".
help:
@$(SPHINXBUILD) -M help "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)

.PHONY: help Makefile

# Catch-all target: route all unknown targets to Sphinx using the new
# "make mode" option. $(O) is meant as a shortcut for $(SPHINXOPTS).
%: Makefile
@$(SPHINXBUILD) -M $@ "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)
Binary file added docs/_build/doctrees/api.doctree
Binary file not shown.
Binary file added docs/_build/doctrees/asynctmdb.doctree
Binary file not shown.
Binary file added docs/_build/doctrees/asynctmdb.imdb.doctree
Binary file not shown.
Binary file added docs/_build/doctrees/asynctmdb.imdb.find.doctree
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added docs/_build/doctrees/asynctmdb.methods.doctree
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added docs/_build/doctrees/environment.pickle
Binary file not shown.
Binary file added docs/_build/doctrees/index.doctree
Binary file not shown.
Binary file added docs/_build/doctrees/modules.doctree
Binary file not shown.
Binary file added docs/_build/html.zip
Binary file not shown.
4 changes: 4 additions & 0 deletions docs/_build/html/.buildinfo
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# Sphinx build info version 1
# This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done.
config:
tags:
245 changes: 245 additions & 0 deletions docs/_build/html/_modules/asynctmdb/common.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,245 @@


<!DOCTYPE html>
<!--[if IE 8]><html class="no-js lt-ie9" lang="en" > <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js" lang="en" > <!--<![endif]-->
<head>
<meta charset="utf-8">

<meta name="viewport" content="width=device-width, initial-scale=1.0">

<title>asynctmdb.common &mdash; asynctmdb 0.0.1 documentation</title>




<link rel="shortcut icon" href="../../_static/favicon.ico"/>














<link rel="stylesheet" href="../../_static/css/theme.css" type="text/css" />





<link rel="index" title="Index"
href="../../genindex.html"/>
<link rel="search" title="Search" href="../../search.html"/>
<link rel="top" title="asynctmdb 0.0.1 documentation" href="../../index.html"/>
<link rel="up" title="Module code" href="../index.html"/>


<script src="../../_static/js/modernizr.min.js"></script>

</head>

<body class="wy-body-for-nav" role="document">


<div class="wy-grid-for-nav">


<nav data-toggle="wy-nav-shift" class="wy-nav-side">
<div class="wy-side-scroll">
<div class="wy-side-nav-search">



<a href="../../index.html" class="icon icon-home"> asynctmdb




<img src="../../_static/logo.png" class="logo" />

</a>




<div class="version">
0.0.1
</div>




<div role="search">
<form id="rtd-search-form" class="wy-form" action="../../search.html" method="get">
<input type="text" name="q" placeholder="Search docs" />
<input type="hidden" name="check_keywords" value="yes" />
<input type="hidden" name="area" value="default" />
</form>
</div>


</div>

<div class="wy-menu wy-menu-vertical" data-spy="affix" role="navigation" aria-label="main navigation">






<p class="caption"><span class="caption-text">Contents:</span></p>
<ul>
<li class="toctree-l1"><a class="reference internal" href="../../asynctmdb.html">Subpackages</a></li>
<li class="toctree-l1"><a class="reference internal" href="../../asynctmdb.html#submodules">Submodules</a></li>
</ul>



</div>
</div>
</nav>

<section data-toggle="wy-nav-shift" class="wy-nav-content-wrap">


<nav class="wy-nav-top" role="navigation" aria-label="top navigation">

<i data-toggle="wy-nav-top" class="fa fa-bars"></i>
<a href="../../index.html">asynctmdb</a>

</nav>



<div class="wy-nav-content">
<div class="rst-content">
















<div role="navigation" aria-label="breadcrumbs navigation">

<ul class="wy-breadcrumbs">

<li><a href="../../index.html">Docs</a> &raquo;</li>

<li><a href="../index.html">Module code</a> &raquo;</li>

<li>asynctmdb.common</li>


<li class="wy-breadcrumbs-aside">



</li>

</ul>


<hr/>
</div>
<div role="main" class="document" itemscope="itemscope" itemtype="http://schema.org/Article">
<div itemprop="articleBody">

<h1>Source code for asynctmdb.common</h1><div class="highlight"><pre>
<span></span><span class="kn">from</span> <span class="nn">enum</span> <span class="k">import</span> <span class="n">IntEnum</span>

<span class="n">DATE_FORMAT</span> <span class="o">=</span> <span class="s1">&#39;%Y-%m-</span><span class="si">%d</span><span class="s1">&#39;</span>
<span class="n">TIME_FORMAT</span> <span class="o">=</span> <span class="s1">&#39;%H:%M:%S&#39;</span>
<span class="n">DATE_TIME_FORMAT</span> <span class="o">=</span> <span class="n">f</span><span class="s1">&#39;</span><span class="si">{DATE_FORMAT}</span><span class="s1"> </span><span class="si">{TIME_FORMAT}</span><span class="s1"> %Z&#39;</span>


<div class="viewcode-block" id="StatusCode"><a class="viewcode-back" href="../../asynctmdb.html#asynctmdb.common.StatusCode">[docs]</a><span class="k">class</span> <span class="nc">StatusCode</span><span class="p">(</span><span class="n">IntEnum</span><span class="p">):</span>
<span class="n">SUCCESS</span> <span class="o">=</span> <span class="mi">1</span>
<span class="n">AUTHENTICATION_FAILED</span> <span class="o">=</span> <span class="mi">3</span>
<span class="n">INVALID_API_KEY</span> <span class="o">=</span> <span class="mi">7</span>
<span class="n">INTERNAL_ERROR</span> <span class="o">=</span> <span class="mi">11</span>
<span class="n">SUCCESSFULLY_DELETED</span> <span class="o">=</span> <span class="mi">13</span>
<span class="n">SESSION_DENIED</span> <span class="o">=</span> <span class="mi">17</span>
<span class="n">INVALID_PAGE</span> <span class="o">=</span> <span class="mi">22</span>
<span class="n">RESOURCE_NOT_FOUND</span> <span class="o">=</span> <span class="mi">34</span></div>
</pre></div>

</div>
<div class="articleComments">

</div>
</div>
<footer>


<hr/>

<div role="contentinfo">
<p>
&copy; Copyright 2017, Azat Ibrakov.

</p>
</div>
Built with <a href="http://sphinx-doc.org/">Sphinx</a> using a <a href="https://github.com/snide/sphinx_rtd_theme">theme</a> provided by <a href="https://readthedocs.org">Read the Docs</a>.

</footer>

</div>
</div>

</section>

</div>





<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT:'../../',
VERSION:'0.0.1',
COLLAPSE_INDEX:false,
FILE_SUFFIX:'.html',
HAS_SOURCE: true,
SOURCELINK_SUFFIX: '.txt'
};
</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/js/theme.js"></script>




<script type="text/javascript">
jQuery(function () {
SphinxRtdTheme.StickyNav.enable();
});
</script>


</body>
</html>

0 comments on commit 7856fdd

Please sign in to comment.