No description
  • Python 94.6%
  • Cython 5.3%
Find a file
2020-09-24 22:49:44 +07:00
common@957823d299 Don't kick Sunhapan 2020-06-27 18:33:18 +03:00
constants Ripple -> Ainu 2020-09-12 08:43:04 +07:00
events @_@_@_@_@_@_@_@___@_@_@_@___@_@___@ 2020-09-24 22:49:44 +07:00
handlers Unused file. 2020-07-18 20:44:55 +07:00
helpers latest pep.py update, there's too many stuff! 2020-09-08 19:44:44 +03:00
irc I need to commit what? :thonk: 2020-01-07 05:02:17 +00:00
objects Ripple -> Ainu 2020-09-12 08:43:04 +07:00
pubSubHandlers I need to commit what? :thonk: 2020-01-07 05:02:17 +00:00
.gitignore latest pep.py update, there's too many stuff! 2020-09-08 19:44:44 +03:00
.gitmodules I need to commit what? :thonk: 2020-01-07 05:02:17 +00:00
.landscape.yaml I need to commit what? :thonk: 2020-01-07 05:02:17 +00:00
filters.txt I need to commit what? :thonk: 2020-01-07 05:02:17 +00:00
full_build.sh I need to commit what? :thonk: 2020-01-07 05:02:17 +00:00
LICENSE I need to commit what? :thonk: 2020-01-07 05:02:17 +00:00
pep.py latest pep.py update, there's too many stuff! 2020-09-08 19:44:44 +03:00
README.md I need to commit what? :thonk: 2020-01-07 05:02:17 +00:00
requirements.txt I need to commit what? :thonk: 2020-01-07 05:02:17 +00:00
setup.py tab 2020-08-15 01:36:19 +08:00
version I need to commit what? :thonk: 2020-01-07 05:02:17 +00: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.