Metadata-Version: 2.4
Name: ConsoleType
Version: 1.4.8
Summary: A update
Home-page: https://github.com
Author: Vadim | Mur Studio
Author-email: somerare23@gmail.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: requests>=2.25.0
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: license-file
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

<div align="center">

<img src="https://raw.githubusercontent.com/Vaddlkk/ConsoleType/refs/heads/main/assets/logo.png" width="400">

<hr>

[![Python](https://img.shields.io/badge/Python-3.8%20%E2%80%93%203.14-3776AB?style=flat&logo=python&logoColor=white)](https://python.org)
[![PyPI](https://img.shields.io/badge/PyPI-blue?style=flat&logo=pypi&logoColor=white)](https://pypi.org/user/Vadim_200129/)

<hr>
</div>

## Features

### IDLogin
This function is used to obtain a **UUID** from the **IDLogin system**.

Example:

```python
from ConsoleType import idlogin

# Parameters:
# IP address, port, error message if connection fails,
# verification phrase (sent before UUID),
# and the IDLogin account credentials.

id = idlogin("localhost", 5000, "error", "dp", "user", "password")

print(id)
```
### IDLogComs
This function sends commands to the IDLogin server.

Example:
```Python
from ConsoleType import idlogcoms

# Parameters:
# IP address, port, error message,
# account credentials, and the command.
# The command "noupuuid" prevents the UUID from being updated.

res, status = idlogcoms("localhost", 5000, "error", "admin", "123", "noupuuid")

# Two variables are returned:
# res    → important response from the server
# status → HTTP-like status code sent by the server (200, 404, etc.)

print(res)
print(status)
```

### Prints
This function displays a loading-style animation with text in the console.

Example:
``` Python
from ConsoleType import prints

# Parameters:
# text   → text that will move across the screen
# speed  → delay time for the animation
# length → length of the animation line

prints("text", 1, 10)
```
