Releases: TheItsProjects/ItsUtils
Version 0.2.2
Installation
The easiest and recommanded way of installing ItsUtils is by using pip:
pip install ItsUtils
This will install the newest release. If you really want to install this release, use:
pip install ItsUtils==0.2.2
Or alternatively download the .tar.gz
given in this release, unpack it and run:
cd ItsUtils-0.2.2
pip install .
What's New
This is just a small bug fix, so there is nothing really new.
What's Changed
- Fix index error by @TheItsNameless in #10
- added documentation for check_valid_expression by @TheItsNameless in #12
Full Changelog: v0.2.1...v0.2.2
Version 0.2.1
Installation
The easiest and recommanded way of installing ItsUtils is by using pip:
pip install ItsUtils
This will install the newest release. If you really want to install this release, use:
pip install ItsUtils==0.2.1
Or alternatively download the .tar.gz
given in this release, unpack it and run:
cd ItsUtils-0.2.1
pip install .
What's New
Added check_valid_expression
to StringMath
With check_valid_expression
you can check if an expression would be able to be processed by StringMath
.
What's Changed
Bugfixes
-fixed TypeError: 'type' object is not subscriptable
#6
Full Changelog: v0.2.0...v0.2.1
Version 0.2.0
Installation
The easiest and recommanded way of installing ItsUtils is by using pip:
pip install ItsUtils
This will install the newest release. If you really want to install this release, use:
pip install ItsUtils==0.2.0
Or alternatively download the .tar.gz
given in this release, unpack it and run:
cd ItsUtils-0.2.0
pip install .
What's New
WordMath
With WordMath, you can now convert numerals into their integer counterparts.
Currently, the module only supports the german language and the highest number to be converted is 999,999,999.
Full Changelog: v0.1.0...v0.2.0
First Release
Installation
The easiest and recommanded way of installing ItsUtils is by using pip:
pip install ItsUtils
This will install the newest release. If you really want to install this release, use:
pip install ItsUtils==0.1.0
Or alternatively download the .tar.gz
given in this release, unpack it and run:
cd ItsUtils-0.1.0
pip install .
What's New
StringMath
Use this module to convert a stringified mathematical expression into a solvable expression and solve it.
DebugPrompt
Ask the user for input, but with timeout! It returns None if the user lets it timeout.
Full Changelog: https://github.com/TheItsProjects/ItsUtils/commits/v0.1.0