Skip to content
This repository has been archived by the owner on Jan 27, 2024. It is now read-only.

Don't assume CAPTCHA URLs always start with // #83

Merged
merged 2 commits into from
Aug 7, 2022

Commits on Jul 19, 2022

  1. Configuration menu
    Copy the full SHA
    d460963 View commit details
    Browse the repository at this point in the history

Commits on Jul 25, 2022

  1. Use urllib.parse.urljoin to prepend https:

    Related to setnicka#82
    
        >>> from urllib.parse import urljoin
        >>> urljoin("https:", "//uloz.to/x")
        'https://uloz.to/x'
        >>> urljoin("https:", "https://uloz.to/x")
        'https://uloz.to/x'
        >>> urljoin("https:", "http://uloz.to/x")
        'http://uloz.to/x'
    hroncok committed Jul 25, 2022
    Configuration menu
    Copy the full SHA
    4ab0f78 View commit details
    Browse the repository at this point in the history