First verison
Project description
Textyplot
=========
Simple, light project for drawing your diagrams with only text.
Features
========
* Fast
* Simple
* Working with Python2 and Python3 (preferred)
* Supports zooming and adjusting the view.
* Text graphics with UTF-8 (⣧⡇⢸ )
* Supports python3+
Code
===========
```
import textyplot
plotter = textyplot.Plotter(points, width=80, height=8)
plotter.show(
zoom=True, data=True, border=True,
color=False, fill=True, zero=True,
html=False, stretch=True
)
plotter.save("file.txt", border=True)
with open("file.txt", "w") as o:
plotter.write(o, color=True, html=True)
```
Code examples
=============
```
import textyplot
plotter = textyplot.Plotter([1, 2, 3, 4, 5, 3, 2, 1], width=80)
plotter.show()
plotter = textyplot.Plotter(i for i in range(100))
plotter.show()
```
![Result](/docs/code0.png)
```
import textyplot
plotter = textyplot.Plotter((i for i in range(100)), width=50)
plotter.show(color=True, fill=False)
```
![Result](/docs/code1.png)
```
import textyplot, math
plotter = textyplot.Plotter((math.sin(i / 5) * 5 for i in range(100)), width=50)
plotter.show(color=True, fill=False)
```
![Result](/docs/code2.png)
```
import textyplot, math
plotter = textyplot.Plotter((math.log(i) for i in range(1, 500)), width=80)
plotter.show(color=True, fill=False)
```
![Result](/docs/code3.png)
```
import textyplot, random
maximum = 48
plotter = textyplot.Plotter(
random.random() * (maximum / 2 - abs(maximum / 2 - i)) for i in range(maximum)
)
plotter.show(color=True)
```
![Result](/docs/code4.png)
Command-line usage
============
```
usage: textyplot [-h] [-Z] [-B] [-D] [-C] [-F] [-G] [-H] [-S] [-R]
[-X characters] [-Y characters]
Text mode diagrams with possible colors usin UTF-8 colors.
optional arguments:
-h, --help show this help message and exit
-Z, --no-zoom zoom diagram (default: yes)
-B, --no-border draw border (default: yes)
-D, --no-data draw values (default: yes)
-C, --no-color use colors (default: yes)
-F, --no-fill fill diagram (default: yes)
-G, --no-groud draw zero line (default: yes)
-H, --html render to html (default: no)
-S, --stretch stretch points to width
-R, --reverse reverse points
-X characters, --width characters
drawing max width (default: 80)
-Y characters, --height characters
drawing height (default: 8)
```
Command-line examples
=======
```./bin/random 100 | python textyplot```
![Example #1](/docs/cmd1.png)
```./bin/random 100 | python textyplot -C```
![Example #2](/docs/cmd2.png)
```./bin/random 10 | python textyplot -X 80```
![Example #3](/docs/cmd3.png)
```./bin/random 10 | python textyplot -X 80 -S```
![Example #4](/docs/cmd4.png)
```./bin/random 400 | python textyplot```
![Example #5](/docs/cmd5.png)
```python ./bin/bitcoin.py | python textyplot -f 50```
![Example #6](/docs/cmd6.png)
=========
Simple, light project for drawing your diagrams with only text.
Features
========
* Fast
* Simple
* Working with Python2 and Python3 (preferred)
* Supports zooming and adjusting the view.
* Text graphics with UTF-8 (⣧⡇⢸ )
* Supports python3+
Code
===========
```
import textyplot
plotter = textyplot.Plotter(points, width=80, height=8)
plotter.show(
zoom=True, data=True, border=True,
color=False, fill=True, zero=True,
html=False, stretch=True
)
plotter.save("file.txt", border=True)
with open("file.txt", "w") as o:
plotter.write(o, color=True, html=True)
```
Code examples
=============
```
import textyplot
plotter = textyplot.Plotter([1, 2, 3, 4, 5, 3, 2, 1], width=80)
plotter.show()
plotter = textyplot.Plotter(i for i in range(100))
plotter.show()
```
![Result](/docs/code0.png)
```
import textyplot
plotter = textyplot.Plotter((i for i in range(100)), width=50)
plotter.show(color=True, fill=False)
```
![Result](/docs/code1.png)
```
import textyplot, math
plotter = textyplot.Plotter((math.sin(i / 5) * 5 for i in range(100)), width=50)
plotter.show(color=True, fill=False)
```
![Result](/docs/code2.png)
```
import textyplot, math
plotter = textyplot.Plotter((math.log(i) for i in range(1, 500)), width=80)
plotter.show(color=True, fill=False)
```
![Result](/docs/code3.png)
```
import textyplot, random
maximum = 48
plotter = textyplot.Plotter(
random.random() * (maximum / 2 - abs(maximum / 2 - i)) for i in range(maximum)
)
plotter.show(color=True)
```
![Result](/docs/code4.png)
Command-line usage
============
```
usage: textyplot [-h] [-Z] [-B] [-D] [-C] [-F] [-G] [-H] [-S] [-R]
[-X characters] [-Y characters]
Text mode diagrams with possible colors usin UTF-8 colors.
optional arguments:
-h, --help show this help message and exit
-Z, --no-zoom zoom diagram (default: yes)
-B, --no-border draw border (default: yes)
-D, --no-data draw values (default: yes)
-C, --no-color use colors (default: yes)
-F, --no-fill fill diagram (default: yes)
-G, --no-groud draw zero line (default: yes)
-H, --html render to html (default: no)
-S, --stretch stretch points to width
-R, --reverse reverse points
-X characters, --width characters
drawing max width (default: 80)
-Y characters, --height characters
drawing height (default: 8)
```
Command-line examples
=======
```./bin/random 100 | python textyplot```
![Example #1](/docs/cmd1.png)
```./bin/random 100 | python textyplot -C```
![Example #2](/docs/cmd2.png)
```./bin/random 10 | python textyplot -X 80```
![Example #3](/docs/cmd3.png)
```./bin/random 10 | python textyplot -X 80 -S```
![Example #4](/docs/cmd4.png)
```./bin/random 400 | python textyplot```
![Example #5](/docs/cmd5.png)
```python ./bin/bitcoin.py | python textyplot -f 50```
![Example #6](/docs/cmd6.png)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Textyplot-1.0.tar.gz
(5.9 kB
view details)
File details
Details for the file Textyplot-1.0.tar.gz
.
File metadata
- Download URL: Textyplot-1.0.tar.gz
- Upload date:
- Size: 5.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 89140fb3830fee4ae490b04358efc7a93914a7cc6dd0cdcf4c951624567dd83b |
|
MD5 | d7117388011ae4464fe383505ead2e90 |
|
BLAKE2b-256 | 6221daab979fadc8de6cf0599ab1ba75a911f89d75efffd27ca02c45defcddff |