This is a simple python library that is useful for pidgin and english word interpretation.


####How to use the packages

from english_pidgin_dict.english_pidgin_dict import getMeaning

typed_desired_word = input("enter yr desired word here")

meaning = getMeaning(typed_desired_word)
print(meaning)

#printing meaning of the word in console
# if type(meaning) == list:
#     for item in meaning:
#         print(item)
# else:
#     print(meaning)

# PIP PACKAGE DEPENDECIES

difflib (built-in python package)


### KINDLY MAKE PR for UPGRADE....
