1
0
mirror of https://github.com/adlerosn/rede-especificacoes-tecnicas-em-redes synced 2024-07-08 18:20:13 +00:00
ufes-mestrado-projetopesqui.../docRefNetCreator/downloader/fixedBS.py
2019-04-17 11:09:38 -03:00

9 lines
178 B
Python

#!/usr/bin/env python3
# -*- encoding: utf-8 -*-
from bs4 import BeautifulSoup as _BS
def BeautifulSoup(*args, **kwargs):
return _BS(features="html5lib", *args, **kwargs)