Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@
[![License](https://img.shields.io/github/license/mashape/apistatus.svg)](https://pypi.python.org/pypi/domaintools_api/)
[![Join the chat at https://gitter.im/DomainTools/api-python](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/DomainTools/api-python?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)

DomainTool's Official Python API
DomainTools' Official Python API

![domaintools Example](https://github.com/DomainTools/python_api/raw/master/artwork/example.gif)


Installing the DomainTool's API
Installing the DomainTools' API
===================

To install the API run
Expand Down Expand Up @@ -145,7 +145,7 @@ Using the API Asynchronously

![domaintools Async Example](https://github.com/DomainTools/python_api/raw/master/artwork/example_async.gif)

If you are running on Python 3.5+ the DomainTool's API automatically supports async usage:
If you are running on Python 3.5+ the DomainTools' API automatically supports async usage:

```python

Expand Down
2 changes: 1 addition & 1 deletion domaintools/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""DomainTool's Official Python API"""
"""DomainTools' Official Python API"""
from domaintools._version import current
from domaintools.api import API

Expand Down
2 changes: 1 addition & 1 deletion domaintools/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ def delimited(items, character='|'):


class API(object):
"""Enables interacting with the DomainTool's API via Python:
"""Enables interacting with the DomainTools' API via Python:

from domaintools import API

Expand Down
2 changes: 1 addition & 1 deletion domaintools/base_results.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""Defines the base result object - which specifies how DomainTool's API endpoints will be interacted with"""
"""Defines the base result object - which specifies how DomainTools' API endpoints will be interacted with"""
import json
import re
import time
Expand Down
2 changes: 1 addition & 1 deletion domaintools_async/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ async def __anext__(self):


class AsyncResults(Results):
"""The base (abstract) DomainTool's product definition with Async capabilities built in"""
"""The base (abstract) DomainTools' product definition with Async capabilities built in"""

def __await__(self):
return self.__awaitable__().__await__()
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ def run_tests(self):

setup(name='domaintools_api',
version='0.1.1',
description="DomainTool's Official Python API",
description="DomainTools' Official Python API",
long_description=readme,
author='DomainTools',
author_email='timothy@domaintools.com',
Expand Down
2 changes: 1 addition & 1 deletion tests/test_api.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""Tests the Python interface for DomainTool's APIs"""
"""Tests the Python interface for DomainTools' APIs"""
from os import environ

import pytest
Expand Down
2 changes: 1 addition & 1 deletion tests/test_async.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""Tests Python3.5+ async interaction support for DomainTool's APIs"""
"""Tests Python3.5+ async interaction support for DomainTools' APIs"""
import asyncio

from tests.settings import vcr, api
Expand Down
2 changes: 1 addition & 1 deletion tests/test_cli.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""Tests the CLI interface for DomainTool's APIs"""
"""Tests the CLI interface for DomainTools' APIs"""
import pytest

from domaintools import cli, __version__
Expand Down