-
Hello, is it possible to see the source code for https://presidio-demo.azurewebsites.net/ ? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 4 replies
-
Hi @storkeu, we have a similar demo website in our samples gallery: https://microsoft.github.io/presidio/samples/python/streamlit/ Programmatically, one can access the detected entity value this way: from presidio_analyzer import AnalyzerEngine
text="My phone number is 212-555-5555"
analyzer = AnalyzerEngine()
# Call analyzer to get results
results = analyzer.analyze(text=text, language='en')
for result in results:
print(f"Text: {text[result.start: result.end]} identified as entity {result.entity_type}") Returning:
|
Beta Was this translation helpful? Give feedback.
-
Hello @omri374 , was the ready made demo website https://presidio-demo.azurewebsites.net/ decommissioned ? that's pity that was good to showcase the features to business users directly :( |
Beta Was this translation helpful? Give feedback.
Hi @storkeu, we have a similar demo website in our samples gallery: https://microsoft.github.io/presidio/samples/python/streamlit/
Programmatically, one can access the detected entity value this way:
Returning: