Metadata-Version: 2.1
Name: file3
Version: 0.1.1
Summary: Converting Files and Types (IntToBin, IntToHex, CharToASCII,             CharToHex, BinStrToDecimal, HexToInt, IntToByte, StrToHex,             StrToBytes, StrToASCII, StrToBin)
Home-page: https://github.com/israeljcunha/file3
Author: Israel Cunha
Author-email: israelcunhamail@gmail.com
License: MIT License
Keywords: file files file3
Platform: Linux
Platform: Windows
Platform: MacOS
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Operating System :: OS Independent
Requires-Python: >=3
Description-Content-Type: text/markdown
License-File: LICENSE

# file3
Converting Files and Types

    IntToBin,
    IntToHex,
    CharToASCII,
    CharToHex,
    BinStrToDecimal,
    HexToInt,
    IntToByte,
    StrToHex,
    StrToBytes,
    StrToASCII,
    StrToBin

## Install App

    pip install file3

## Config and Import Function

from file3.Math import ConversionChar

    ConversionChar.IntToBin
    ConversionChar.IntToHex
    ConversionChar.CharToASCII
    ConversionChar.CharToHex
    ConversionChar.BinStrToDecimal
    ConversionChar.HexToInt
    ConversionChar.IntToByte

from file3.math import ConversionString

    ConversionString.StrToHex
    ConversionString.StrToBytes
    ConversionString.StrToASCII
    ConversionString.StrToBin


