Skip to content

Latest commit

 

History

History
72 lines (48 loc) · 1.52 KB

File metadata and controls

72 lines (48 loc) · 1.52 KB

Binary Conversions

A place for implementation of base conversions

Features

  • To see all the available functions in a module, you can just type help() with the module name as argument. For example,
>>> from pygorithm import binary
>>> help(binary)
    Help on package pygorithm.binary in pygorithm:

    NAME
    pygorithm.binary - Collection or binary conversions and algorithms

    MODULE REFERENCE
    https://docs.python.org/3.5/library/pygorithm.binary.html

    The following documentation is automatically generated from the Python
    source files.  It may be incomplete, incorrect or include features that
    are considered implementation detail and may vary between Python
    implementations.  When in doubt, consult the module reference at the
    location listed above.

    PACKAGE CONTENTS
    ascii
    base10
    base16
    base2
    binary_utils

    DATA
    __all__ = ['ascii', 'base2', 'base10', 'base16']

ASCII Conversions

  • Functions and their uses
.. automodule:: pygorithm.binary.ascii
   :members:

Base2 Coversions

  • Functions and their uses
.. automodule:: pygorithm.binary.base2
   :members:


Base10 Coversions

  • Functions and their uses
.. automodule:: pygorithm.binary.base10
   :members:

Base16 Coversions

  • Functions and their uses
.. automodule:: pygorithm.binary.base16
   :members: