Helper package to format TeamSpeak BBCode
Project description
TSFormatter
Helper package to format TeamSpeak BBCode
📦 Installation
pip install tsformatter
✏️ Usage
importing the formatter
import tsformatter
Colors
# Using HTML color name
>>> tsformatter.color("red", "This text is red")
'[COLOR=red]This text is red[/COLOR]'
>>> tsformatter.color("PaleTurquoise", "This text is turquoise")
'[COLOR=PaleTurquoise]This text is turquoise[/COLOR]'
# Using Hex Triplet
>>> tsformatter.color("#f00", "This text is red")
'[COLOR=f00]This text is red[/COLOR]'
>>> tsformatter.color("#AFEEEE", "This text is turquoise")
'[COLOR=#AFEEEE]This text is turquoise[/COLOR]'
Horizontal line
>>> tsformatter.hr
'[HR]'
Images
>>> tsformatter.img("https://i.imgur.com/ml09ccU.png")
'[IMG]https://i.imgur.com/ml09ccU.png[/IMG]'
Links
# Without specifying link text
>>> tsformatter.link("https://www.teamspeak.com/")
'[URL]https://www.teamspeak.com/[/URL]'
# With a link text
>>> tsformatter.link("https://www.teamspeak.com/", "TeamSpeak Website")
'[URL=https://www.teamspeak.com/]TeamSpeak Website[/URL]'
Lists
# Default style of the list is bullet list
>>> tsformatter.list_(f"List item #{x}" for x in range(1, 6))
'[LIST]\n[*]List item #1\n[*]List item #2\n[*]List item #3\n[*]List item #4\n[*]List item #5\n[/LIST]'
# You can specify the style of the list
>>> tsformatter.list_((f"List item #{x}" for x in range(1, 6)), style="1")
'[LIST=1]\n[*]List item #1\n[*]List item #2\n[*]List item #3\n[*]List item #4\n[*]List item #5\n[/LIST]'
List styles that work:
Style | "1" | "a" | "i" | "A" | "I" |
---|---|---|---|---|---|
Renders |
Placement
>>> tsformatter.left("Formatted to the left")
'[LEFT]Formatted to the left[/LEFT]'
>>> tsformatter.right("Formatted to the right")
'[RIGHT]Formatted to the right[/RIGHT]'
>>> tsformatter.center("Center of the space")
'[CENTER]Center of the space[/CENTER]'
Size
# Using absolute sizes
>>> tsformatter.size(24, "I am huge!")
'[SIZE=24]I am huge![/SIZE]'
# Relative sizes can be either positive or negative
>>> tsformatter.size('-4', "I am 4 units smaller than the rest")
'[SIZE=-2]I am 2 units smaller than the rest[/SIZE]'
>>> tsformatter.size('+2', "I am 2 units bigger than the rest")
'[SIZE=+2]I am 2 units bigger than the rest[/SIZE]'
Styles
>>> tsformatter.bold("Example text")
'[B]Example text[/B]'
>>> tsformatter.italic("Example text")
'[I]Example text[/I]'
>>> tsformatter.underline("Example text")
'[U]Example text[/U]'
>>> tsformatter.strike("Example text")
'[S]Example text[/S]'
Tables
>>> header = ("Place", "City", "Date")
>>> data1 = ("Statue of Liberty", "New York City", "October 28, 1886")
>>> data2 = ("Eiffel Tower", "Paris", "31 March, 1889")
>>> data3 = ("Big Ben", "London", "31 May, 1859")
>>> tsformatter.table(
tsformatter.table_header_row(header),
tsformatter.table_row(data1),
tsformatter.table_row(data2),
tsformatter.table_row(data3)
)
'[TABLE]\n[TR][TH]Place[/TH][TH]City[/TH][TH]Date[/TH][/TR]\n[TR][TD]Statue of Liberty[/TD][TD]New York City[/TD][TD]October 28, 1886[/TD][/TR]\n[TR][TD]Eiffel Tower[/TD][TD]Paris[/TD][TD]31 March, 1889[/TD][/TR]\n[TR][TD]Big Ben[/TD][TD]London[/TD][TD]31 May, 1859[/TD][/TR]\n[/TABLE]'
Results when rendered by TeamSpeak client:
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
tsformatter-0.2.2.tar.gz
(5.5 kB
view details)
Built Distribution
File details
Details for the file tsformatter-0.2.2.tar.gz
.
File metadata
- Download URL: tsformatter-0.2.2.tar.gz
- Upload date:
- Size: 5.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.0.0 CPython/3.12.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f8fed419eda336f8602a5ada8ba1e337520d43f801046a7c8533902f5c6eb99f |
|
MD5 | d377d134e622ffc77205a9443a25e32a |
|
BLAKE2b-256 | fce846c9d4d0f80fa286e1083d986c891c3d9f0ea95f7bdb6d001a75ea448e04 |
File details
Details for the file tsformatter-0.2.2-py3-none-any.whl
.
File metadata
- Download URL: tsformatter-0.2.2-py3-none-any.whl
- Upload date:
- Size: 4.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.0.0 CPython/3.12.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 54d065d6c11ec345f2fcd189e62cdb26444c3c4912d3509b7e11b498ea10a400 |
|
MD5 | 700427f3ac7f16d0188aed34de4866b9 |
|
BLAKE2b-256 | 8a8a9b0e8c135a25862a1bd600bd09550232e0d44ed64e1086e71caac16dbc63 |