项目作者: senavs

项目描述 :
:heavy_check_mark: Bit, Bytes and Logical Gates Abstraction
高级语言: Python
项目地址: git://github.com/senavs/BitJoy.git
创建时间: 2020-02-08T19:41:35Z
项目社区:https://github.com/senavs/BitJoy

开源协议:MIT License

下载


BitJoy

Bit, Bytes and Logical Gates Abstraction.

About

Repository to ‘Padrões de Projeto’ subject at university. A height level Bit/Bytes and logical circuits abstractions.
Also Udacity Machine Learning Engineer Nanodegre program to add these package to PyPi.

Usage

Installing

  1. pip install bitjoy

Starting with Bit

Importing and instantiating Bit class.

  1. from bitjoy.dtypes import Bit
  2. zero = Bit(0)
  3. # ZeroBit(0)
  4. one = Bit(1)
  5. # OneBit(1)

Creating a bit passing 0 in the __init__ method, it will create another class: ZeroBit. The same away, passing 1, it will create a OneBit.

Logical Gates

There is also support to logical operators (called logical gates or logical circuits).

  1. from bitjoy.dtypes import LogicalOperator
  • NOT
    1. LogicalOperator.not_(zero)
    2. # OneBit(1)
    3. LogicalOperator.not_(one)
    4. # OneBit(0)
  • OR
    1. LogicalOperator.or_(zero, zero)
    2. # ZeroBit(0)
    3. LogicalOperator.or_(zero, one)
    4. # OneBit(1)
    5. LogicalOperator.or_(one, zero)
    6. # OneBit(1)
    7. LogicalOperator.or_(one, one)
    8. # OneBit(1)
  • AND
    1. LogicalOperator.and_(zero, zero)
    2. # ZeroBit(0)
    3. LogicalOperator.and_(zero, one)
    4. # ZeroBit(0)
    5. LogicalOperator.and_(one, zero)
    6. # ZeroBit(0)
    7. LogicalOperator.and_(one, one)
    8. # OneBit(1)
    There is also support to others Logical Gates:
    nor_, nand_, xor_ and xnor_

Bytes

There is also a Bytes class.

  1. from bitjoy.dtypes import Bytes

Passing a list of Bit to the Bytes’ constructor to creating a bytes instance. NOTE that bytes only have 8 bits. So passing more or less it’ll throw an error.

  1. bits = [Bit(0), Bit(0), Bit(0), Bit(0), Bit(1), Bit(1), Bit(0), Bit(0)]
  2. b = Bytes(bits)
  3. # Bytes(0, 0, 0, 0, 1, 1, 0, 0)

To creating a easy bytes, use int_to_bytes function from utils to help.

  1. from bitjoy.utils import int_to_bytes
  2. b1 = int_to_bytes(10)
  3. # Bytes(0, 0, 0, 0, 1, 0, 1, 0)
  4. b2 = int_to_bytes(175)
  5. # Bytes(1, 0, 1, 0, 1, 1, 1, 1)
  • Adding Bytes
    Bytes class also has support to + operand with __add__ method.
    1. b1_b2 = b1 + b2
    2. # Bytes(1, 0, 1, 1, 1, 0, 0, 1)
  • Casting
    Bytes supports casting with other number types: int, bin, oct and hex.
    ```python
    int(b1_b2)

    185

bin(b1_b2)

‘0b10111001’

oct(b1_b2)

‘0o271’

hex(b1_b2)

‘0xb9’

```

Adders

For arithmetic operators, the class Adder has two method to make additions:
half: to half-adder
full: to full-adder