Skip to main content

No project description provided

Project description

Eitaa PyKit

This repo contains a simple library for work with Eitaa messenger's api

Install

pip install eitaapykit

Get information of a channel

you can get information of a channel with get_info(channel_id) function in eitaa moduel
params :

  • channel_id: your channel id, to get information of it(without @)

Example :

import eitaa
print(eitaa.get_info("channel ID"))

It is returns a dict object contains channel name, image url, subscriber count, channel description.

{
  "name": "channel name",
  "image_url": "channel image url",
  "users" : "subscribers count",
  "desc" : "description of channel",
}

Send a message

you can send a meesage to your channel with send_message(token,chat_id,text,pin=False) function in eitaa moduel
params :

  • token : your eitaayar.ir token
  • chat_id : your chat id(if your chat is a channel set it to channel id, and if your chat is a group set it to group invite link)
  • text : text to send
  • pin(optional) : if you want to message pinned in chat, set it True

Example :

import eitaa
TOKEN = "eitaayar.ir_token"
print(eitaa.send_message(TOKEN,"chat id","message text",pin=1)

It is returns a bool value that shows send status True --> message sent successfully False --> error in send message

Send a file

you can send a file to your channel with send_file(token,chat_id,caption,file,pin=False) function in eitaa moduel
params :

  • token : your eitaayar.ir token
  • chat_id : your chat id(if your chat is a channel set it to channel id, and if your chat is a group set it to group invite link)
  • caption : caption of your file(similar to text in send_message function)
  • file : your file name to send to chat
  • pin(optional) : if you want to file pinned in chat, set it True

Example :

import eitaa
TOKEN = "eitaayar.ir_token"
print(eitaa.send_file(TOKEN,"chat id","caption","README.txt",pin=1)

It is returns a bool value that shows send status True --> file sent successfully False --> error in send message

About

This project is licensed under the MIT License, for more information read License File

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

Eitaa PyKit-1.1.tar.gz (3.2 kB view hashes)

Uploaded Source

Built Distribution

Eitaa_PyKit-1.1-py3-none-any.whl (3.4 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page