-
-
Notifications
You must be signed in to change notification settings - Fork 619
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
7 changed files
with
19 additions
and
10 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ A Python wrapper for the Instagram private API with no 3rd party dependencies. S | |
![Python 2.7](https://img.shields.io/badge/Python-2.7-green.svg) | ||
![Python 3.5](https://img.shields.io/badge/Python-3.5-green.svg) | ||
![License: MIT](https://img.shields.io/badge/license-MIT_License-blue.svg) | ||
[![Release](https://img.shields.io/badge/release-v1.1.5-orange.svg)](https://github.com/ping/instagram_private_api/releases) | ||
[![Release](https://img.shields.io/badge/release-v1.2.0-orange.svg)](https://github.com/ping/instagram_private_api/releases) | ||
[![Docs](https://img.shields.io/badge/docs-readthedocs.io-ff4980.svg)](https://instagram-private-api.readthedocs.io/en/latest/) | ||
[![Build](https://img.shields.io/travis/ping/instagram_private_api.svg)](https://travis-ci.org/ping/instagram_private_api) | ||
|
||
|
@@ -44,11 +44,11 @@ Documentation is available at https://instagram-private-api.readthedocs.io/en/la | |
|
||
No 3rd-party libraries required. Just drop one of or both folders [``instagram_private_api/``](instagram_private_api/) and [``instagram_web_api/``](instagram_web_api/) into your project path or pip install with: | ||
|
||
``pip install git+ssh://[email protected]/ping/instagram_private_api.git@1.1.5`` | ||
``pip install git+ssh://[email protected]/ping/instagram_private_api.git@1.2.0`` | ||
|
||
To update: | ||
|
||
``pip install git+ssh://[email protected]/ping/instagram_private_api.git@1.1.5 --upgrade`` | ||
``pip install git+ssh://[email protected]/ping/instagram_private_api.git@1.2.0 --upgrade`` | ||
|
||
To update with latest repo code: | ||
|
||
|
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 |
---|---|---|
|
@@ -10,13 +10,13 @@ Install via pip | |
|
||
.. code-block:: bash | ||
$ pip install git+ssh://[email protected]/ping/instagram_private_api.git@1.1.5 | ||
$ pip install git+ssh://[email protected]/ping/instagram_private_api.git@1.2.0 | ||
Update your install with the latest release | ||
|
||
.. code-block:: bash | ||
$ pip install git+ssh://[email protected]/ping/instagram_private_api.git@1.1.5 --upgrade | ||
$ pip install git+ssh://[email protected]/ping/instagram_private_api.git@1.2.0 --upgrade | ||
Force an update from source | ||
|
||
|
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 |
---|---|---|
|
@@ -4,7 +4,7 @@ | |
from distutils.core import setup | ||
|
||
__author__ = 'ping <[email protected]>' | ||
__version__ = '1.1.5' | ||
__version__ = '1.2.0' | ||
|
||
packages = [ | ||
'instagram_private_api', | ||
|