├── libs └── README ├── bot.json ├── commands ├── Black butler.js ├── Higehiro.js ├── Aap haru ride.js ├── Another.js ├── _anime.js ├── Real girlfriend.js ├── Toradora.js ├── Bleach.js ├── Death note.js ├── No game no life.js ├── High school DXd.js ├── Rent a girlfriend.js ├── Tower of god.js ├── Black clover.js ├── Naruto.js ├── Your lie in april.js ├── Assassin classroom.js ├── Attack on titans.js ├── Devil is a part timer.js ├── Darling in the franxx.js ├── Pokemon.js ├── _start.js ├── Quintessential quintuplets.js └── Demon slayer.js ├── README.md └── bca practices /libs/README: -------------------------------------------------------------------------------- 1 | This folder contains bot's libraries. 2 | See more at https://help.bots.business/git/library -------------------------------------------------------------------------------- /bot.json: -------------------------------------------------------------------------------- 1 | { 2 | "bb_sync_version":"1.0", 3 | "name":"Anime_searcherBot", 4 | "csv_url":null, 5 | "git_remote":"git@github.com:Sadsoul091/Sadsoul091.git" 6 | } -------------------------------------------------------------------------------- /commands/Black butler.js: -------------------------------------------------------------------------------- 1 | /*CMD 2 | command: Black butler 3 | help: 4 | need_reply: 5 | auto_retry_time: 6 | folder: 7 | answer: 8 | keyboard: 9 | aliases: 10 | CMD*/ 11 | 12 | var msg = "TO WATCH THE ANIME BLACK BUTLER CLICK ON THE BUTTON GIVEN OPEN THE URL AND ENJOY (WI-FI PREFERRED)" 13 | 14 | var button = [{ title: "BLACK BUTLER", url: "https://t.me/BlackButlerIT" }] 15 | Bot.sendInlineKeyboard(button, msg) 16 | -------------------------------------------------------------------------------- /commands/Higehiro.js: -------------------------------------------------------------------------------- 1 | /*CMD 2 | command: Higehiro 3 | help: 4 | need_reply: 5 | auto_retry_time: 6 | folder: 7 | answer: 8 | keyboard: 9 | aliases: 10 | CMD*/ 11 | 12 | var msg = 13 | "TO WATCH THE ANIME HIGEHIRO CLICK ON THE BUTTON GIVEN BELOW OPEN THE URL AND ENJOY (WI-FI PREFERRED)" 14 | 15 | var button = [{ title: "HIGEHIRO", url: "https://t.me/HigehiroSeries" }] 16 | Bot.sendInlineKeyboard(button, msg) 17 | 18 | -------------------------------------------------------------------------------- /commands/Aap haru ride.js: -------------------------------------------------------------------------------- 1 | /*CMD 2 | command: Aap haru ride 3 | help: 4 | need_reply: 5 | auto_retry_time: 6 | folder: 7 | answer: 8 | keyboard: 9 | aliases: 10 | CMD*/ 11 | 12 | var msg = "TO WATCH THE ANIME AAP HARU RIDE CLICK ON THE BUTTON GIVEN BELOW OPEN THE URL AND ENJOY (WI-FI PREFERRED) " 13 | 14 | var button = [{ title: "AAP HARU RIDE", url: "https://t.me/AHRHINDISUB" }] 15 | Bot.sendInlineKeyboard(button, msg) 16 | -------------------------------------------------------------------------------- /commands/Another.js: -------------------------------------------------------------------------------- 1 | /*CMD 2 | command: Another 3 | help: 4 | need_reply: 5 | auto_retry_time: 6 | folder: 7 | answer: 8 | keyboard: 9 | aliases: 10 | CMD*/ 11 | 12 | var msg = 13 | "TO WATCH THE ANIME ANOTHER CLICK ON THE BUTTON OPEN THE URL AND ENJOY (WI-FI PREFERRED)" 14 | 15 | var button = [ 16 | { title: "ANOTHER", url: "https://hindisub.com/another-hindi-sub09/" } 17 | ] 18 | Bot.sendInlineKeyboard(button, msg) 19 | 20 | -------------------------------------------------------------------------------- /commands/_anime.js: -------------------------------------------------------------------------------- 1 | /*CMD 2 | command: /anime 3 | help: 4 | need_reply: 5 | auto_retry_time: 6 | folder: 7 | 8 | < Bot.sendMessage(2+2); 49 | 50 | See [more](https://help.bots.business/scenarios-and-bjs) 51 | 52 | 53 | ## Libraries - in libs folder 54 | You can store common code in the libs folder. File name - it is library name. 55 | 56 | For example code in myLib.js: 57 | 58 | function hello(){ Bot.sendMessage("Hello from lib!") } 59 | function goodbye(name){ Bot.sendMessage("Goodbye, " + name) } 60 | 61 | publish({ 62 | sayHello: hello, 63 | sayGoodbyeTo: goodbye 64 | }) 65 | 66 | then you can run in any bot's command: 67 | 68 | Libs.myLib.hello() 69 | Libs.myLib.sayGoodbyeTo("Alice") 70 | 71 | See [more](https://help.bots.business/git/library) 72 | 73 | ## Other bots example 74 | See other bots examples in the [github](https://github.com/bots-business?utf8=✓&tab=repositories&q=&type=public&language=javascript) or in the [Bot Store](https://bots.business/) 75 | 76 | 77 | ## Other help 78 | [Help.bots.business](https://help.bots.business) 79 | 80 | ## API 81 | See [API](https://api.bots.business/docs#/docs/summary) 82 | 83 | 84 | ![](https://bots.business/images/web-logo.png) 85 | 86 | 87 | COMMANDS FOR THE BOT 88 | 89 | 1. /start- to start the bot and to get info on support group 90 | 2. /anime- to get info on how to use the bot 91 | -------------------------------------------------------------------------------- /bca practices: -------------------------------------------------------------------------------- 1 | { 2 | "nbformat": 4, 3 | "nbformat_minor": 0, 4 | "metadata": { 5 | "colab": { 6 | "provenance": [], 7 | "authorship_tag": "ABX9TyO8DcZL+v1+IN8BIU6XGtOy", 8 | "include_colab_link": true 9 | }, 10 | "kernelspec": { 11 | "name": "python3", 12 | "display_name": "Python 3" 13 | }, 14 | "language_info": { 15 | "name": "python" 16 | } 17 | }, 18 | "cells": [ 19 | { 20 | "cell_type": "markdown", 21 | "metadata": { 22 | "id": "view-in-github", 23 | "colab_type": "text" 24 | }, 25 | "source": [ 26 | "\"Open" 27 | ] 28 | }, 29 | { 30 | "cell_type": "code", 31 | "execution_count": 1, 32 | "metadata": { 33 | "colab": { 34 | "base_uri": "https://localhost:8080/" 35 | }, 36 | "id": "gm9QRHJv_HcH", 37 | "outputId": "ad695dc0-f521-45d3-e4bf-897d68613551" 38 | }, 39 | "outputs": [ 40 | { 41 | "output_type": "stream", 42 | "name": "stdout", 43 | "text": [ 44 | "Rupam Dutta\n", 45 | "BalayBagg,Naihati,Kolkata,WestBengal,India\n" 46 | ] 47 | } 48 | ], 49 | "source": [ 50 | "print (\"Rupam Dutta\")\n", 51 | "print (\"BalayBagg,Naihati,Kolkata,WestBengal,India\")\n" 52 | ] 53 | }, 54 | { 55 | "cell_type": "code", 56 | "source": [ 57 | "a=float(input(\"Enter 1st number\"))\n", 58 | "b=float(input(\"Enter 2nd number \"))\n", 59 | "S = a+b\n", 60 | "print (\"Sum is\",S)" 61 | ], 62 | "metadata": { 63 | "colab": { 64 | "base_uri": "https://localhost:8080/" 65 | }, 66 | "id": "CL31eK_E_ndJ", 67 | "outputId": "93c6b244-433c-405f-f1af-6ae922e00e3c" 68 | }, 69 | "execution_count": 6, 70 | "outputs": [ 71 | { 72 | "output_type": "stream", 73 | "name": "stdout", 74 | "text": [ 75 | "Enter 1st number2.3\n", 76 | "Enter 2nd number 5.3\n", 77 | "Sum is 7.6\n" 78 | ] 79 | } 80 | ] 81 | }, 82 | { 83 | "cell_type": "code", 84 | "source": [ 85 | "a=int(input(\"enter 1st number\"))\n", 86 | "b=int(input(\"enter 2nd number\"))\n", 87 | "D=a-b\n", 88 | "e=a*b\n", 89 | "f=a/b\n", 90 | "print(\"subs is\",D, \"multi is\",e, \"divide is\",f)" 91 | ], 92 | "metadata": { 93 | "colab": { 94 | "base_uri": "https://localhost:8080/" 95 | }, 96 | "id": "isRoq0ZEBTQk", 97 | "outputId": "bbbf1f4f-a94f-458b-de82-315820c927b7" 98 | }, 99 | "execution_count": 7, 100 | "outputs": [ 101 | { 102 | "output_type": "stream", 103 | "name": "stdout", 104 | "text": [ 105 | "enter 1st number34\n", 106 | "enter 2nd number45\n", 107 | "subs is -11 multi is 1530 divide is 0.7555555555555555\n" 108 | ] 109 | } 110 | ] 111 | }, 112 | { 113 | "cell_type": "code", 114 | "source": [ 115 | "a=-5\n", 116 | "if a>0:\n", 117 | " print (\"positive\")\n", 118 | "else:\n", 119 | " print (\"negative\")\n" 120 | ], 121 | "metadata": { 122 | "colab": { 123 | "base_uri": "https://localhost:8080/" 124 | }, 125 | "id": "EfABC3bJC--g", 126 | "outputId": "50e1c791-ed6e-4e48-b2ad-3bb1e7ee2878" 127 | }, 128 | "execution_count": 17, 129 | "outputs": [ 130 | { 131 | "output_type": "stream", 132 | "name": "stdout", 133 | "text": [ 134 | "negative\n" 135 | ] 136 | } 137 | ] 138 | }, 139 | { 140 | "cell_type": "code", 141 | "source": [ 142 | "a=float(input(\"enter 1st number\"))\n", 143 | "b=float(input(\"enter 2nd number\"))\n", 144 | "area=a*b\n", 145 | "perimeter=2*(a+b)\n", 146 | "print (area)\n", 147 | "print (perimeter)" 148 | ], 149 | "metadata": { 150 | "colab": { 151 | "base_uri": "https://localhost:8080/" 152 | }, 153 | "id": "-uC6AW3MD9Nw", 154 | "outputId": "eec0237d-a8ce-4df2-ea28-d4b7c59a2059" 155 | }, 156 | "execution_count": 14, 157 | "outputs": [ 158 | { 159 | "output_type": "stream", 160 | "name": "stdout", 161 | "text": [ 162 | "enter 1st number5\n", 163 | "enter 2nd number6\n", 164 | "30.0\n", 165 | "22.0\n" 166 | ] 167 | } 168 | ] 169 | }, 170 | { 171 | "cell_type": "code", 172 | "source": [ 173 | "a=int(input(\"enter 1st number\"))\n", 174 | "a=a*a\n", 175 | "p=4*a\n", 176 | "print (\"area is\", a)\n", 177 | "print (\"perimeter is\", p)" 178 | ], 179 | "metadata": { 180 | "colab": { 181 | "base_uri": "https://localhost:8080/" 182 | }, 183 | "id": "PduhwDbwFchY", 184 | "outputId": "19791106-04a9-4283-c7bd-6c277f1e15d5" 185 | }, 186 | "execution_count": 15, 187 | "outputs": [ 188 | { 189 | "output_type": "stream", 190 | "name": "stdout", 191 | "text": [ 192 | "enter 1st number6\n", 193 | "area is 36\n", 194 | "perimeter is 144\n" 195 | ] 196 | } 197 | ] 198 | }, 199 | { 200 | "cell_type": "code", 201 | "source": [ 202 | "a=int(input(\"enter a number\"))\n", 203 | "if (a%2)==0:\n", 204 | " print (\"even\")\n", 205 | "else:\n", 206 | " print (\"odd\") " 207 | ], 208 | "metadata": { 209 | "colab": { 210 | "base_uri": "https://localhost:8080/" 211 | }, 212 | "id": "maT_rL_6GrQX", 213 | "outputId": "191c1683-995f-406c-bf39-7d0407cf0948" 214 | }, 215 | "execution_count": 18, 216 | "outputs": [ 217 | { 218 | "output_type": "stream", 219 | "name": "stdout", 220 | "text": [ 221 | "enter a number8\n", 222 | "even\n" 223 | ] 224 | } 225 | ] 226 | } 227 | ] 228 | } --------------------------------------------------------------------------------