filebot/README.md

69 lines
2.1 KiB
Markdown
Raw Normal View History

2016-04-21 20:53:11 +00:00
###File bot
A bot which allows you to easily share files with friends and family using [Tox](https://tox.chat/)
Based on [toxygen](https://github.com/xveduk/toxygen/) toxcore wrapper
2016-04-21 19:55:31 +00:00
# Supported OS:
- Windows
- Linux
#Install:
### Windows
1. [Download and install latest Python 2.7](https://www.python.org/downloads/windows/)
2. [Download file bot](https://github.com/ingvar1995/filebot/archive/master.zip)
3. Unpack archive
4. Download latest [libtox.dll](https://build.tox.chat/view/libtoxcore/job/libtoxcore_build_windows_x86_shared_release/lastSuccessfulBuild/artifact/libtoxcore_build_windows_x86_shared_release.zip) build, download latest [libsodium.a](https://build.tox.chat/view/libsodium/job/libsodium_build_windows_x86_static_release/lastSuccessfulBuild/artifact/libsodium_build_windows_x86_static_release.zip) build, put it into libs\
5. Run app:
``python main.py path_to_profile``
### Linux
2016-04-26 10:09:39 +00:00
1. Install Python2.7: ``sudo apt-get install python2.7``
2. [Download file bot](https://github.com/ingvar1995/filebot/archive/master.zip)
3. Unpack archive
4. Install [toxcore](https://github.com/irungentoo/toxcore/blob/master/INSTALL.md) in your system
5. Run app:
2016-04-21 19:55:31 +00:00
``python main.py path_to_profile``
#Commands:
2016-04-21 20:53:11 +00:00
help - list of commands
2016-04-21 19:55:31 +00:00
rights - get access rights
2016-04-21 20:53:11 +00:00
2016-04-21 19:55:31 +00:00
files - show list of files (get access)
2016-04-21 20:53:11 +00:00
2016-04-21 19:55:31 +00:00
id - get bot's id (get access)
2016-04-21 20:53:11 +00:00
2016-04-21 19:55:31 +00:00
share <ToxID> <file_name> - send file to friend (get access)
2016-04-21 20:53:11 +00:00
2016-04-21 19:55:31 +00:00
share --all <file_name> - send file to all friends (get access)
2016-04-21 20:53:11 +00:00
2016-04-21 19:55:31 +00:00
size <file_name> - get size of file (get access)
2016-04-21 20:53:11 +00:00
2016-04-21 19:55:31 +00:00
get <file_name> - get file with specified filename (get access)
2016-04-21 20:53:11 +00:00
2016-04-26 10:09:39 +00:00
stats - show statistics (write access)
2016-04-21 19:55:31 +00:00
del <file_name> - remove file with specified filename (delete access)
2016-04-21 20:53:11 +00:00
2016-04-21 19:55:31 +00:00
rename <file_name> --new <new_file_name> - rename file (delete access)
2016-04-21 20:53:11 +00:00
2016-04-21 19:55:31 +00:00
user <ToxID> <rights> - new rights (example: rwdm) for user (masters only)
2016-04-21 20:53:11 +00:00
2016-04-21 19:55:31 +00:00
status <new_status> - new status message (masters only)
2016-04-21 20:53:11 +00:00
2016-04-21 19:55:31 +00:00
name <new_name> - new name (masters only)
2016-04-21 20:53:11 +00:00
2016-04-21 19:55:31 +00:00
message <ToxID> <message_text> - send message to friend (masters only)
2016-04-21 20:53:11 +00:00
2016-04-26 10:09:39 +00:00
message --all <message_text> - send message to all friends (masters only)
stop - stop bot (masters only)
Users with write access can send files to bot.