Metadata-Version: 2.1
Name: baseXtoY
Version: 1.2
Summary: A simple base converter in python3.
Home-page: https://github.com/toto112358/base-converter
Author: L. Pham-Trong
Author-email: spam@lucasanss.xyz
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.0
Description-Content-Type: text/markdown

# Description

`baseXtoY` is a simple multi-base converter.
It supports base conversions from base 1 to base 36.
Numbers contain characters from 1 to 9, and from A to Z.
Note that `baseXtoY` is case-insensitive.

# Usage

```
>>> import baseXtoY
>>> baseXtoY.license()  -->  displays license
baseXtoY.baseXtoY(num, **X, **Y)  -->  converts num from base X to base Y
# X and Y are keywords arguments

# example:
>>> baseXtoY.baseXtoY('FF', X=16, Y=10)  # will work
255
>>> baseXtoY.baseXtoY('FF', 16, 10)  # will not work since X and Y are not positional.
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
TypeError: baseXtoY() takes 1 positional argument but 3 were given
```


