Metadata-Version: 2.1
Name: rubika
Version: 6.0.3
Summary: this is an unofficial library for making bots in rubika. using this library you can make your own rubika bot and control that
Home-page: https://github.com/bahman-ahmadi/rubika
Author: Bahman Ahmadi
Author-email: bahmanahmadi.mail@gmail.com
License: LGPLv3
Download-URL: https://github.com/bahman-ahmadi/rubika/releases/latest
Project-URL: Tracker, https://github.com/bahman-ahmadi/rubika/issues
Project-URL: Community, https://t.me/rubikalib
Project-URL: Source, https://github.com/bahman-ahmadi/rubika
Project-URL: Documentation, https://rubikalib.github.io
Keywords: rubika self bot api library python
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Classifier: License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: Implementation
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Classifier: Topic :: Internet
Classifier: Topic :: Communications
Classifier: Topic :: Communications :: Chat
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Software Development :: Libraries :: Application Frameworks
Requires-Python: ~=3.5
Description-Content-Type: text/markdown
License-File: LICENSE


<p align="center">
    <a href="https://github.com/bahman-ahmadi/rubika">
        <img src="https://rubikalib.github.io/assets/logo.png" alt="RUBIKA" width="128">
    </a>
    <br>
    <b>Rubika Bot Self Library for Python</b>
    <br>
    <a href="https://rubikalib.github.io">
        Homepage
    </a>
    •
    <a href="https://rubikalib.github.io/docs.html">
        Documentation
    </a>
    •
    <a href="https://t.me/rubikalibGP">
        Community
    </a>
    •
    <a href="https://t.me/rubikalib">
        News
    </a>
</p>

## Rubika

> easy, fast and elegant library for making rubika self bots

``` python
from rubika import Bot, Socket
from rubika.filters import filters

bot = Bot("MyApp")
app = Socket(bot.auth)

@app.handler(filters.PV)
def hello(message):
    message.reply("Hello from Rubikalib!")
```

**Rubika** is an easy, fast and unofficial [rubika](https://rubika.ir) self bot library.
It enables you to easily interact with the main Telegram API through a user account (custom client) using Python.

### Key Features

- **Ready**: Install rubika with pip and start building your applications right away.
- **Easy**: Makes the rubika API simple and intuitive, while still allowing advanced usages.
- **Elegant**: Low-level details are abstracted and re-presented in a more convenient way.
- **Fast**: Boosted up by aiohttp instead of requests.
- **Powerful**: Full access to Rubika's API to execute any official client action and more.

### Installing

``` bash
pip3 install rubika
```

### Thanks For (A-Z)
- Dark Code
- Mr.binder
- Sajjad Dehghani
- Sajjad Soleymani
- Saleh (maven)
- Shayan Ghosi
- And you :)

### Resources

- Check out the docs at https://rubikalib.github.io/docs.html to learn more about rubika library, get started right
away and discover more in-depth material for building your client applications.
- Join the official channel at https://t.me/rubikalib and stay tuned for news, updates and announcements.

### License
rubika library is licensed under [GPLv3 license](https://github.com/bahman-ahmadi/rubika/blob/main/LICENSE)

This is not an official rubika product. It is not affiliated with nor endorsed by rubika Inc.

© 2022 Bahman Ahmadi


