Unofficial Python API for Dicio based on the original API of Felipe Pontes.
Project description
Python API for Dicio.com.br
Installation
$ pip install Dicio
Usage
from dicio import Dicio
# Create a Dicio object
dicio = Dicio()
# Search for "Doce" and return an object Word
word = dicio.search("Doce")
# Print the word, the url and the meaning
print(word, word.url, word.meaning)
# Print a list of synonyms
print(word.synonyms)
# Print a list of examples
print(word.examples)
# Print extra informations
for chave, valor in word.extra.items():
print(chave, "=>", valor)
# Load information about the first synonym
# Print the word, the URL and the meaning of the first synonym
word.synonyms[0].load()
print(word.synonyms[0], word.synonyms[0].url, word.synonyms[0].meaning)
Word details
Attributes
- word - the word itself
- url - Dicio.com.br URL for the word
- meaning - the meaning
- etymology - the etymology
Properties
- synonyms - list of synonyms
- examples - list of examples
- extra - dictionary of extra information (keys in portuguese)
Functions
- load - load information from Dicio.com.br
Contribute
If you want to add new features or improve something, send a pull request!
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 Distribution
dicio_scrapper-0.0.1.tar.gz
(4.7 kB
view details)
Built Distribution
File details
Details for the file dicio_scrapper-0.0.1.tar.gz
.
File metadata
- Download URL: dicio_scrapper-0.0.1.tar.gz
- Upload date:
- Size: 4.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.7.1 importlib_metadata/4.6.1 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.7.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a087ad8d41e6809b26bc361ed0abb9f6f3a5972d7fb97613ad034bba862720fc |
|
MD5 | 818981546b725cd49723f58533abb483 |
|
BLAKE2b-256 | 69d2e45863c322905c9b423e65ea14f171cb305939b03626eeaa9790a45f48c6 |
File details
Details for the file dicio_scrapper-0.0.1-py3-none-any.whl
.
File metadata
- Download URL: dicio_scrapper-0.0.1-py3-none-any.whl
- Upload date:
- Size: 6.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.7.1 importlib_metadata/4.6.1 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.7.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4b19475b3f9748dc101d3dd3db29ffea5b8fca7ef975ea9fdad9ab775a8fc049 |
|
MD5 | 3fa0d3a5ded218716d67aa55e709ba9c |
|
BLAKE2b-256 | 4e47c5e8c431366004fe90aae47d37192609618924b3cfb50b92257e2227194b |