From be22abcf0dcdd464351358043af5569f19bf397e Mon Sep 17 00:00:00 2001 From: Anson Date: Fri, 19 Jul 2019 00:58:36 -0700 Subject: [PATCH] start of tut --- README.md | 20 +++++++++++++++++++- 1 file changed, 19 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 66ed0b1..cd3f381 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,20 @@ -# Multi Bot Tutorial +# Writing Discord and Telegram bots at the same time using Python +Writing bots is a great way to learn Python. It can combine many areas of learning and can usually produce something thats useful to you and maybe even some friends. The aim of this guide is to show how you can write nearly identical Telegram and Discord bots (or maybe even a bot for a different platform) while keeping the main chunk of your code reusable between the two. The topics covered in this guide are as follows: + +- [Writing Discord and Telegram bots at the same time using Python](#Writing-Discord-and-Telegram-bots-at-the-same-time-using-Python) +- [Writing code that works for Discord and Telegram](#Writing-code-that-works-for-Discord-and-Telegram) +- [How to write a Telegram Bot](#How-to-write-a-Telegram-Bot) +- [How to Write a Discord Bot](#How-to-Write-a-Discord-Bot) +- [How to run bots in Docker containers](#How-to-run-bots-in-Docker-containers) +- [How to keep your api keys secure, while still sharing your code](#How-to-keep-your-api-keys-secure-while-still-sharing-your-code) + +## Writing code that works for Discord and Telegram + +## How to write a Telegram Bot + +## How to Write a Discord Bot + +## How to run bots in Docker containers + +## How to keep your api keys secure, while still sharing your code