forked from pettazz/pygooglevoice
-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove lots of boilerplate from the root module.
- Loading branch information
Showing
1 changed file
with
4 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,14 @@ | ||
""" | ||
This project aims to bring the power of the Google Voice API to | ||
the Python language in a simple, | ||
easy-to-use manner. Currently it allows you to place calls, send sms, | ||
easy-to-use manner. Currently it allows one to place calls, send sms, | ||
download voicemails/recorded messages, and search the various | ||
folders of your Google Voice Accounts. | ||
You can use the Python API or command line script to schedule | ||
folders of Google Voice Accounts. | ||
Use the Python API or command line script to schedule | ||
calls, check for new received calls/sms, | ||
or even sync your recorded voicemails/calls. | ||
or even sync recorded voicemails/calls. | ||
""" | ||
|
||
__author__ = 'Justin Quick and Joe McCall' | ||
__email__ = ('[email protected], [email protected]',) | ||
__copyright__ = 'Copyright 2009, Justin Quick and Joe McCall' | ||
__credits__ = ['Justin Quick', 'Joe McCall', 'Jacob Feisley', 'John Nagle'] | ||
__license__ = 'New BSD' | ||
|
||
try: | ||
__version__ = __import__('pkg_resources').get_distribution('googlevoice').version | ||
except Exception: | ||
__version__ = 'unknown' | ||
|
||
from .voice import Voice | ||
from .util import Phone, Message, Folder | ||
|
||
|