Metadata-Version: 2.4
Name: ModulePyConText
Version: 0.0.2
Summary: A windows-only python package for displaying text in the console with format and give console cursor control.
Home-page: https://github.com/Beta-Verse-Hub/PyConText
Author: Baibhav Kumar Jha
Author-email: Baibhav Kumar Jha <baibhavkumarjha1@gmail.com>
License-Expression: MIT
Project-URL: Homepage, https://github.com/Beta-Verse-Hub/PyConText
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: Microsoft :: Windows
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: keyboard>=0.13.5
Dynamic: author
Dynamic: home-page
Dynamic: license-file
Dynamic: requires-python

![PyConText](icon.png)
# PyConText

PyConText is a Python package for displaying text in the console with format and give console cursor control.
**Note: It is windows-only and it will not work well if the console window size is keep changing.**

## Dependencies

PyConText uses the following modules:
- os
- shutil
- keyboard
- ctypes (and wintypes)
  
and the following for building and publishing:
- twine
- wheel
- setuptools

## Installation
Install the package with pip:
```bash
pip install ModulePyConText
```
Then import it like this:
```python
import PyConText
```

## Examples
The example projects can be downloaded from the releases in [Github](https://github.com/Beta-Verse-Hub/PyConText/releases).

# How to use

## Console Functions

### get_size()

Returns the size of the terminal as a named tuple of two integers, columns and lines.

*Parameters*
None

*Returns*
collections.namedtuple
- A named tuple of two integers, columns and lines.

*Example*
```python
PyConText.Console.get_size()
```

### clear()

Clears the console screen.

*Parameters*
None

*Returns*
None

*Example*
```python
PyConText.Console.clear()
```

## Cursor Functions

### move(x:int=0, y:int=0)
Moves the cursor to a given position

*Parameters*
x : int
- The x position of the cursor starting from 0
y : int
- The y position of the cursor starting from 0

*Returns*
None

*Example*
```python
PyConText.Cursor.move(0, 0)
```

### get_cursor_position()

Requests the current position of the cursor from the terminal and returns it as a tuple of two integers, the row and column of the cursor.

*Parameters*
None

*Returns*
tuple
- A named tuple of two integers, the row and column of the cursor. If the operation is unsupported returns None.

*Example*
```python
PyConText.Cursor.get_cursor_position()
```

## Widget Functions

### input(prompt: str, end: str = ": ", erase: bool = True)

Reads input from the user and returns it as a string.

*Parameters*
prompt : str
- The text to display to the user before reading input
end : str
- The string to append to the end of the prompt, defaults to ": "
erase : bool
- Whether to erase the input line after reading, defaults to True

*Returns*
str
- The input from the user as a string

*Example*
```python
PyConText.Widget.input("Enter your name")
```

### radio(options: list, selection_character: chr = "*", unselection_character: chr = " ")

Creates a radio button menu from a given list of options

*Parameters*
options : list
- A list of strings to be used as the options
selection_character : chr
- The character to use to mark the selected option, defaults to "*"
unselection_character : chr
- The character to use to mark the unselected options, defaults to " "

*Returns*
str
- The selected option as a string

*Example*
```python
PyConText.Widget.radio([1,2,3])
```

### output(output, alignment="left")
Outputs the given string or list of strings to the console, with optional alignment

*Parameters*
output : str or list
- The string or list of strings to output
- If it is a list, each element will be printed on a new line
alignment : str
- The alignment of the output, either "left", "center", or "right". Defaults to "left"

*Returns*
None

*Example*
```python
PyConText.Widget.output("Hello World", alignment="center")
```
