File: player.py

package info (click to toggle)
python-odmantic 1.0.2-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, trixie
  • size: 1,640 kB
  • sloc: python: 8,547; sh: 37; makefile: 34; xml: 13; javascript: 3
file content (8 lines) | stat: -rw-r--r-- 186 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
from odmantic import Field, Model


class Player(Model):
    """This model has a custom primary key"""

    name: str = Field(primary_field=True)
    level: int = Field(default=1, ge=1)