An open API service indexing awesome lists of open source software.

https://github.com/krypton-byte/github_markdown2image


https://github.com/krypton-byte/github_markdown2image

github library markdown markdown2image module python readme screenshot toimage

Last synced: 6 months ago
JSON representation

Awesome Lists containing this project

README

          

# Install
```bash
$ sudo apt install wkhtmltopdf
$ python3 -m pip3 install imgkit bs4 requests
$ python3 -m pip3 install github_markdown2image
```
```python
>>> from github_markdown2image import readme
>>> readme("https://github.com/krypton-byte/krypton-byte")

OR

>>> readme("https://github.com/krypton-byte/krypton-byte", "save.png")

Preview

>>> from PIL import Image
>>> out=readme("https://github.com/krypton-byte/krypton-byte")
>>> Image.open(out).show()
```
# Preview