Metadata-Version: 2.1
Name: Pylibft
Version: 0.0.3
Summary: You can find here some functions that can help you during the automation in CTF/Pentest.
Home-page: UNKNOWN
Author: Wiloti
Author-email: contact@wiloti.fr
License: UNKNOWN
Keywords: python,CTF,Pentest,automation
Platform: UNKNOWN
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: Unix
Classifier: Operating System :: Microsoft :: Windows
Description-Content-Type: text/markdown
Requires-Dist: termcolor
Requires-Dist: typing-extensions

# Pylibft
Personal python module for my daily usage on CTF/Pentest/Coding

## Import

```python
from Pylibft import *
```
Or by specifying the Functions

```python
from Pylibft import base_convert, bin2hex
```
## Functions

```python
base_convert(number: str, fromBase: int, toBase: int)
```
Same as the `PHP` function, return a string containing `number` represented in base `toBase`.

```python
bin2hex(string: str)
```
Same as the `PHP` function, return string containing the hexadecimal representation of string.

```python
hex2bin(string: str)
```
Same as the `PHP` function, decode a hexadecimally encoded binary string.

```python
print_message(message: str, type: str)
```
Pretty print with color and type of message.


