Watermark

Last Updated: v1.5

from PythonFunctions.Watermark import watermark
Watermark("HI")

watermark

Note

I have also added my information into this function as i made it and wanted credit.

watermark(name, twitter, youtube, github, *, colour)
Parameters
  • name (str) – Your name to display

  • twitter (str) – Link to twitter account

  • youtube (str) – Link to youtube account

  • github (str) – Link to github account

  • colour (str) – (Optional) The colour to make the - be.

LINKCODE

LINKCODE(link, text)

Makes a clickable link in the terminal.

Parameters
  • link (str) – The link to redirect to

  • text (str) – (Optional) The text to display. Defaults to the link.

Returns

A message with a clickable link

Return type

str

Note

If the shell is know to not work with links being shorten and text being clickable, then it will return text(link) instead.

TIME

TIME()

Return a time in h,m,s format. Each value being 2 digits.

Returns

The current time of it being ran at.

Return type

tuple[str, str, str]

h, m, s = Watermark.Time()
print(f"{h}:{m}:{s}") # Example: 14:03:20