06788e95f4
Python package for retrieving WHOIS information of domains Features - Python wrapper for Linux "whois" command - simple interface to access parsed WHOIS data for a given domain - able to extract data for all the popular TLDs (com, org, net, biz, info, pl, jp, uk, nz, ...) - query a WHOIS server directly instead of going through an intermediate web service like many others do - works with Python 2.4+ and Python 3.x - all dates as datetime objects - possibility to cache results WWW: https://pypi.org/project/whois/ PR: 250810 Submitted by: Gabriel Dutra <0xdutra@gmail.com>
21 lines
426 B
Makefile
21 lines
426 B
Makefile
# Created by: Gabriel Dutra <0xdutra@gmail.com>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= whois
|
|
PORTVERSION= 0.9.7
|
|
CATEGORIES= net python
|
|
MASTER_SITES= CHEESESHOP
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
|
|
MAINTAINER= 0xdutra@gmail.com
|
|
COMMENT= Python package for retrieving WHOIS information of domains
|
|
|
|
LICENSE= WTFPL
|
|
LICENSE_FILE= ${WRKSRC}/license
|
|
|
|
USES= python
|
|
USE_PYTHON= autoplist concurrent distutils
|
|
|
|
NO_ARCH= yes
|
|
|
|
.include <bsd.port.mk>
|