Metadata-Version: 2.1
Name: botnikkk
Version: 0.0.6
Summary: a personal package
Author: BotNikkk
Author-email: <nikhi.ace.chd@gmail.com>
Keywords: python,camera stream,sockets
Classifier: Development Status :: 1 - Planning
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: Unix
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Operating System :: Microsoft :: Windows
Description-Content-Type: text/markdown
Requires-Dist: screeninfo
Requires-Dist: asyncio




# botnikkk  



Under construction! Not ready for use yet! Currently experimenting and planning!



Developed by BotNikkk / Nikkk



# Examples of How To Use



## 1. centre() function



Usage = Centering Elemtents.



```python

import botnikkk



#printing a centred text

botnikkk.centre('text')

```



It also takes 2 extra parameters as input :



1. symbol : determines what symbol will fill in the blank space, deault parameter = " "



```python

botnikkk.centre('text',symbol='=')

```



2. str_end : determines what symbol will print as end= in print statement, deault parameter = "\n"



```python

botnikkk.centre('text',str_end='\r')

```



## 2. format_input() function



Usage = centering the input variable.



```python

import botnikkk



#printing a centred text

botnikkk.format_input('input_question')

```



## 3. int_check() function



Usage = checks if an input variable is a interger or not, takes repetetive inputs if not Interger.



```python

import botnikkk



#printing a centred text

botnikkk.int_check('any_variable')

```



## 4. ans_check() function



Usage = takes a list of strings as input and displays it to the user as centred options, returns the choosen option. 



```python

import botnikkk



#printing a centred text

botnikkk.ans_check(['list_of_varibales'])

```



## 4. redirect() function



Usage = takes a input string as screen name and redirects the user to the said screen in a countdown of 3 seconds. Can only be used in async functions due it's await nature.



```python

import botnikkk



#printing a centred text

await botnikkk.redirect("screen_name")

```

