Metadata-Version: 2.1
Name: binary_fractions
Version: 0.0.1
Summary: A package to handle binary fractions
Home-page: https://github.com/Jonny-exe/binary-fractions
Author: Jonny-exe
Author-email: 
License: MIT
Description: # Binary fractions
        
        This is really small package to handle binary fractions.
        
        It has 2 functions:
          - float2bin, which converts floats to binary fractions represented in strings
          - bin2float, which converts binary fractions represented in strings to floats
        
        
        ```
        valid binary fraction: "100111.110001"
        
        float2bin:
          arguments: (float_number: float)
          optional_argument: (binary_places: int) # This specifies the precision of the returned bin. Default 50
        
        bin2float:
          arguments: (bin_number: string)
        
        ```
        
        
Keywords: binary fractions binary-fractions
Platform: UNKNOWN
Description-Content-Type: text/markdown
