Metadata-Version: 2.4
Name: fivemisrael
Version: 1.0.3
Summary: Easy vote handling for FiveM Israel in Python
Author: Ticker
License: MIT
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: websockets>=10.0
Dynamic: license-file

# fivemisrael

Receive live FiveM Israel votes easily in Python.

## Installation

```bash
pip install fivemisrael
```

## Usage

```python
from fivemisrael import FiveMIsrael
import asyncio

client = FiveMIsrael("your_api_key_here")

@client.event
async def on_ready():
    print("Connected to FiveM Israel Votes")

@client.event
async def on_vote(vote):
    print("New vote:", vote)

asyncio.run(client.start())
```
