ulozto-search

Python package to query uloz.to


License
MIT
Install
pip install ulozto-search==1.0.4

Documentation

ulozto-search

Search uloz.to for files using Python. It only supports one-page query for now.

Install

It's avaiable in PyPI, so you can use pip to install it:

python -m pip install ulozto-search

Usage

import ulozto_search

query = "your_query"
file_type = "documents|videos|images|archives|audios"  # optional
kwargs = {
    "insecure": False           # disables SSL check, optional, default False
    "includeApproximate": False  # also return approximate results
}

# search and return dictionary
ulozto_search.search(query, file_type, **kwargs)

# search and return HTML string
ulozto_search.searchHTML(query, file_type, **kwargs)

It can be also used from terminal:

$ ulozto-search -h
usage: ulozto-search [-h] [-t {documents,videos,images,archives,audios}] [--insecure] [--show-approximate] query

positional arguments:
  query                 String to query uloz.to

optional arguments:
  -h, --help            show this help message and exit
  -t {documents,videos,images,archives,audios}, --type {documents,videos,images,archives,audios}
                        Filter by file type
  --insecure            Don't verify SSL certificates, not recommended
  --show-approximate     Show approximate results

So if you want to download all files found by ulozto-search, enter this to terminal (uses ulozto-downloader):

ulozto-search "your query" | while read in; do ulozto-downloader --auto-captcha $(echo "$in" | cut -d '|' -f2); done