# Thread

## thread

```python
class thread(target: Callable, args: Tuple = (), kwargs: Dict = {}):
```

### start

```python
def start(self) -> None:
```

### stop

```python
def stop(self) -> None:
```

is\_running

```python
def is_running(self) -> bool:
```

**Пример использования:**

```python
def test(word, name):
    while True:
        print(f"Hello {word}, from {name}")
        time.sleep(1)

my_thread = thread(test, args=("world", "Igor"))
my_thread.start()

while True:
    print("Main thread working too...")
    time.sleep(1)
    pass
```
