Cammy преди 6 години
родител
ревизия
c87e068d6b
променени са 5 файла, в които са добавени 16 реда и са изтрити 11 реда
  1. 3 3
      .github/issue_template.md
  2. 6 1
      MOREHELP.md
  3. 5 5
      README.md
  4. 1 1
      pyinstalive/initialize.py
  5. 1 1
      setup.py

+ 3 - 3
.github/issue_template.md

@@ -1,7 +1,7 @@
 ### Please check the boxes below by filling [ ] with an x so it looks like [x].
 ###### Remove all spaces already present in the box.
 
-- [ ] I am using the latest version of PyInstaLive: 2.5.8.
+- [ ] I am using the latest version of PyInstaLive: 2.5.9.
 - [ ] I have installed either Python 2.7.x or 3.5>=. (If applicable)
 - [ ] I have read the [README](https://github.com/notcammy/pyinstalive/blob/master/README.md).
 - [ ] I have read the [FAQ](https://github.com/notcammy/pyinstalive/blob/master/FAQ.md).
@@ -30,11 +30,11 @@ Run ```pyinstalive --info``` and paste its output below. Don't forget to omit yo
 ```bash
 $ pyinstalive --info
 ----------------------------------------------------------------------
-PYINSTALIVE (SCRIPT V2.5.8 - PYTHON V3.6.3) - 11:50:00 AM
+PYINSTALIVE (SCRIPT V2.5.9 - PYTHON V3.6.3) - 11:50:00 AM
 ----------------------------------------------------------------------
 [I] To see all the available arguments, use the -h argument.
 
-[I] PyInstaLive version:        2.5.8
+[I] PyInstaLive version:        2.5.9
 [I] Python version:             3.6.3
 [I] FFmpeg framework:           Available
 [I] Cookie files:               2 (username.json matches config user)

+ 6 - 1
MOREHELP.md

@@ -7,7 +7,7 @@
 
 - ```-p``` or ```--password```  **—**  Instagram password to login with. Requires:  ```--username```, ```--download```.
 
-- ```-d``` or ```--download```  **—**  The username of the user whose livestream or replay you want to save.
+- ```-d``` or ```--download```  **—**  The username or user Id of the user whose livestream or replay you want to save.
 
 - ```-r``` or ```--record```  **—**  The username of the user whose livestream or replay you want to save (legacy).
 
@@ -21,6 +21,11 @@
 
 - ```-df``` or ```--downloadfollowing```  **—**  When this argument is passed, PyInstaLive will check if any users from your following list have any available livestreams or replays and start a daemon process running PyInstaLive in the background for those that do. You cannot cancel the launched processes or start them with any extra arguments. It's recommended to enable ```log_to_file``` when using this argument. (Experimental, use at own risk.)
 
+- ```-cp``` or ```--configpath```  **—**  Passing this argument along with a valid path to a different configuration file will override the default path.
+
+- ```-sp``` or ```--saavepath```  **—**  Passing this argument along with a valid path to a different folder will override the path specified in the configuration file.
+
+
 
 # Default configuration file
 

+ 5 - 5
README.md

@@ -1,5 +1,5 @@
 # PyInstaLive
-![Version ](https://img.shields.io/badge/Version-2.5.8-orange.svg?longCache=true&style=flat)
+![Version ](https://img.shields.io/badge/Version-2.5.9-orange.svg?longCache=true&style=flat)
 
 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.
 
@@ -57,15 +57,15 @@ In case it doesn't work or you just prefer building PyInstaLive from source foll
 
 Run the following command in Command Prompt (might need to be run as administrator on Windows) or a terminal:
 ```bash
-pip install git+https://github.com/notcammy/PyInstaLive.git@2.5.8 --process-dependency-links
+pip install git+https://github.com/notcammy/PyInstaLive.git@2.5.9 --process-dependency-links
 ```
 
 #### Updating
 
-To update PyInstaLive to the latest version (currently **2.5.8**) run the following command:
+To update PyInstaLive to the latest version (currently **2.5.9**) run the following command:
 
 ```bash
-pip install git+https://github.com/notcammy/PyInstaLive.git@2.5.8 --process-dependency-links --upgrade
+pip install git+https://github.com/notcammy/PyInstaLive.git@2.5.9 --process-dependency-links --upgrade
 ```
 
 #### Specific versions
@@ -119,7 +119,7 @@ Below is an example of PyInstaLive's output after downloading a livestream:
 > pyinstalive -d "janedoe"
 
 ----------------------------------------------------------------------
-PYINSTALIVE (SCRIPT V2.5.8 - PYTHON V3.6.3) - 06:45:30 PM
+PYINSTALIVE (SCRIPT V2.5.9 - PYTHON V3.6.3) - 06:45:30 PM
 ----------------------------------------------------------------------
 [I] Successfully logged into user "johndoe".
 [I] Cookie file expiry date: 2018-09-01 at 04:38:08 PM

+ 1 - 1
pyinstalive/initialize.py

@@ -13,7 +13,7 @@ from .downloader import start_single, start_multiple
 from .logger import log_seperator, supports_color, log_info_blue, log_info_green, log_warn, log_error, log_whiteline, log_plain
 from .settings import settings
 
-script_version = "2.5.8@master"
+script_version = "2.5.9"
 python_version = sys.version.split(' ')[0]
 bool_values = {'True', 'False'}
 

+ 1 - 1
setup.py

@@ -2,7 +2,7 @@ from setuptools import setup
 
 __author__ = 'notcammy'
 __email__ = 'neus2benen@gmail.com'
-__version__ = '2.5.8'
+__version__ = '2.5.9'
 
 _api_version = '1.5.7'
 _api_extensions_version = '0.3.8'