Skip to content

Commit

Permalink
Automodule
Browse files Browse the repository at this point in the history
  • Loading branch information
jtpaquet committed Jun 7, 2018
1 parent adc67d2 commit ac0b24b
Show file tree
Hide file tree
Showing 92 changed files with 21,380 additions and 19 deletions.
Binary file added docs/build/doctrees/bibliography.doctree
Binary file not shown.
Binary file added docs/build/doctrees/calltipwindow.doctree
Binary file not shown.
Binary file added docs/build/doctrees/code.doctree
Binary file not shown.
Binary file added docs/build/doctrees/environment.pickle
Binary file not shown.
Binary file added docs/build/doctrees/exceptionsmodules.doctree
Binary file not shown.
Binary file added docs/build/doctrees/index.doctree
Binary file not shown.
Binary file added docs/build/doctrees/install.doctree
Binary file not shown.
Binary file added docs/build/doctrees/rights.doctree
Binary file not shown.
Binary file added docs/build/doctrees/userguide.doctree
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: d09eff6518c7fd0fd32756c7f016bed3
tags: 645f666f9bcd5a90fca523b33c5a78b7
Empty file added docs/build/html/.nojekyll
Empty file.
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
228 changes: 228 additions & 0 deletions docs/build/html/_modules/Exceptions_ModuleCamera.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,228 @@


<!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>Exceptions_ModuleCamera &mdash; PiCameraGUI 1.0 documentation</title>
















<link rel="stylesheet" href="../_static/css/theme.css" type="text/css" />
<link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
<link rel="index" title="Index" href="../genindex.html" />
<link rel="search" title="Search" href="../search.html" />


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

</head>

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


<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"> PiCameraGUI



</a>







<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">






<ul>
<li class="toctree-l1"><a class="reference internal" href="../install.html">1. Installation</a></li>
<li class="toctree-l1"><a class="reference internal" href="../userguide.html">2. Guide de l’utilisateur</a></li>
<li class="toctree-l1"><a class="reference internal" href="../code.html">3. Notes sur le code</a></li>
<li class="toctree-l1"><a class="reference internal" href="../calltipwindow.html">4. Call Tip Window</a></li>
<li class="toctree-l1"><a class="reference internal" href="../exceptionsmodules.html">5. Modules d’exception</a></li>
<li class="toctree-l1"><a class="reference internal" href="../bibliography.html">6. Bibliographie</a></li>
<li class="toctree-l1"><a class="reference internal" href="../rights.html">7. Droits d’auteurs</a></li>
</ul>



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

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


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

<i data-toggle="wy-nav-top" class="fa fa-bars"></i>
<a href="../index.html">PiCameraGUI</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>Exceptions_ModuleCamera</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 Exceptions_ModuleCamera</h1><div class="highlight"><pre>
<span></span><span class="ch">#!/usr/bin/env python</span>
<span class="c1"># -*- coding: utf-8 -*-</span>

<span class="c1"># Ce fichier contient deux classes d&#39;exceptions qui héritent de &quot;Exception&quot;</span>


<span class="c1"># Exception de Tkinter</span>
<div class="viewcode-block" id="TkinterError"><a class="viewcode-back" href="../exceptionsmodules.html#Exceptions_ModuleCamera.TkinterError">[docs]</a><span class="k">class</span> <span class="nc">TkinterError</span><span class="p">(</span><span class="ne">Exception</span><span class="p">):</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="n">mismatch</span><span class="p">):</span>
<span class="ne">Exception</span><span class="o">.</span><span class="fm">__init__</span><span class="p">(</span><span class="bp">self</span><span class="p">,</span> <span class="n">mismatch</span><span class="p">)</span></div>


<span class="c1"># Exception de la PiCamera</span>
<div class="viewcode-block" id="PiCameraError"><a class="viewcode-back" href="../exceptionsmodules.html#Exceptions_ModuleCamera.PiCameraError">[docs]</a><span class="k">class</span> <span class="nc">PiCameraError</span><span class="p">(</span><span class="ne">Exception</span><span class="p">):</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="n">mismatch</span><span class="p">):</span>
<span class="ne">Exception</span><span class="o">.</span><span class="fm">__init__</span><span class="p">(</span><span class="bp">self</span><span class="p">,</span> <span class="n">mismatch</span><span class="p">)</span></div>
</pre></div>

</div>

</div>
<footer>


<hr/>

<div role="contentinfo">
<p>
&copy; Copyright 2018, Jérémy Talbot-Pâquet.

</p>
</div>
Built with <a href="http://sphinx-doc.org/">Sphinx</a> using a <a href="https://github.com/rtfd/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:'1.0',
LANGUAGE:'en',
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="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.1/MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>





<script type="text/javascript" src="../_static/js/theme.js"></script>


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

</body>
</html>

0 comments on commit ac0b24b

Please sign in to comment.