Solving Ssl: certificate_verify_failed on APIs

Hi @Rishabh_Dasgupta
Try,

  1. Check point no 4
    Learn Algo Trading with Python | Codes | Youtube Series - #177 by Tradehull_Imran

  2. Disable SSL checking

    import ssl

    warnings.filterwarnings("ignore")

    # Disable SSL verification globally
    ssl._create_default_https_context = ssl._create_unverified_context
1 Like