Skip to main content

None

Project description

SCPrint

(Simple Colored Print)

MIT Licence PyPi Version Python Version Downloads Per Week


Description

Coming Soon...

Installation

$ python -m pip install scprint

Usage

# To override the built-in print function use (Recomended):
from scprint import print
print("Hello World!", color="cyan")


# To retain the built-in print function use:
from scprint import print as newFunction
newFunction("Hello World!", color="cyan")

Demo

import scprint
scprint.demo()
stdout

Examples

from scprint import print
print("Hello", color="red", back_color="blue", end=" ")
punctuation = "!"
print("World", punctuation, color="blue", back_color="red", sep="")
stdout
from scprint import print
colors = ["red", "yellow", "green", "cyan", "blue", "magenta"]
word = "Multicolored Text"
for i in range(len(word)):
    print(list(word)[i], color=colors[i%len(colors)], end="")
stdout

More Coming Soon...

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

scprint-0.0.0b1.tar.gz (2.4 kB view hashes)

Uploaded Source

Built Distribution

scprint-0.0.0b1-py3-none-any.whl (3.5 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page