Personal tools
Skip to content. | Skip to navigation
UNKNOWN
shortuuid is a simple python library that generates concise, unambiguous, URL-safe UUIDs. Often, one needs to use non-sequential IDs in places where users will see them, but the IDs must be as concise and easy to use as possible. shortuuid solves this problem by generating uuids using Python's built-in uuid module and then translating them to base57 using lowercase and uppercase letters and digits, and removing similar-looking characters such as l, 1, I, O and 0.
Python Slack SDK The Slack platform offers several APIs to build apps. Each Slack API delivers part of the capabilities from the platform, so that you can pick just those that fit for your needs. This SDK offers a corresponding package for each of Slack’s APIs. They are small and powerful when used independently, and work seamlessly when used together, too.
SQLGlot is a no-dependency SQL parser, transpiler, optimizer, and engine. It can be used to format SQL or translate between [21 different dialects]( like [DuckDB]( [Presto]( / [Trino]( [Spark]( / [Databricks]( [Snowflake]( and [BigQuery]( It aims to read a wide variety of SQL inputs and output syntactically and semantically correct SQL in the targeted dialects.
None
The concepts: wirerope.rope.WireRope is a wrapper interface for python callable. Custom wirerope.wire.Wire class provides user-defined behavior. A subclass of this class is working similar to a decorator function body. A wire object is associated with a bound method. Rope is dispatching types. wirerope.rope.WireRope is the wrapper for callables. By wrapping a function with WireRope with a custom subclass of the wirerope.wire.Wire class, the wire object will be created by each function or bound method. Wire is the most important part. The given class will be instantiated and bound to each function or bound method - which fits the concept of instance cmethod of human. For example, when f is a free function or staticmethod, the wire also will be a single object. When f is a method or property, wires will be created for each method owner object self. When f is a classmethod, wires will be created for each method owner class cls. Yes, it will detect the owner and bound to it regardless of
WTForms-Alchemy Generates WTForms forms from SQLAlchemy models.
Additional fields, validators and widgets for WTForms.
wtforms-dateutil WTForms integration for dateutil pip install wtforms-dateutil python from wtforms_dateutil import DateField, DateTimeField
WTForms-JSON Adds smart json support for WTForms. Useful for when using WTForms with RESTful