Skip to content

Commit

Permalink
Remove module-level docstrings from geocoders
Browse files Browse the repository at this point in the history
This is just clutter with no any useful meaning.
  • Loading branch information
KostyaEsmukov committed Jun 27, 2018
1 parent 3836855 commit d683ed2
Show file tree
Hide file tree
Showing 18 changed files with 0 additions and 67 deletions.
4 changes: 0 additions & 4 deletions geopy/geocoders/arcgis.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,3 @@
"""
:class:`.ArcGIS` geocoder.
"""

import json
import warnings
from time import time
Expand Down
4 changes: 0 additions & 4 deletions geopy/geocoders/baidu.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,3 @@
"""
:class:`.Baidu` is the Baidu Maps geocoder.
"""

import hashlib

from geopy.compat import quote_plus, urlencode
Expand Down
4 changes: 0 additions & 4 deletions geopy/geocoders/base.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,3 @@
"""
:class:`.GeoCoder` base object from which other geocoders are templated.
"""

from ssl import SSLError
from socket import timeout as SocketTimeout
import functools
Expand Down
4 changes: 0 additions & 4 deletions geopy/geocoders/bing.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,3 @@
"""
:class:`.Bing` geocoder.
"""

from geopy.compat import urlencode
from geopy.exc import (
GeocoderAuthenticationFailure,
Expand Down
4 changes: 0 additions & 4 deletions geopy/geocoders/databc.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,3 @@
"""
:class:`.DataBC` geocoder.
"""

from geopy.compat import urlencode
from geopy.exc import GeocoderQueryError
from geopy.geocoders.base import DEFAULT_SENTINEL, Geocoder
Expand Down
4 changes: 0 additions & 4 deletions geopy/geocoders/geocodefarm.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,3 @@
"""
:class:`.GeocodeFarm` geocoder.
"""

from geopy.compat import urlencode
from geopy.exc import (
GeocoderAuthenticationFailure,
Expand Down
3 changes: 0 additions & 3 deletions geopy/geocoders/geonames.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
"""
:class:`GeoNames` geocoder.
"""
import warnings

from geopy.compat import urlencode
Expand Down
4 changes: 0 additions & 4 deletions geopy/geocoders/googlev3.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,3 @@
"""
:class:`.GoogleV3` is the Google Maps V3 geocoder.
"""

import base64
import hashlib
import hmac
Expand Down
3 changes: 0 additions & 3 deletions geopy/geocoders/ignfrance.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
"""
:class:`.IGNFrance` is the IGN France Geocoder.
"""
import warnings
import xml.etree.ElementTree as ET

Expand Down
4 changes: 0 additions & 4 deletions geopy/geocoders/mapzen.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,3 @@
"""
Mapzen geocoder, contributed by Michal Migurski of Mapzen.
"""

from geopy.compat import urlencode
from geopy.geocoders.base import DEFAULT_SENTINEL, Geocoder
from geopy.location import Location
Expand Down
3 changes: 0 additions & 3 deletions geopy/geocoders/opencage.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
"""
:class:`.OpenCage` is the Opencagedata geocoder.
"""
import warnings

from geopy.compat import urlencode
Expand Down
4 changes: 0 additions & 4 deletions geopy/geocoders/openmapquest.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,3 @@
"""
:class:`.OpenMapQuest` geocoder.
"""

from geopy.compat import urlencode
from geopy.exc import ConfigurationError
from geopy.geocoders.base import DEFAULT_SENTINEL, Geocoder
Expand Down
3 changes: 0 additions & 3 deletions geopy/geocoders/osm.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
"""
OpenStreetMap geocoder, contributed by Alessandro Pasotti of ItOpen.
"""
from itertools import chain

from geopy.compat import urlencode
Expand Down
4 changes: 0 additions & 4 deletions geopy/geocoders/photon.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,3 @@
"""
:class:`.Photon` geocoder.
"""

from geopy.compat import string_compare, urlencode
from geopy.geocoders.base import DEFAULT_SENTINEL, Geocoder
from geopy.location import Location
Expand Down
4 changes: 0 additions & 4 deletions geopy/geocoders/pickpoint.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,3 @@
"""
PickPoint geocoder
"""

from geopy.geocoders import Nominatim
from geopy.geocoders.base import DEFAULT_SENTINEL

Expand Down
4 changes: 0 additions & 4 deletions geopy/geocoders/smartystreets.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,3 @@
"""
:class:`.LiveAddress` geocoder.
"""

from geopy.compat import urlencode
from geopy.exc import ConfigurationError, GeocoderQuotaExceeded
from geopy.geocoders.base import DEFAULT_SENTINEL, Geocoder
Expand Down
4 changes: 0 additions & 4 deletions geopy/geocoders/what3words.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,3 @@
"""
:class:`.What3Words` geocoder.
"""

import re

from geopy import exc
Expand Down
3 changes: 0 additions & 3 deletions geopy/geocoders/yandex.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
"""
:class:`Yandex` geocoder.
"""
import warnings

from geopy.compat import urlencode
Expand Down

0 comments on commit d683ed2

Please sign in to comment.