Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

no OpenSSL_APPlink #440

Closed
japri opened this issue Oct 30, 2023 · 3 comments
Closed

no OpenSSL_APPlink #440

japri opened this issue Oct 30, 2023 · 3 comments

Comments

@japri
Copy link

japri commented Oct 30, 2023

import requests

def fetch_https_url(url):
    try:
        response = requests.get(url)
        response.raise_for_status()  # Check whether the request was successful

        print("URL fetched successfully!")
        print("Response Content:")
        print(response.text)  # Printing the content of the page

    except requests.exceptions.HTTPError as errh:
        print(f"Http Error: {errh}")
    except requests.exceptions.ConnectionError as errc:
        print(f"Error Connecting: {errc}")
    except requests.exceptions.Timeout as errt:
        print(f"Timeout Error: {errt}")
    except requests.exceptions.RequestException as err:
        print(f"Oops: Something Else: {err}")

# Example usage:
fetch_https_url('https://www.example.com')

above codes will produce no OpenSSL_Uplink: no OpenSSL_APPlink, how to resolve?

@pyscripter
Copy link
Owner

pyscripter commented Oct 30, 2023

"My code does not work" is not a valid issue submission. Please use the P4D support forum or in this case the python support forums.

Have you googled for "python no OpenSSL_APPlink"?

@japri
Copy link
Author

japri commented Oct 31, 2023

i try to google it but it getting to technical without any working solutions, last i try to uninstall all python, miniconda, and fresh install python 3.11 and everything works.....

@pyscripter
Copy link
Owner

Good to know...

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants