This repository has been archived by the owner on Aug 7, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 955
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
13 additions
and
7 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
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
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,8 +1,7 @@ | ||
#!/usr/bin/env python | ||
# -*- coding: utf-8 -*- | ||
# | ||
# vim: sw=2 ts=2 sts=2 | ||
# | ||
# Copyright 2007 The Python-Twitter Developers | ||
# Copyright 2007-2018 The Python-Twitter Developers | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
|
@@ -16,14 +15,14 @@ | |
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
|
||
"""A library that provides a Python interface to the Twitter API""" | ||
"""A library that provides a Python interface to the Twitter API.""" | ||
from __future__ import absolute_import | ||
|
||
__author__ = 'The Python-Twitter Developers' | ||
__email__ = '[email protected]' | ||
__copyright__ = 'Copyright (c) 2007-2016 The Python-Twitter Developers' | ||
__license__ = 'Apache License 2.0' | ||
__version__ = '3.4.1' | ||
__version__ = '3.4.2' | ||
__url__ = 'https://github.com/bear/python-twitter' | ||
__download_url__ = 'https://pypi.python.org/pypi/python-twitter' | ||
__description__ = 'A Python wrapper around the Twitter API' | ||
|