A library for center titles
Project description
Tcenter for Python
A Python library for centralization of title. In this 0.1.4.4
version of tcenter, it allows you to center the title with a number of specific spaces.
Installation
The latest stable version is available on PyPI. Either add tcenter
to your requirements.txt
file or install with pip:
pip install tcenter
Usage
After you have installed it, to use it is very simple, just import the library and use it this way:
from tcenter.center import to_center
receive = to_center('Hello world', 20)
The function to_center
, it receives a maximum of three parameters and a minimum of two. if you run the help ()
command you will receive more information about:
help(to_center)
He will return this to you at the terminal:
Help on function to_center in module tcenter.center:
to_center(title, space, object='')
This function is reponsible for centralizing the title. accepted at least two vestments.
:param title: receive any title, only string.
:param space: receive any value, only numbers.
:param object: receive any object, ex: - . = ~ < > _ | between others.
:return: The title centralized.
there are 3 ways for you to pass the data to to_center
:
from tcenter.center import to_center
receive_one = to_center('Hello world', 20)
receive_two = to_center('Hello world', '20')
receive_three = to_center('Hello world', 20, '=')
print(receive_one)
print(receive_two)
print(receive_three)
This way the output would be like this:
Hello World
Hello World
=======Hello World=======
if you notice, the first two have no difference, but the third, it allows your title to be in the middle of the objects.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file tcenter-0.1.4.4.tar.gz
.
File metadata
- Download URL: tcenter-0.1.4.4.tar.gz
- Upload date:
- Size: 2.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.8.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5e1e10723b8bfc2dcec286970bc8fb49898f1aa1c0782352bcbd0db6045456cc |
|
MD5 | a6bc7ace7e53c9bc63c29c388f4deb36 |
|
BLAKE2b-256 | a65eff0929c5c8386f80ccda29bed5e2e18fdf71d46d06fdb3839c104dcca089 |