Skip to content

Instantly share code, notes, and snippets.

View Santoshge-Reddy's full-sized avatar

Santosh Santoshge-Reddy

View GitHub Profile
@Santoshge-Reddy
Santoshge-Reddy / py-img2pdf.py
Last active March 2, 2021 16:38
Convert img to pdf
from os import listdir
from fpdf import FPDF
path = "./docs/voter/" # get the path of images
imagelist = listdir(path) # get list of all images
imagelist = sorted(imagelist,key=lambda x: int(os.path.splitext(x)[0]))
pdf = FPDF('P','mm','A4') # create an A4-size pdf document
@Santoshge-Reddy
Santoshge-Reddy / install virtualenv ubuntu 16.04.md
Created October 30, 2020 12:07 — forked from frfahim/install virtualenv ubuntu 16.04.md
How to install virtual environment on ubuntu 16.04

How to install virtualenv:

Install pip first

sudo apt-get install python3-pip

Then install virtualenv using pip3

sudo pip3 install virtualenv 
@Santoshge-Reddy
Santoshge-Reddy / watch.py
Created September 9, 2020 05:41
watch directory for changes.
import os
import win32file
import win32con
ACTIONS = {
1 : "Created",
2 : "Deleted",
3 : "Updated",
4 : "Renamed from something",
from pdf2image import convert_from_path, convert_from_bytes
import os
import argparse
from pdf2image.exceptions import (
PDFInfoNotInstalledError,
PDFPageCountError,
PDFSyntaxError
)
directory = 'directory/path'
from PyPDF2 import PdfFileWriter, PdfFileReader
import os
# inputpdf = PdfFileReader(open("../EOBs/atena/test/YourReport (45).pdf", "rb"))
# filename, file_extension = os.path.splitext('/path/to/somefile.ext')
# filename
directory = 'directory/path'
for filename in os.listdir(directory):
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.