This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import os | |
import re | |
from PyPDF2 import PdfFileReader | |
import textract | |
import csv | |
from openpyxl import Workbook | |
from openpyxl.writer.write_only import WriteOnlyCell | |
class Catloger(object): |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python3 | |
# Simplex method | |
# Author: HongXin | |
# 2016.11.17 | |
import numpy as np | |
def xlpsol(c, A, b): | |
""" |