gtalarico / pyairtable

Python Api Client for Airtable
https://pyairtable.readthedocs.io
MIT License
786 stars 139 forks source link

Add more formulas #305

Closed NicoHood closed 7 months ago

NicoHood commented 1 year ago

Hi, would it be possible to add the following formulas?

        def NOT_EQUAL(left: Any, right: Any) -> str:
            return "{} != {}".format(left, right)

        def LESS_EQUAL(left: Any, right: Any) -> str:
            return "{}<={}".format(left, right)

        def GREATER_EQUAL(left: Any, right: Any) -> str:
            return "{}>={}".format(left, right)

        def NOT(value: Any) -> str:
            return "NOT({})".format(value)
mesozoic commented 1 year ago

Feel free to read our contribution guidelines and submit a pull request!

mesozoic commented 9 months ago

See #329 for a proposed fix.