Please contact me for a transaction. Claudia.
Oh, hello.
""" | |
# pdf_contrast.py | |
Modify contrast of pdf | |
## Install | |
``` | |
pip install Pillow pdf2image img2pdf tqdm | |
``` | |
> Save this file as pdf_contrast.py |
#!/bin/bash | |
if [ $# -eq 0 ] | |
then | |
echo "Usage : $0 url [output]" | |
exit | |
fi | |
VID=$(basename $1) |
#!/usr/bin/env python | |
## Tiny Syslog Server in Python. | |
## | |
## This is a tiny syslog server that is able to receive UDP based syslog | |
## entries on a specified port and save them to a file. | |
## That's it... it does nothing else... | |
## There are a few configuration parameters. | |
LOG_FILE = 'youlogfile.log' |