diff options
author | Adrian Kummerlaender | 2016-03-13 23:26:04 +0100 |
---|---|---|
committer | Adrian Kummerlaender | 2016-03-13 23:26:04 +0100 |
commit | 0a1405024fe97212af8d66f608103370e7442ee4 (patch) | |
tree | 06a9e960470dfc701bd0913956f59a9f866bdc23 | |
parent | 941835c331f16846da6c65f466728e2ed807ca4d (diff) | |
download | Telebot-0a1405024fe97212af8d66f608103370e7442ee4.tar Telebot-0a1405024fe97212af8d66f608103370e7442ee4.tar.gz Telebot-0a1405024fe97212af8d66f608103370e7442ee4.tar.bz2 Telebot-0a1405024fe97212af8d66f608103370e7442ee4.tar.lz Telebot-0a1405024fe97212af8d66f608103370e7442ee4.tar.xz Telebot-0a1405024fe97212af8d66f608103370e7442ee4.tar.zst Telebot-0a1405024fe97212af8d66f608103370e7442ee4.zip |
Add README.md
-rw-r--r-- | README.md | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/README.md b/README.md new file mode 100644 index 0000000..8a83c64 --- /dev/null +++ b/README.md @@ -0,0 +1,19 @@ +# Telebot + +... is a basic _Chicken Scheme_ module to ease the development of Bots interfacing with the [Telegram Bot API](https://core.telegram.org/bots/api). + +In this context _basic_ means that the module currently consists of barely more than raw HTTP API calls hidden behind analogously named functions and JSON deserialization provided by the _http-client_ respectively _medea_ eggs. + +The maintanance of these API wrappers is simplified by an appropriate _Scheme_ macro that reduces the implementation of new API methods to basically slightly rewriting the documentation. + +## Example + +`example/echo.scm` implements a bot that echoes all messages back to their sender. + +## Dependencies + +* [openssl](http://wiki.call-cc.org/eggref/4/openssl) +* [http-client](http://wiki.call-cc.org/eggref/4/http-client) +* [medea](http://wiki.call-cc.org/eggref/4/medea) +* [loops](http://wiki.call-cc.org/eggref/4/loops) +* [vector-lib](http://wiki.call-cc.org/eggref/4/vector-lib) |