osu!minase bancho server
  • Python 92.7%
  • Cython 7.1%
  • Shell 0.2%
Find a file
2019-11-30 20:53:13 +02:00
common github > zxq 2019-11-30 20:53:13 +02:00
constants github > zxq 2019-11-30 20:53:13 +02:00
events github > zxq 2019-11-30 20:53:13 +02:00
handlers github > zxq 2019-11-30 20:53:13 +02:00
helpers github > zxq 2019-11-30 20:53:13 +02:00
irc github > zxq 2019-11-30 20:53:13 +02:00
objects github > zxq 2019-11-30 20:53:13 +02:00
pubSubHandlers github > zxq 2019-11-30 20:53:13 +02:00
scripts github > zxq 2019-11-30 20:53:13 +02:00
.gitignore github > zxq 2019-11-30 20:53:13 +02:00
.gitmodules github > zxq 2019-11-30 20:53:13 +02:00
filters.txt github > zxq 2019-11-30 20:53:13 +02:00
LICENSE github > zxq 2019-11-30 20:53:13 +02:00
pep.py github > zxq 2019-11-30 20:53:13 +02:00
README.md github > zxq 2019-11-30 20:53:13 +02:00
requirements.txt github > zxq 2019-11-30 20:53:13 +02:00
setup.py github > zxq 2019-11-30 20:53:13 +02:00

pep.py

This is Ripple's bancho server but osu!thailand forked edition. It handles:

  • Client login
  • Online users listing and statuses
  • Public and private chat
  • Spectator
  • Multiplayer
  • The Bot

Requirements

  • Python 3.6
  • Cython
  • C compiler
  • MySQLdb (mysqlclient)
  • Tornado
  • Bcrypt
  • Raven

How to set up pep.py

First of all, initialize and update the submodules

$ git submodule init && git submodule update

afterwards, install the required dependencies with pip

$ pip install -r requirements.txt

then, compile all *.pyx files to *.so or *.dll files using setup.py (distutils file)

$ python3 setup.py build_ext --inplace

finally, run pep.py once to create the default config file and edit it

$ python3 pep.py
...
$ nano config.ini

you can run pep.py by typing

$ python3 pep.py

License

All code in this repository is licensed under the GNU AGPL 3 License.
See the "LICENSE" file for more information
This project contains code taken by reference from miniircd by Joel Rosdahl.