Installation:
- If not using conda, rewrite work.sh to work with your python manager
- Put in your own wage, expected hours/week, etc in time.py
echo source work.sh >> .bashrc
Usage:
echo hello world |
import string | |
import re | |
import sys | |
print("Upload the Costco pdf to https://ocr.space/, and select table recognition option, OCR Engine1, and save the output text to a txt file in the same directory as this script.") | |
path = input("Next, enter the name of the file: ") | |
f = open(path, 'r') | |
def hasNumbers(inputString): |
# This will send you push notifications | |
# when a given ebay search has an item within | |
# your given params (eg. price, condition, etc) | |
# is ending within 1 hr | |
# just set this var to your search: (default is a test with freq. items) | |
page_url = "https://www.ebay.com/sch/i.html?_from=R40&_trksid=p2334524.m570.l1311.R9.TR10.TRC3.A0.H0.Xmacbook.TRS2&_nkw=macbook+pro+2017&_sacat=0&LH_TitleDesc=0&_sop=1&_osacat=0&_odkw=macbook" | |
# Search for something on ebay, set filters, then list by Time: ending soonest | |
from bs4 import BeautifulSoup |