Skip to content

Commit

Permalink
domain_age
Browse files Browse the repository at this point in the history
  • Loading branch information
elliotvilhelm committed Aug 8, 2018
1 parent 81b3c0c commit ade18a9
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions domain_age/creation_date.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# -*- coding: utf-8 -*-
import re
from whois_python.constants import SERVER_NOT_FOUND, CREATION_DATE_NOT_FOUND
from whois_python.whois_client import query_whois
from whois_python.parse_date import parse_date
from domain_age.constants import SERVER_NOT_FOUND, CREATION_DATE_NOT_FOUND
from domain_age.whois_client import query_whois
from domain_age.parse_date import parse_date


def get_domain_creation_date(domain):
Expand Down
2 changes: 1 addition & 1 deletion domain_age/whois_client.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*-
import socket
from whois_python.constants import WHOIS_PORTION_SIZE, WHOIS_PORT, WHOIS_RESPONSE_LEN_LIMIT, SERVERS, SERVER_NOT_FOUND
from domain_age.constants import WHOIS_PORTION_SIZE, WHOIS_PORT, WHOIS_RESPONSE_LEN_LIMIT, SERVERS, SERVER_NOT_FOUND


def query_whois(domain):
Expand Down
8 changes: 4 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,14 @@
long_description = fh.read()

setuptools.setup(
name="whois_python",
version="1.5.2",
name="domain_age",
version="1.5.4",
author="Elliot Pourmand",
author_email="[email protected]",
description="whois client and parser focused on creation date",
description="whois client for parsing domain creation date",
long_description=long_description,
long_description_content_type="text/markdown",
url = 'https://github.com/ElliotVilhelm/python-whois',
url = 'https://github.com/ElliotVilhelm/python-domain-age',
packages=setuptools.find_packages(),
classifiers=(
"Programming Language :: Python :: 3",
Expand Down

0 comments on commit ade18a9

Please sign in to comment.