Skip to main content

A library for converting numbers to different number systems (2-36)

Reason this release was yanked:

Critical error handler bugs

Project description

Last Big Update: 1.1.0

- Added Support For Negative Numbers.

- A New Function «resys» For Converting To Decimal.

- New Error Handler.

- New Readme.


Sys Converter

A library for converting numbers to different number systems (from binary to base-36).

Features

  • Convert integers to any number system (2-36).
  • Convert fractional numbers with precision up to 10 decimal places.
  • Error handling with clear messages.
  • Support for floating-point numbers.

Installation

pip install sys-converter

Usage

  • To import, use «from sys_converter import *» or «from sys_converter import sys, resys».
  • To use the library functions, use the command «sys(number: int, number_system_base: int)» or «resys(number: str, number_system_base: int)».

For example

This program accepts an integer (int) as input and outputs this number in the base-4 number system.

from sys_converter import sys

temp_num = int(input()) # Input: 26
new_num = sys(temp_num, 4)

print(new_num) # Output: 122

Requirements

  • Python 3.6 or higher.
  • No external dependencies (uses only standard library).

Limitations

Limitation Details
Maximum base 36 (uses digits 0–9 and letters A–Z)
Fractional precision Fixed at 10 decimal places
Input type Integer, float or string only (look at «Usage»)

Error Handling

The library includes a comprehensive error handling system that validates inputs and provides clear, informative error messages.

Error Types

Error Description
Base out of range The number system base must be between 2 and 36
Base is not an integer The base parameter cannot be a floating-point number
Base is missing The base parameter is required

Error Examples

from sys_converter import *

# Invalid base (greater than 36)
result = sys(42, 37)
print(result)
# Output:
# ERROR! The base of the number system cannot be greater than 36

# Invalid base (less than 2)
result = sys(42, 1)
print(result)
# Output:
# ERROR! The base of the number system cannot be less than 2

# Base as float
result = sys(42, 4.5)
print(result)
# Output:
# ERROR! The base of the number system cannot be float number

# Not a number
result = resys("-4-2", 10)
print(result)
# Output:
# ERROR! The converted number is not a valid integer

# Multiple errors (all displayed)
result = sys(-42, 1.5)
print(result)
# Output:
# ERROR! The base of the number system cannot be less than 2
# ERROR! The base of the number system cannot be float number

Changelog

Version Date Commit
0.1.0 10.03.2026 Beta: First Beta Version On PyPI
0.1.1 10.03.2026 Beta: Fixed Critical Bugs
0.1.2 10.03.2026 Beta: Fixed Critical Bugs And New Error Handling
1.0.0 31.03.2026 Release: New Readme
1.0.1 31.03.2026 Release: New Readme
1.0.2 31.03.2026 Release: Without Changes
1.1.0 02.04.2026 Release: Added Support For Negative Numbers, A New "resys" Function, A New Error Handler And A New Readme
1.1.1 02.04.2026 Release: Fixed Critical Bugs
1.1.2 02.04.2026 Release: Fixed Critical Bugs

Made by the Hi Team.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

sys_converter-1.1.2.tar.gz (5.3 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

sys_converter-1.1.2-py3-none-any.whl (5.3 kB view details)

Uploaded Python 3

File details

Details for the file sys_converter-1.1.2.tar.gz.

File metadata

  • Download URL: sys_converter-1.1.2.tar.gz
  • Upload date:
  • Size: 5.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.2

File hashes

Hashes for sys_converter-1.1.2.tar.gz
Algorithm Hash digest
SHA256 b10b2a36d5c75cd6ff50f32c325610c8606570a553cd2367a1d24fcea31ca447
MD5 e4b4fee2afe3ce6cf00cc35c25532657
BLAKE2b-256 a5596c958cd05dd02ceb7469ba35367dd50990c4351973f9c6b9b3592229f48e

See more details on using hashes here.

File details

Details for the file sys_converter-1.1.2-py3-none-any.whl.

File metadata

  • Download URL: sys_converter-1.1.2-py3-none-any.whl
  • Upload date:
  • Size: 5.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.2

File hashes

Hashes for sys_converter-1.1.2-py3-none-any.whl
Algorithm Hash digest
SHA256 d12d7ae7fe817a06736c1b103792953c6ee6ef46f0206016b0f6c83bbbccbd21
MD5 69869346042582f2799e347bcc117bfc
BLAKE2b-256 1e6c33e555c797c3eb3efd584a41edbfd3bad3f1cf876dd4ee45cbcea052e095

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page