Skip to content

Instantly share code, notes, and snippets.

@Tinche
Created March 5, 2021 14:51
Show Gist options
  • Save Tinche/aa22076631f8504c78d6be6b977b134c to your computer and use it in GitHub Desktop.
Save Tinche/aa22076631f8504c78d6be6b977b134c to your computer and use it in GitHub Desktop.
from pydantic import BaseModel, constr
class Test(BaseModel):
a_string: str = constr(min_length=20, max_length=1000)
t = Test()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment