Metadata-Version: 2.4
Name: sorocore
Version: 1.0.0
Summary: Core library for Soroush Plus
Author: SoroCore Team
Author-email: sorocore@gmail.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: splusthon>=1.1.4
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: license-file
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

# SoroCore

**Core library for Soroush Plus**

## نصب

```bash
pip install sorocore
```

## مثال

```python
from sorocore import SoroCoreClient, NewMessage
import asyncio

client = SoroCoreClient("my_session")

@client.on(NewMessage)
async def handler(event):
    if event.text == "س":
        await event.reply("س")

async def main():
    await client.start()
    await client.run_until_disconnected()

if __name__ == "__main__":
    asyncio.run(main())
```

## مجوز

MIT
