Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/vinayak-mehta/present
A terminal-based presentation tool with colors and effects.
https://github.com/vinayak-mehta/present
Last synced: 25 days ago
JSON representation
A terminal-based presentation tool with colors and effects.
- Host: GitHub
- URL: https://github.com/vinayak-mehta/present
- Owner: vinayak-mehta
- License: apache-2.0
- Created: 2020-08-18T20:39:05.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2023-01-13T13:24:05.000Z (almost 2 years ago)
- Last Synced: 2024-03-23T01:43:19.013Z (8 months ago)
- Language: Python
- Homepage: https://present.readthedocs.io
- Size: 7.66 MB
- Stars: 4,311
- Watchers: 43
- Forks: 167
- Open Issues: 53
-
Metadata Files:
- Readme: README.md
- Changelog: HISTORY.md
- Contributing: docs/contributing.rst
- License: LICENSE
Awesome Lists containing this project
- awesome-starts - vinayak-mehta/present - A terminal-based presentation tool with colors and effects. (Python)
- StarryDivineSky - vinayak-mehta/present
README
# present
[![Documentation Status](https://readthedocs.org/projects/present/badge/?version=latest)](https://present.readthedocs.io/en/latest/) [![image](https://img.shields.io/pypi/v/present.svg)](https://pypi.org/project/present/) [![image](https://img.shields.io/pypi/pyversions/present.svg)](https://pypi.org/project/present/) [![image](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/ambv/black) [![Run on Repl.it](https://repl.it/badge/github/vinayak-mehta/present)](https://repl.it/@amasad/terminal-present)
A terminal-based presentation tool with colors and effects.
You can also play a [codio](https://present.readthedocs.io/en/latest/codio.html) (pre-recorded code block) on a slide.
`present` is built on [asciimatics](https://github.com/peterbrittain/asciimatics), and it works with `Python>=3.7`.
Check out the [gallery](https://present.readthedocs.io/en/latest/gallery/index.html) to see what everyone is making with `present`! You can add your slides by simply [opening an issue](https://github.com/vinayak-mehta/present/issues/new?assignees=&labels=made-with-present&template=submit-slides-to-gallery.md&title=Add+slides+to+gallery).
## Installation
You can simply use pip to install `present`:
```bash
$ pip install present
```## Usage
```bash
$ present sample.md
```Some controls:
- Quit: `q`
- Previous slide: `b`, Left arrow, Page Up
- Next slide: `n`, Space bar, Right arrow, Page DownAt the end, you can press `r` to restart the presentation.
## Syntax
Slides follow [Markdown](https://guides.github.com/features/mastering-markdown/) syntax. You can check out the [sample slides](https://github.com/vinayak-mehta/present/blob/master/examples/sample.md) for reference.
**Note:** Some things aren't supported yet:
- Effects and colors on the same slide.
- Effects and code on the same slide.### Separator
Each slide can be separated with a `---`.
```
Slide 1---
Slide 2
```### Headers
Level 1 headings become figlets, level 2 headings get underlined with `-`, and level 3 headings become bold.
```
# Heading 1## Heading 2
### Heading 3
```### Text
```
This is normal textThis is **bold text**
This is `inline code`
This is a [link](www.google.com)
As Kanye West said:
> We're living the future so
> the present is our past.
```### Lists
Ordered lists become unordered lists automatically.
```
- Item 1
- Item 1a
- Item 1b
- Item 1c
- Item 2
- Item 2a
```### Images
Image paths are relative to the directory where your slides are kept, and where you invoke `present`.
```
![RC](images/recurse.png)
```Note: You can use high resolution images and tweak the terminal font size to get the best results.
### Code blocks
```
import osos.getcwd()
```### Codios
Codios are pre-recorded playable code blocks which can be useful for live demos. You can find out how to write one in the [codio](https://present.readthedocs.io/en/latest/codio.html) section of the documentation.
```
![codio](codio.yml)
```### Style
Each slide can be styled with foreground / background colors and effects. By default, slides are black on white with no effects. You can add style to a slide by adding a comment at the beginning of the slide (after the slide separator):
```
Slide 1---
Slide 2
---
Slide 3
```Colors: `black`, `red`, `green`, `yellow`, `blue`, `magenta`, `cyan`, `white`.
Effects: `fireworks`, `explosions`, `stars`, `matrix`, `plasma`. More coming soon!
## Contributing
The [Contributor's Guide](https://present.readthedocs.io/en/latest/contributing.html) has detailed information about contributing issues, documentation, code, and tests.
## Versioning
`present` uses [Semantic Versioning](https://semver.org/). For the available versions, see the tags on the GitHub repository.
## License
This project is licensed under the Apache License, see the [LICENSE](https://github.com/vinayak-mehta/present/blob/master/LICENSE) file for details.