A Light Django Application which uses selenium to convert any html page to pdf. Using this approach you can easily make pdf of HTML pages with charts, tables and having their loaded Styles.
Project description
django-selenium-pdfmaker
A Light Django Application which uses selenium to convert any html page to pdf. Using this approach you can easily make pdf of HTML pages with charts, tables and having their loaded Styles.
Install
Install easily via pip:
pip install django-selenium-pdfmaker
Then add package name django_selenium_pdfmaker
to the INSTALLED_APPS of django.
Usage
To use this module:
from django_selenium_pdfmaker.modules import PDFMaker
pdfmaker = PDFMaker()
res = pdfmaker.get_pdf_from_html(url='https://google.com', filename='output', write=True)
and res
includes:
{
"status": true,
"raw": "pdf in binary format",
"pdf": "ConvertedPDF instance if write flag is True.",
"message": ""
}
status
istrue
when converting to pdf is successful, else will befalse
. For example when url path is unreachablestatus
will befalse
.raw
is binary data of pdf before storing in file. Will hold data ifstatus == true
pdf
isConvertedPDF
object ifstatus
istrue
.message
will hold reason whystatus
isfalse
.
Settings
CHROMEDRIVER_PATH
Override this variable to address the binary file of chromedriver of your own.
SELENIUM_DELAY
To set delay on selenium requests (default 3). it will last that amount of time crawling requested page before closing the session and create pdf of it.
Installation Chrome
Be noted to use this package google-chrome in your os. To install on ubuntu use following commads:
sudo curl -sS -o - https://dl-ssl.google.com/linux/linux_signing_key.pub | sudo apt-key add
sudo bash -c "echo 'deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main' >> /etc/apt/sources.list.d/google-chrome.list"
sudo apt -y update
sudo apt -y install google-chrome-stable
Exceptions
1- Message: session not created: This version of ChromeDriver only supports Chrome version 90 Current browser version is 103.0.5060.53 with binary path /usr/bin/google-chrome
If you faced a problem like this, you should address the correct chromedriver binary in your codes.
To do that download the proper chromedriver version and place in your OS. Then address it with following option in
your settings.py
file:
CHROMEDRIVER_PATH = '/usr/bin/chromedriver'
Also you can use below script to automatically fix this problem:
pip install webdriver-manager
Then use the driver in python as follows
from selenium import webdriver
from webdriver_manager.chrome import ChromeDriverManager
driver = webdriver.Chrome(ChromeDriverManager().install())
You can find the solution link
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
Built Distribution
File details
Details for the file django-selenium-pdfmaker-0.0.5.tar.gz
.
File metadata
- Download URL: django-selenium-pdfmaker-0.0.5.tar.gz
- Upload date:
- Size: 19.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 76883106a20a706d0e70577b6a1c754a115835f1d3b7399fdcec6b0c7fb9a75d |
|
MD5 | 598b2ac5575d1dc5899521fdc0353e0e |
|
BLAKE2b-256 | c0b82cb5b771f77f41e7c1e57a184f4aa74b778e2bc9326ecd79e700095774d7 |
File details
Details for the file django_selenium_pdfmaker-0.0.5-py3-none-any.whl
.
File metadata
- Download URL: django_selenium_pdfmaker-0.0.5-py3-none-any.whl
- Upload date:
- Size: 30.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ab53d86d502ef29f4582131772bb22901ef195f4f7609597c9cbebf97ce79515 |
|
MD5 | 8455a7ef7fa0649b49daaab9038e2c7f |
|
BLAKE2b-256 | b2741ad4a111b767fc028363fa8808b348694a44c6646741747ce8e61a4dd0fb |