A list of commands can be found at https://github.com/d-dd/Yukari/blob/master/commands.md
Yukari is a CyTube bot written for a Vocaloid channel. Thus some of the features will be unnecessary for most channels.
For a general purpose bot, consider using NuclearAce's https://github.com/nuclearace/CytubeBot.
However, you can always delete (or prefix a plugin filename with _
) a plugin file to prevent Yukari from importing the plugin.
Python 2.x
Twisted
Twisted Autobahn
A CyTube server to connect to
An account with admin rank or higher (3+) in the channel Yukari will run.
Create the SQLite database:
python createDb.py
Edit the settings.cfg.
Edit ext/external.js and upload it somewhere. If the channel already has custom js, just copy-paste the contents.
Yukari needs to have admin rank or higher (3+) because she modifies the channel javascript frequently.
Set a filter:
@3939([^`]+)#3939, g, $1
This is for the gray server-like messages when users queue media to the playlist, and when Yukari removes something from the playlist.
Edit italics filter:
(^| )_([^_].+?[^_])_($| ), g, \1\<em>\2\</em>\3Set a filter:
_, g,
Put the url of external.js into the external JS box.
Tacfile.py
is a Twisted application file that can be run with twistd
.
For example,
twistd -noy tacfile.pyYukari is being developed and tested in a Linux environment, so it may have problems running on Windows or Mac.
telnet localhost [port]
Uses Twisted's Manhole module to access Yukari's names directly.
This is very useful for debugging. The instance of Yukari is y
, so for example, dir(y)
will list all of her names and y.sendChats('Hello!')
will send messages to CyTube and IRC (if connected).
Youtube v3 API key
IRC account
Yukari is similar to Desuwa's CyNaoko in terms of capabilities, and many of the features are a direct port of CyNaoko.
Modular setup
Yukari's main connection modules are set up to be mostly interfaces. They contain the most important functionality, such as connect, disconnect, reconnect, database logging, and chat relay. Features such as commands and media checking are done by plugins, which work independent of other plugins, and can be easily added or removed to extend Yukari's capabilities. You can extend your own custom commands and features by adding your own plugin file, and it will be imported at runtime without having to change any of Yukari's code.
IRC Bridge
Relays chat between CyTube and IRC. Depending on the IRC netowrk, chat may be heavily throttled. Changing the bucketSize in the settings.cfg may be required if Yukari stop relaying too often, or ever gets kicked or throttled by the IRC network.
VocaDB panel Uses VocaDB.net's API service to display song information under the video.
Media management
Yukari saves each media that is queued to the playlist. If it is a Youtube video, it is checked against Youtube's API to make sure it is playable in CyTube. $omit
and $blacklist
reduces moderator work.
Media feedback
Users can vote (like/dislike) media in the playlist. This is useful for gathering channel preferences.
Database logging
User actions such as queueing, chatting, joining, leaving, liking, disliking are logged to the database. This can be analyzed for channel statistics and user behavior, and finding out which users are contributing to the channel the most.