Page 1 of 1

Manage your Transmission via a Telegram bot

Posted: Thu Jul 21, 2016 3:31 pm
by pyed
How many words a gif worth ?

Image

Get it from: https://github.com/pyed/transmission-telegram

Re: Manage your Transmission via a Telegram bot

Posted: Mon Feb 06, 2017 6:13 pm
by fajung
Hello, it looks very good.
Q: I have Transmission BitTorrent installed on a OpenWrt router, can I use this bot from telegram on my Android?
On the router I have installed python-telegram-bot.

Re: Manage your Transmission via a Telegram bot

Posted: Wed Feb 22, 2017 1:10 am
by pyed
fajung wrote:Hello, it looks very good.
Q: I have Transmission BitTorrent installed on a OpenWrt router, can I use this bot from telegram on my Android?
On the router I have installed python-telegram-bot.
it's possible, but your openwrt kernel should be compiled with "FPU Emulator" enabled, your current build probably has it disabled, google it.

Then you have to build `transmission-telegram` with the right GOOS/GOARCH, it is pretty easy to cross-compile in go, just know your router's architecture, if it is MIPS for example, you would do:

Code: Select all

$ git clone https://github.com/pyed/transmission-telegram.git
$ cd transmission-telegram
$ GOOS=linux GOARCH=mips go build
an executable file called `transmission-telegram` will get created, copy that to your router and it should work.