Metadata-Version: 2.1
Name: PyCircTools
Version: 0.2.1
Summary: PyCircTools, a python circuit library.
Home-page: https://github.com/LovetheFrogs/CTools
Author: LovetheFrogs
License: GPL-3.0
Platform: UNKNOWN
Description-Content-Type: text/markdown
License-File: LICENSE

# PyCircTools

PyCircTools is a python package which contains tools to build circuits using python 3. It is a work in progress, and will be updated frequently to add more
modules.


<p><a href="#installing-ctools"> 1. Installing PyCircTools and importing it </a></p>
<p><a href="#logic-gates"> 2. Logic Gates Module </a></p>
<p><a href="#multiplexers"> 3. Multiplexers Module </a></p>
<p><a href="#latches"> 4. Latches Module </a></p>
<p><a href="#exceptions">5. Exceptions </a></p>
<p><a href="#about">6. About </a></p>

<a name="installing-ctools"></a>
## Installing PyCircTools and importing it.

To install PyCircTools, use pip by calling the following command:

```
pip install PyCircTools
```
Importing it is as easy as it gets, just insert the line 
```
from PyCircTools.*subpackage* import *modules*
``` 
at the start of your code, and substitute subpackage with the package you want, and modules with the modules you want to import to your project.

<a name="logic-gates"></a>
## Logic Gates Module

To read the documentation for this module, [click this link](https://github.com/LovetheFrogs/PyCircTools/tree/main/PyCircTools/LogicGates).

<a name="multiplexers"></a>
## Multiplexers Module

To read the documentation for this module, [click this link](https://github.com/LovetheFrogs/PyCircTools/tree/main/PyCircTools/Multiplexers).

<a name="latches"></a>
## Latches Module

To read the documentation for this module, [click this link](https://github.com/LovetheFrogs/PyCircTools/tree/main/PyCircTools/Latches).

<a name="exceptions"></a>
## Exceptions

To read the documentation for this module, [click this link](https://github.com/LovetheFrogs/PyCircTools/tree/main/PyCircTools/Exceptions).

<a name="about"></a>
## About

PyCircTools is software developed by LovetheFrogs and licensed under GPL-3.0 license.


