Skip to content

Commit

Permalink
Version 6.1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
isaackogan committed Sep 13, 2024
1 parent 4f51394 commit d421366
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 7 deletions.
3 changes: 2 additions & 1 deletion TikTokLive/client/web/web_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,8 @@ def _create_httpx_client(

# Create the params
self.params: Dict[str, Any] = {
**httpx_kwargs.pop("params", {}), **WebDefaults.client_params
**httpx_kwargs.pop("params", {}),
**WebDefaults.client_params
}

return AsyncClient(
Expand Down
1 change: 0 additions & 1 deletion TikTokLive/client/ws/ws_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@

from httpx import Proxy
from python_socks import parse_proxy_url, ProxyType
from websockets import WebSocketClientProtocol
from websockets.legacy.client import Connect, WebSocketClientProtocol
from websockets_proxy import websockets_proxy
from websockets_proxy.websockets_proxy import ProxyConnect
Expand Down
2 changes: 1 addition & 1 deletion scripts/docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
import os
import sys

manifest = json.loads(open("../../manifest.json", "r").read())
manifest = json.loads(open("manifest.json", "r").read())
version = "v" + manifest["version"]

sys.path.insert(0, os.path.abspath('../../'))
Expand Down
2 changes: 1 addition & 1 deletion manifest.json → scripts/docs/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
"name": "TikTokLive",
"license": "MIT",
"author": "Isaac Kogan",
"version": "6.1.2",
"version": "6.1.3",
"email": "[email protected]"
}
10 changes: 7 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,15 @@
import json

import setuptools

# PyPi upload Command
# rm -r dist ; python setup.py sdist ; python -m twine upload dist/*

manifest: dict = json.loads(open("manifest.json", "r").read())
manifest: dict = {
"name": "TikTokLive",
"license": "MIT",
"author": "Isaac Kogan",
"version": "6.1.3",
"email": "[email protected]"
}

if __name__ == '__main__':
with open("README.md", "r", encoding="utf-8") as fh:
Expand Down

0 comments on commit d421366

Please sign in to comment.