Skip to content
This repository was archived by the owner on Nov 18, 2024. It is now read-only.

Commit 9be65b1

Browse files
committed
- Properly kills the terminal before starting this API.
1 parent 44d0f3e commit 9be65b1

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

pyproject.toml

+2
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,8 @@ dependencies = [
2222
"tqdm",
2323
"pandas",
2424
"wget",
25+
"psutil",
26+
2527
]
2628

2729
[project.optional-dependencies]

thetadata/client.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
"""Module that contains Theta Client class."""
22
import datetime
3-
import struct
43
import threading
54
from decimal import Decimal
65
from threading import Thread
@@ -24,7 +23,7 @@
2423
from .terminal import check_download, launch_terminal
2524

2625
_NOT_CONNECTED_MSG = "You must establish a connection first."
27-
_VERSION = '0.8.0'
26+
_VERSION = '0.8.1'
2827

2928

3029
def _format_strike(strike: float) -> int:

thetadata/terminal.py

-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
import os
22
import platform
3-
import re
43
import shutil
54
import signal
65
import subprocess

0 commit comments

Comments
 (0)