ソースを参照

Updated pillow in requirements.txt to 5.4.0
Added pipenv install instructions to readme

Joseph Vest 5 年 前
コミット
7dfcf6bd56
3 ファイル変更21 行追加2 行削除
  1. 19 0
      README.md
  2. 1 1
      domainhunter.py
  3. 1 1
      requirements.txt

+ 19 - 0
README.md

@@ -8,6 +8,10 @@ This Python based tool was written to quickly query the Expireddomains.net searc
 
 ## Changes
 
+- 21 February 2020
+   + updated Pillow version to support Python3.7+
+   + Add instructions to install using pipenv
+
 - 13 August 2019
    + Added authentication support for ExpiredDomains.net thanks to acole76!
    
@@ -65,6 +69,8 @@ This Python based tool was written to quickly query the Expireddomains.net searc
 
 ## Installation
 
+__Direct Installation__
+
 Install Python requirements
 
     pip3 install -r requirements.txt
@@ -75,6 +81,19 @@ Optional - Install additional OCR support dependencies
 
 - MAC OSX: `brew install tesseract`
 
+__pipenv installation__
+
+    pipenv --python 3.7
+    pipenv install
+
+Optional - Install additional OCR support dependencies
+
+- Debian/Ubuntu: `apt-get install tesseract-ocr python3-imaging`
+
+## Tip
+
+You will need credentials from expireddomains.net for full functionality
+
 ## Usage
 
     usage: domainhunter.py [-h] [-a] [-k KEYWORD] [-c] [-f FILENAME] [--ocr]

+ 1 - 1
domainhunter.py

@@ -529,7 +529,7 @@ If you plan to use this content for illegal purpose, don't.  Have a nice day :)'
     urls = []
     
     if args.password == None or args.password == "":
-        password = getpass.getpass("Password: ")
+        password = getpass.getpass("expireddomains.net Password: ")
 
     loginExpiredDomains()
     

+ 1 - 1
requirements.txt

@@ -2,7 +2,7 @@ requests
 texttable==0.8.7
 beautifulsoup4==4.5.3
 lxml
-pillow==5.0.0
+pillow==5.4.0
 pytesseract
 urllib3
 uuid