We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4fa26c4 commit a5ee061Copy full SHA for a5ee061
plexapi/__init__.py
@@ -3,9 +3,10 @@
3
import os
4
from logging.handlers import RotatingFileHandler
5
from platform import uname
6
+from uuid import getnode
7
+
8
from plexapi.config import PlexConfig, reset_base_headers
9
from plexapi.utils import SecretsFilter
-from uuid import getnode
10
11
# Load User Defined Config
12
DEFAULT_CONFIG_PATH = os.path.expanduser('~/.config/plexapi/config.ini')
@@ -14,7 +15,7 @@
14
15
16
# PlexAPI Settings
17
PROJECT = 'PlexAPI'
-VERSION = '3.5.0'
18
+VERSION = '3.6.0'
19
TIMEOUT = CONFIG.get('plexapi.timeout', 30, int)
20
X_PLEX_CONTAINER_SIZE = CONFIG.get('plexapi.container_size', 100, int)
21
X_PLEX_ENABLE_FAST_CONNECT = CONFIG.get('plexapi.enable_fast_connect', False, bool)
0 commit comments