Skip to main content

A simple wrapper for ANSI escape codes

Project description

simpleANSI

This is a simple wrapper library for ANSI escape codes.

GitHub: https://github.com/AwesomeCronk/simpleANSI

PyPI: https://pypi.org/project/simpleANSI/0.1.0/

Installation

pip install simpleANSI

Functionality

This is the directory of the package. Functions are denoted as function(args). Constants are denoted as constant = value. Anything with a listing under it is a module. All functions under submodules return a string containing the proper escape codes. This string must be printed with print(<function>(*args), end = '') to achieve the desired effect. The only function that does not behave like this is simpleANSI.conhostEnableANSI(). This function is required on windows to enable ANSI escapes in a conhost terminal (the default terminal).

simpleANSI
|-conhostEnableANSI()
|-clear
| |-screen()
| |-screenToEnd()
| |-screenToBeg()
| |-entireScree()
| |-line()
| |-lineToEnd()
| |-lineToBeg()
| `-entireLine()
|-cursor
| |-home()
| |-moveTo(line, column)
| |-moveUpBy(lines)
| |-moveDownBy(lines)
| |-moveRightBy(columns)
| |-moveLeftBy(columns)
| |-moveBegNext(lines)
| |-moveBegPrev(lines)
| |-moveToCol(column)
| |-savePos()
| `-restorePos()
`-graphics
  |-normal = 0
  |-bold = 1
  |-underline = 4
  |-blink = 5
  |-invert = 7
  |-invisible = 8
  |-fgBlack = 30
  |-fgRed = 31
  |-fgGreen = 32
  |-fgYellow = 33
  |-fgBlue = 34
  |-fgMagenta = 35
  |-fgCyan = 36
  |-fgWhite = 37
  |-fgColor = 38
  |-bgBlack = 40
  |-bgRed = 41
  |-bgGreen = 42
  |-bgYellow = 43
  |-bgBlue = 44
  |-bgMagenta = 45
  |-bgCyan = 46
  |-bgWhite = 47
  |-bgColor = 48
  |-mode8Bit = 5
  |-mode16Bit = 2
  `-setGraphicsMode(*args)

Resources:

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

simpleANSI-1.0.2.tar.gz (3.8 kB view hashes)

Uploaded Source

Built Distribution

simpleANSI-1.0.2-py3-none-any.whl (4.4 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