Files
conf_bot/README.md

31 lines
1.0 KiB
Markdown
Raw Normal View History

2018-08-23 12:52:13 +03:00
# Full burst ultimate storm revolution Telegram Conference Bot
2018-02-15 14:18:25 +03:00
2018-02-15 14:19:38 +03:00
# Create your own spy bot in Telegram ¯\_(ツ)_/¯
2018-02-15 14:18:25 +03:00
This bot is able to get every message in your group, log it and send simple stat about top 10 used words.
2018-08-21 16:58:16 +03:00
/code - highlight any code snippet following command. There is lexer guesser but you are able to specify language by adding last line comment like this:
```
/code
class Cat {
constructor(name) {
this.name = name;
}
}
function get_name(any_object) {
console.log(any_object.name);
}
var my_cat = new Cat('Cassandra');
get_name(my_cat)
#js
```
/sql - perform an SQL request to internal bot SQLite database. Any WRITE requests are prohibited.
/stat - your top 10 words in conf.
Also bot can summon every active member of group with @here command or just with mentioning bot username like @test_huy_bot .
2018-02-15 14:18:25 +03:00
**Copyright**
*As probabilistic morphological analyzer (PMA) this bot uses mystem app, which developed by yandex and provided as binary package.*
*Also you can use free and open PMA tool like stemka and so on.*