Nick Lee

Results 63 comments of Nick Lee

@javad94, I forgot to mention the versions of software I did my test on (which may be the reason why you and I got different behaviors): Flask: 0.11.1 Python: 3.5.2

The function [`telepot.message_identifier(msg)`](http://telepot.readthedocs.io/en/latest/reference.html#telepot.message_identifier) gives you the, well, message identifier to use for the method `deleteMessage()` :smile:

You should do: ```python bot.deleteMessage(telepot.message_identifier(msg)) ```

By "user message", do you mean "a message sent by a human user"? If so, then of course the bot will not be able to delete it. The bot is...

You asked at the perfect time. I just happen to burn the latest Raspbian image onto an SD card. I did `sudo pip3 install telepot`, and saw: ``` Collecting telepot...

Just seen this from [piwheels FAQ](https://www.piwheels.org/faq.html) ... if you want to avoid downloading from piwheels for just one time and don't want to edit `/etc/pip.conf`, you can do: ``` sudo...

You are testing your bot very thoroughly :smiley: I also did my test on Raspbian Jessie, Pi 3, and cut internet connection by unplugging the LAN cable between my home...

I've been thinking long and hard about this for a few days. My feeling is that I'd rather move on to other projects than spending more time on telepot. The...

Thanks to @uherting. I am happy to hand off to anyone who is willing. For the Github repo, I guess you can just fork it. For PYPI (you have to...

Let me brief on anyone who wants to make changes to accommodate the latest Bot API (4.0). I start with more trivial ones, then move on to harder ones. --------...