All Projects → Moutix → stepmania-server

Moutix / stepmania-server

Licence: MIT license
Stepmania Server in python3

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to stepmania-server

osukps
A keys-per-second meter for osu! (or any rythm game), useful for live streaming and making videos
Stars: ✭ 90 (+350%)
Mutual labels:  stepmania
piugba
🎮 PIU emulator for the GBA 🎮
Stars: ✭ 43 (+115%)
Mutual labels:  stepmania
stepmania-song-manager
Download and update song packs for StepMania with ease.
Stars: ✭ 23 (+15%)
Mutual labels:  stepmania
simfile
A modern simfile parsing & editing library for Python 3
Stars: ✭ 26 (+30%)
Mutual labels:  stepmania

Stepmania Server

docs Documentation Status
tests
Travis-CI Build Status AppVeyor Build Status Coverage
package PyPI Package latest release Supported versions License

SMServer is an implementation of a stepmania server in python3.

The goal is to provide a simple server implementation which can easily be adapt to your need.

Requirement

SMServer only support python3.3 and higher. It use:

  • PYYaml
  • SQLAlchemy
  • asyncio

Installation

Install the server using pip, or directly from source:

$ python3 setup.py install

or

$ pip install smserver

Configuration

The server will come with a default configuration file located in:

$ /etc/smserver/conf.yml

By default, the server will use a sqlite database. To change it adapt the database section of the configuration file.

EG for mysql:

database:
    type: "mysql"
    user: "stepmania"
    password: "*******"
    database: "stepmania"
    host: "localhost"
    port:
    driver: "pymysql"

To launch the server just type:

$ smserver

For more information check the docs

License

This software is licensed under the MIT License. See the LICENSE file in the top distribution directory for the full license text.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].