From b0b7497c3922b973655233fc4a6b1c46a27071ed Mon Sep 17 00:00:00 2001 From: CHANDAN SINGH Date: Thu, 22 Aug 2019 15:46:30 +0530 Subject: [PATCH] Added Example to execute. Added a basic example so that people can easily understand.. --- README.rst | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/README.rst b/README.rst index e9d46ee..266b0f8 100644 --- a/README.rst +++ b/README.rst @@ -40,6 +40,16 @@ Installation pip install python-Levenshtein + +Example +------------ + +:: + + from Levenshtein import distance + edit_dist = distance("ah", "aho") + + Documentation --------------