Skip to content

Commit ade18a9

Browse files
committed
domain_age
1 parent 81b3c0c commit ade18a9

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

domain_age/creation_date.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# -*- coding: utf-8 -*-
22
import re
3-
from whois_python.constants import SERVER_NOT_FOUND, CREATION_DATE_NOT_FOUND
4-
from whois_python.whois_client import query_whois
5-
from whois_python.parse_date import parse_date
3+
from domain_age.constants import SERVER_NOT_FOUND, CREATION_DATE_NOT_FOUND
4+
from domain_age.whois_client import query_whois
5+
from domain_age.parse_date import parse_date
66

77

88
def get_domain_creation_date(domain):

domain_age/whois_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# -*- coding: utf-8 -*-
22
import socket
3-
from whois_python.constants import WHOIS_PORTION_SIZE, WHOIS_PORT, WHOIS_RESPONSE_LEN_LIMIT, SERVERS, SERVER_NOT_FOUND
3+
from domain_age.constants import WHOIS_PORTION_SIZE, WHOIS_PORT, WHOIS_RESPONSE_LEN_LIMIT, SERVERS, SERVER_NOT_FOUND
44

55

66
def query_whois(domain):

setup.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@
44
long_description = fh.read()
55

66
setuptools.setup(
7-
name="whois_python",
8-
version="1.5.2",
7+
name="domain_age",
8+
version="1.5.4",
99
author="Elliot Pourmand",
1010
author_email="elliot@pourmand.com",
11-
description="whois client and parser focused on creation date",
11+
description="whois client for parsing domain creation date",
1212
long_description=long_description,
1313
long_description_content_type="text/markdown",
14-
url = 'https://github.com/ElliotVilhelm/python-whois',
14+
url = 'https://github.com/ElliotVilhelm/python-domain-age',
1515
packages=setuptools.find_packages(),
1616
classifiers=(
1717
"Programming Language :: Python :: 3",

0 commit comments

Comments
 (0)