You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
from urllib import parse,request,response,error
import re
from xml.dom import minidom
try:
from bs4 import BeautifulSoup
except ImportError:
raise Exception('Você não tem o modulo BeautifulSoup execute pip install beautifulsoup4', ImportError)
No init.py o nome da lib esta minusculo e necessario mudar para Correios e também instalar o Beautifysoup4
-- coding: utf-8 --
"""
correios.py
Api para usar dados dos Correios
"""
from urllib.request import urlopen
version = '0.1.0'
author = {
'Thiago Avelino': '[email protected]',
'Dilan Nery': '[email protected]',
}
from urllib import parse,request,response,error
import re
from xml.dom import minidom
try:
from bs4 import BeautifulSoup
except ImportError:
raise Exception('Você não tem o modulo BeautifulSoup execute pip install beautifulsoup4', ImportError)
class Correios(object):
The text was updated successfully, but these errors were encountered: