We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 25883ce commit ffc5639Copy full SHA for ffc5639
satcfdi/csf/__init__.py
@@ -1,14 +1,17 @@
1
+import warnings
2
from datetime import datetime
3
4
import requests
-from bs4 import BeautifulSoup
5
+from bs4 import BeautifulSoup, XMLParsedAsHTMLWarning
6
7
from .. import __version__
8
from ..catalogs import select_all
9
from ..exceptions import ResponseError
10
from ..models import Code
11
from ..sat_requests_utils import SSLAdapter
12
13
+warnings.filterwarnings("ignore", category=XMLParsedAsHTMLWarning)
14
+
15
16
def retrieve(rfc: str, id_cif: str):
17
data = _request_constancia(rfc, id_cif)
0 commit comments