A list of Telegram bots with open source code in alphabetical order. All sources will be listed by language in which the bots are written on. To have a complete list of telegram bots (without source) have a look at @botlist. Bash @Check4ChangeAmazonBot -> Source HomeKeekerBot -> Source @groupagreebot -> Source BladeBTC -> Source TgBash -> Source WarnBot -> Source @Wmakerbot -> Source C# JenkinsJobManager -> Source […]
TELEGRAM BOT IN PHP
Hellobot
This sample PHP bot demonstrates the basics of the Telegram Bot API.If you have questions, try FAQ or check out this page for more examples.
Some Telegram Bot tutorials
By the way, there is a new Bot Developers Forum where people is helping each other too:https://botsfortelegram.com/project/telegram-bots-dev-community/
Curated List of Resources on Building Bots
Table of Contents Platform Documentation Tools For Building Bots Tools For Bot Analytics Tools For Bot Conversation Mockups Libraries Bot Stores Tutorials Communities Developers Testing Platform Documentation IBM Bot Asset Exchange Facebook messenger Slack Discord Telegram Kik Zulip HipChat Skype Cisco Spark Microsoft Bot Framework WeChat VKontakte Hangouts Chat Tools For Building Bots wit.ai – Easily […]
Some secrets for a Simple Telegram Bot in PHP
<?php $botToken = “123456:ABC-DEF1234ghIkl-zyx57W2v1u123ew11”; $botAPI = “https://api.telegram.org/bot” . $botToken; $update = file_get_contents(‘php://input’); $update = json_decode($update, TRUE); if (!$update) { exit; } $message = isset($update[‘message’]) ? $update[‘message’] : “”; where$botToken is the bot token, generated by BotFather for your bot and used to register the bot on the Webhook service$botAPI is the URL used to send commands to […]
Asynchronous and parallel PHP
The spatie/async library provides a small and easy wrapper around PHP’s PCNTL extension. It allows running of different processes in parallel, with an easy-to-use API. Installation You can install the package via composer: composer require spatie/async Usage use Spatie\Async\Pool; $pool = Pool::create(); foreach ($things as $thing) { $pool->add(function () use ($thing) { // Do a […]
How to install composer PHP packages without Composer
As you know Composer is a package management app. There are situation whem you do not know how to install Composer on your development and / or production servers. So you you can choose one of the next methods: Method 1: Use PHP-Download.com To Install PHP Packages Without Composer This is the simplest method. The […]
Php Composer Tutorial – Installing and setting up Composer
In this php composer tutorial lets install php composer so we can start using this awesome package manager for modern php development. Also, and just in case there’s confusion about this: Composer has an official GUI installer for Windows and a copy and paste command-line installation procedure for all platforms. Composer can be run locally […]
Awesome Artificial Intelligence (AI), Deep Learning Resources
This is a curated list of Artificial Intelligence (AI) courses, books, video lectures and papers. Contents Courses 265 Books 71 Programming 27 Philosophy 9 Free Content 35 Code 32 Videos 59 Learning 13 Organizations 3 Journals 5 Competitions 12 Newsletters 9 Misc 7 Courses MIT: Intro to Deep Learning 90 – A seven day bootcamp designed in MIT to introduce deep learning methods and applications Deep Blueberry: Deep Learning book 37 – […]