Skip to content

Latest commit

 

History

History
27 lines (18 loc) · 706 Bytes

README.md

File metadata and controls

27 lines (18 loc) · 706 Bytes

Filter CommandMk2 Aiogram 3

Python


Improved command filter

class RestrictModel(BaseModel):
    period: date
    reason: Optional[str]


@router.message(CommandMk2('ban {period} {reason}', response_model=RestrictModel, response_model_name='vars'))
async def ban_user(message: Message, period: date, reason: Optional[str]):
    ...

Diff:

  • Command arguments parsing, not just leaving single string like built-in aiogram filter
  • Command arguments separation and validation using Pydantic model.

Doc is available here