forked from UnixCro/PyInstaLive
-
Notifications
You must be signed in to change notification settings - Fork 0
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
Cammy
committed
Jun 22, 2019
1 parent
0fefb8d
commit 8b5f86f
Showing
4 changed files
with
11 additions
and
11 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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
# PyInstaLive | ||
![Version 3.1.4](https://img.shields.io/badge/Version-3.1.4-orange.svg) | ||
![Version 3.1.5](https://img.shields.io/badge/Version-3.1.5-orange.svg) | ||
![Python 2.7, 3.5](https://img.shields.io/badge/Python-2.7%2C%203.5%2B-3776ab.svg) | ||
|
||
This Python script enables you to download any ongoing Instagram livestreams as well as any available replays. It is based on [another script](https://github.com/taengstagram/instagram-livestream-downloader) that has now been discontinued. | ||
|
@@ -50,21 +50,21 @@ Make sure all tools are accessible via command line (added to your PATH if on Wi | |
|
||
## Installation | ||
|
||
*Tip — To install PyInstaLive with the latest commit changes, remove the version tag from the install command (e.g. **@3.1.4**).* | ||
*Tip — To install PyInstaLive with the latest commit changes, remove the version tag from the install command (e.g. **@3.1.5**).* | ||
|
||
#### Installing | ||
|
||
Run the following command in your command line (might need to be run as administrator on Windows): | ||
```bash | ||
pip install git+https://github.com/notcammy/[email protected].4 --process-dependency-links | ||
pip install git+https://github.com/notcammy/[email protected].5 --process-dependency-links | ||
``` | ||
|
||
#### Updating | ||
|
||
To update PyInstaLive to the latest version (currently **3.1.4**) run the following command: | ||
To update PyInstaLive to the latest version (currently **3.1.5**) run the following command: | ||
|
||
```bash | ||
pip install git+https://github.com/notcammy/[email protected].4 --process-dependency-links --upgrade | ||
pip install git+https://github.com/notcammy/[email protected].5 --process-dependency-links --upgrade | ||
``` | ||
|
||
#### Specific versions | ||
|
@@ -123,7 +123,7 @@ Below is an example of PyInstaLive's output after downloading a livestream: | |
> pyinstalive -d "janedoe" | ||
--------------------------------------------------------------------------- | ||
[I] PYINSTALIVE (SCRIPT V3.1.4 - PYTHON V3.6.3) - 01-02-2019 06:56:29 PM | ||
[I] PYINSTALIVE (SCRIPT V3.1.5 - PYTHON V3.6.3) - 01-02-2019 06:56:29 PM | ||
--------------------------------------------------------------------------- | ||
[I] Successfully logged into account: johndoe | ||
--------------------------------------------------------------------------- | ||
|
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 |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
|
||
__author__ = 'notcammy' | ||
__email__ = '[email protected]' | ||
__version__ = '3.1.4' | ||
__version__ = '3.1.5' | ||
|
||
_api_version = '1.5.7' | ||
_api_extensions_version = '0.3.8' | ||
|