form.parser.grammar
Attributes
Classes
The relativedelta type is designed to be applied to an existing datetime and |
Functions
|
Returns a re group for text without the given characters. |
|
Returns all printable text without the given characters. |
|
Returns true if the given character matches the token. |
|
" Returns the given value, ignoring the tokens alltogether. |
|
Converts the token to int if possible. |
|
Joins the given tokens into a single string. |
|
Converts the token to decimal if possible. |
|
Converts the token to uppercase if possible. |
|
Converts the token to an integer range if possible. |
|
Converts the token to a decimal range if possible. |
|
Converts the token to a working regex if possible. |
|
Converts the token to a date if possible. |
|
Checks if the date range is valid |
|
|
|
|
|
Unwraps grouped tokens. |
|
Takes the given tags and applies them to the token. |
|
Returns an expression that allows for whitespace inside, but not |
|
Wraps the given expression in the given characters. |
|
Wraps numers in the given characters, making sure the result is an int. |
|
Wraps the given choices in the given characters, making sure only |
|
Returns a mark (x) inclosed in the given characters. For example, |
|
Returns a textfield parser. |
|
Returns a textarea parser. |
|
Returns a code textfield with a specified syntax. |
|
Returns a password field parser. |
|
Returns an email field parser. |
|
Returns an url field parser. |
|
Returns an video url field parser. |
|
Returns an absolute date parser. |
|
Returns a relative date parser. |
|
Returns a valid date range parser. |
|
Returns a date parser. |
|
Returns a datetime parser. |
|
Returns a time parser. |
|
Returns an stdnum parser. |
|
Returns a chip number parser. |
|
Returns a fileinput parser. |
|
Returns a decimal parser. |
|
Generic range field parser. |
|
Returns an integer range parser. |
|
Returns a decimal range parser. |
|
Returns a currency parser. |
|
Returns a pricing parser. |
|
Returns a discount parser. |
|
Returns a marker box: |
|
Returns a radio parser: |
|
Returns a checkbox parser: |
|
A fieldset title parser. Fieldset titles are just like headings in |
|
Returns a field identifier parser: |
|
Returns parser for a field help comment following a field/fieldset: |
Module Contents
- form.parser.grammar.text_without_re(characters: str) str[source]
Returns a re group for text without the given characters.
- form.parser.grammar.text_without(characters: str) pyparsing.Word[source]
Returns all printable text without the given characters.
- form.parser.grammar.matches(character: str) collections.abc.Callable[[pyparsing.results.ParseResults], bool][source]
Returns true if the given character matches the token.
- form.parser.grammar.literal[T](value: T) collections.abc.Callable[[pyparsing.results.ParseResults], T][source]
“ Returns the given value, ignoring the tokens alltogether.
- form.parser.grammar.as_int(tokens: pyparsing.results.ParseResults) int | None[source]
Converts the token to int if possible.
- form.parser.grammar.as_joined_string(tokens: pyparsing.results.ParseResults) str[source]
Joins the given tokens into a single string.
- form.parser.grammar.as_decimal(tokens: pyparsing.results.ParseResults) decimal.Decimal | None[source]
Converts the token to decimal if possible.
- form.parser.grammar.as_uppercase(tokens: pyparsing.results.ParseResults) str | None[source]
Converts the token to uppercase if possible.
- form.parser.grammar.as_integer_range(tokens: pyparsing.results.ParseResults) range | None[source]
Converts the token to an integer range if possible.
- form.parser.grammar.as_decimal_range(tokens: pyparsing.results.ParseResults) onegov.form.utils.decimal_range | None[source]
Converts the token to a decimal range if possible.
- form.parser.grammar.as_regex(tokens: pyparsing.results.ParseResults) re.Pattern[str] | None[source]
Converts the token to a working regex if possible.
- form.parser.grammar.as_date(instring: str, loc: int, tokens: pyparsing.results.ParseResults) datetime.date | None[source]
Converts the token to a date if possible.
- form.parser.grammar.is_valid_date_range(instring: str, loc: int, tokens: pyparsing.results.ParseResults) pyparsing.results.ParseResults[source]
Checks if the date range is valid
- form.parser.grammar.is_valid_currency(instring: str, loc: int, tokens: pyparsing.results.ParseResults) str | None[source]
- class form.parser.grammar.RelativeDate(grain: Literal['days', 'weeks', 'months', 'years'] | None = None, offset: int = 0)[source]
Bases:
dateutil.relativedelta.relativedeltaThe relativedelta type is designed to be applied to an existing datetime and can replace specific components of that datetime, or represents an interval of time.
It is based on the specification of the excellent work done by M.-A. Lemburg in his mx.DateTime extension. However, notice that this type does NOT implement the same algorithm as his work. Do NOT expect it to behave like mx.DateTime’s counterpart.
There are two different ways to build a relativedelta instance. The first one is passing it two date/datetime classes:
relativedelta(datetime1, datetime2)
The second one is passing it any number of the following keyword arguments:
relativedelta(arg1=x,arg2=y,arg3=z...) year, month, day, hour, minute, second, microsecond: Absolute information (argument is singular); adding or subtracting a relativedelta with absolute information does not perform an arithmetic operation, but rather REPLACES the corresponding value in the original datetime with the value(s) in relativedelta. years, months, weeks, days, hours, minutes, seconds, microseconds: Relative information, may be negative (argument is plural); adding or subtracting a relativedelta with relative information performs the corresponding arithmetic operation on the original datetime value with the information in the relativedelta. weekday: One of the weekday instances (MO, TU, etc) available in the relativedelta module. These instances may receive a parameter N, specifying the Nth weekday, which could be positive or negative (like MO(+1) or MO(-2)). Not specifying it is the same as specifying +1. You can also use an integer, where 0=MO. This argument is always relative e.g. if the calculated date is already Monday, using MO(1) or MO(-1) won't change the day. To effectively make it absolute, use it in combination with the day argument (e.g. day=1, MO(1) for first Monday of the month). leapdays: Will add given days to the date found, if year is a leap year, and the date found is post 28 of february. yearday, nlyearday: Set the yearday or the non-leap year day (jump leap days). These are converted to day/month/leapdays information.
There are relative and absolute forms of the keyword arguments. The plural is relative, and the singular is absolute. For each argument in the order below, the absolute form is applied first (by setting each attribute to that value) and then the relative form (by adding the value to the attribute).
The order of attributes considered when this relativedelta is added to a datetime is:
Year
Month
Day
Hours
Minutes
Seconds
Microseconds
Finally, weekday is applied, using the rule described above.
For example
>>> from datetime import datetime >>> from dateutil.relativedelta import relativedelta, MO >>> dt = datetime(2018, 4, 9, 13, 37, 0) >>> delta = relativedelta(hours=25, day=1, weekday=MO(1)) >>> dt + delta datetime.datetime(2018, 4, 2, 14, 37)
First, the day is set to 1 (the first of the month), then 25 hours are added, to get to the 2nd day and 14th hour, finally the weekday is applied, but since the 2nd is already a Monday there is no effect.
- __lt__(other: RelativeDate) bool[source]
- form.parser.grammar.as_relative_date(tokens: pyparsing.results.ParseResults) RelativeDate | None[source]
- form.parser.grammar.unwrap(tokens: pyparsing.results.ParseResults) Any | None[source]
Unwraps grouped tokens.
- form.parser.grammar.tag(**tags: str) collections.abc.Callable[[pyparsing.results.ParseResults], None][source]
Takes the given tags and applies them to the token.
- form.parser.grammar.with_whitespace_inside(expr: pyparsing.ParserElement) pyparsing.Combine[source]
Returns an expression that allows for whitespace inside, but not outside the expression.
- form.parser.grammar.enclosed_in(expr: pyparsing.ParserElement, characters: str) pyparsing.ParserElement[source]
Wraps the given expression in the given characters.
- form.parser.grammar.number_enclosed_in(characters: str) pyparsing.ParserElement[source]
Wraps numers in the given characters, making sure the result is an int.
- form.parser.grammar.choices_enclosed_in(characters: str, choices: collections.abc.Sequence[str]) pyparsing.ParserElement[source]
Wraps the given choices in the given characters, making sure only valid choices are possible.
- form.parser.grammar.mark_enclosed_in(characters: str) pyparsing.MatchFirst[source]
Returns a mark (x) inclosed in the given characters. For example,
mark_enclosed_in('[]')creates an expression that accepts any of these and sets the result of the ‘x’ value to True, the others to False:[x] [ ]
- form.parser.grammar.textfield() pyparsing.ParserElement[source]
Returns a textfield parser.
Example:
____[50]
The number defines the maximum length.
Additionally, a regex may be specified to validate the field:
___/[0-9]{4}
- form.parser.grammar.textarea() pyparsing.ParserElement[source]
Returns a textarea parser.
Example:
...[5]
The number defines the number of rows.
- form.parser.grammar.code() pyparsing.ParserElement[source]
Returns a code textfield with a specified syntax.
Currently only markdown is supported.
Example:
<markdown>
- form.parser.grammar.password() pyparsing.ParserElement[source]
Returns a password field parser.
Example:
***
- form.parser.grammar.email() pyparsing.ParserElement[source]
Returns an email field parser.
Example:
@@@
- form.parser.grammar.url() pyparsing.ParserElement[source]
Returns an url field parser.
Example:
http:// https://
- form.parser.grammar.video_url() pyparsing.ParserElement[source]
Returns an video url field parser.
Example:
video-url
- form.parser.grammar.absolute_date() pyparsing.ParserElement[source]
Returns an absolute date parser.
Example:
2020.10.10
- form.parser.grammar.relative_date() pyparsing.ParserElement[source]
Returns a relative date parser.
Example:
+1 days -4 weeks 0 years
- form.parser.grammar.valid_date_range() pyparsing.ParserElement[source]
Returns a valid date range parser.
Example:
(..today) (2010.01.01..2020.01.01) (-2 weeks..+4 months)
- form.parser.grammar.date() pyparsing.ParserElement[source]
Returns a date parser.
Example:
YYYY.MM.DD
- form.parser.grammar.datetime() pyparsing.ParserElement[source]
Returns a datetime parser.
Example:
YYYY.MM.DD HH:MM
- form.parser.grammar.stdnum() pyparsing.ParserElement[source]
Returns an stdnum parser.
Example:
# iban
- form.parser.grammar.chip_nr() pyparsing.ParserElement[source]
Returns a chip number parser.
Example:
chip-nr
- form.parser.grammar.fileinput() pyparsing.ParserElement[source]
Returns a fileinput parser.
For all kindes of files:
*.*For specific files:
*.pdf|*.doc
For multiple file upload:
*.pdf (multiple)
- form.parser.grammar.decimal() pyparsing.ParserElement[source]
Returns a decimal parser.
Decimal point is ‘.’.
For example:
0.00 123 11.1 -10.0
- form.parser.grammar.range_field(value_expression: pyparsing.ParserElement, parse_action: collections.abc.Callable[[pyparsing.results.ParseResults], Any], type: str) pyparsing.ParserElement[source]
Generic range field parser.
- form.parser.grammar.integer_range_field() pyparsing.ParserElement[source]
Returns an integer range parser.
- form.parser.grammar.decimal_range_field() pyparsing.ParserElement[source]
Returns a decimal range parser.
- form.parser.grammar.currency() pyparsing.ParserElement[source]
Returns a currency parser.
For example:
chf USD Cny
- form.parser.grammar.pricing() pyparsing.ParserElement[source]
Returns a pricing parser.
- For example:
(10.0 CHF) (0 usd!) (-0.50 Cny)
- form.parser.grammar.discount() pyparsing.ParserElement[source]
Returns a discount parser.
- For example:
(100%) (-25 %) (33.3%)
- form.parser.grammar.marker_box(characters: str) pyparsing.ParserElement[source]
Returns a marker box:
Example:
(x) Male [x] Female {x} What?
- form.parser.grammar.radio() pyparsing.ParserElement[source]
Returns a radio parser:
- Example::
(x) Male ( ) Female
- form.parser.grammar.checkbox() pyparsing.ParserElement[source]
Returns a checkbox parser:
- Example::
[x] Male [ ] Female
- form.parser.grammar.fieldset_title() pyparsing.ParserElement[source]
A fieldset title parser. Fieldset titles are just like headings in markdown:
# My headerIt’s possible to have an empty fieldset title (to disable a fieldset):
# …