Skip to main content

Dictionary module

Project description

py-dictionary

returns meaning, synonyms, antonyms for a word (scraping dictionary.com) limit the no of results also get meaning, synonyms and antonyms in different color

This module uses requests, bs4 and string-color modules and scraps dictionary.com

How to use it

Install it

pip install Py-Dictionary

to update it

pip install Py-Dictionary --upgrade

Use

from pydictionary import Dictionary
dict = Dictionary("fix")

enter the word you want to search here e.g. I used the word "fix"

To get the result as list do following (you can use them in your programs)

meanings_list = dict.meanings()

synonyms_list = dict.synonyms()

antonyms_list = dict.antonyms()

To print the results do following:

dict.print_meanings()

dict.print_synonyms()

dict.print_antonyms()

This will print maximum 5 results with text having white color

If you want to increase or decrease maximum results do this

dict = Dictionary("fix",10)

now maximum 10 results will be shown

To change the color of text

dict.print_meanings("red")

dict.print_synonyms("green")

dict.print_antonyms("blue")

#To get more color look up string-color module or type string-color in your terminal

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

Py-Dictionary-4.1.4.tar.gz (2.8 kB view hashes)

Uploaded Source

Built Distribution

Py_Dictionary-4.1.4-py3-none-any.whl (3.2 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page