Latest News
Kamis, 26 Desember 2019

python: menghilangkan warning SSL ketika konek ke https

Ketika menggunakan python3 di windows untuk koneksi ke url yang bersertikat SSL baik metode get maupun post akan selalu keluar pesan error. Meski pesan error ini tidak mempengaruhi proses/alur dari code yang kita buat di python, tetapi sangat tidak enak di lihat. Adapun pesan error kurang lebih adalah:
SSLError [SSL: CERTIFICATE VERIFY FAILED ] error. Then i turned off the switch for SSL certificates check with verify=False.
Untuk menghilangkan pesan error ini kita harus menambahkan modul warnings, adapun contoh lengkap source codenya adalah sebagai berikut :



from requests import Session
from bs4 import BeautifulSoup as bs
import warnings
from requests.packages.urllib3.exceptions import InsecureRequestWarning

warnings.simplefilter('ignore',InsecureRequestWarning)
with Session() as s:
       url="https://xxxx/welcome/validate"
       site = s.get(url,verify=False)
  • Blogger Comments
  • Facebook Comments

0 komentar:

Posting Komentar

Item Reviewed: python: menghilangkan warning SSL ketika konek ke https Rating: 5 Reviewed By: ariesdev