KurimuzonAkuma / pyrogram

Elegant, modern and asynchronous Telegram MTProto API framework in Python for users and bots
https://pyrogram.org
GNU Lesser General Public License v3.0
267 stars 72 forks source link

Implement easier text formatting #75

Open meybj opened 3 weeks ago

KurimuzonAkuma commented 2 weeks ago

Can you provide some examples?

meybj commented 2 weeks ago

from pyrogram.enums.text_formatting import *

url = r'https://github.com/KurimuzonAkuma/pyrogram/pull/75' text = f'{Bold("This")} {Underline("is")} {Italic("a")} {Spoiler("test")} {Hashtag("message")} {Strikethrough("to")} show how this {Link("PR", url)} {User("works")}'

image