Skip to content

jeeveis/pyphishtank

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 

Repository files navigation

PyPhishTank

Python wrapper for the PhishTank Check URL API.

Example Usage

from pyphishtank import PhishTank

p = PhishTank()

result = p.check("http://example.com")

if result.in_database:
  if result.valid:
    print("{url} is a phish!".format(url=result.url))
  else:
    print("{url} is not a phish!".format(url=result.url))
else:
  print("{url} is not in the PhishTank database".format(url=result.url))
  

About

Python library for PhishTank's API

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 100.0%