Semantic link functions for phonenumbers package. Enables validation of phone numbers in FabricDataFrames.
Project description
FabricDataFrames dynamically expose semantic functions based on logic defined by each function. For example, the is_holiday function shows up in the autocomplete suggestions when you're working on a FabricDataFrame containing both a datetime column and a country column.
Each semantic function uses information about the data types, metadata (such as Power BI data categories), and the data in a FabricDataFrame or FabricSeries to determine its relevance to the particular data on which you're working.
Semantic functions are automatically discovered when annotated with the @semantic_function decorator. You can think of semantic functions as being similar to C# extension methods applied to the popular DataFrame concept.
from sempy.fabric import FabricDataFrame
df = FabricDataFrame(
{"num": ["+442083661177", "ABC000-0000", "abc"], "country": ["US", "AT", "Unknown"]},
column_metadata={"country": {"data_category": "Country"}},
)
is_phone_series = df.is_phonenumber(col_num="num", col_country="country")
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
Built Distribution
Hashes for semantic_link_functions_phonenumbers-0.7.0-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | de67f62b38b27f6a56a45fe07ebd7935968a701ddceeb1db47b8bb9a415c7b56 |
|
MD5 | d8f0048870bd1e527f145b50038eee80 |
|
BLAKE2b-256 | d290b5b733ce91d09f80a7f18894cbf47b5c898e0b130906ce3b92df5ad49b14 |