Esempio n. 1
0
def get_distinct_category_page(page, main_category, detail_category, region, **filters):
    """A method for scraping just the distinct page of a category"""
    parsed_content = []
    url = get_url(main_category, detail_category, region, "?nrAdsPerPage=72", page, **filters)
    content = get_response_for_url(url).content

    parsed_content.extend(parse_category_content(content))

    return parsed_content
Esempio n. 2
0
def get_category_number_of_pages_from_parameters(main_category, detail_category, region, **filters):
    """A method to establish the number of pages before actually scraping any data"""
    url = get_url(main_category, detail_category, region, "?nrAdsPerPage=72", 1, **filters)
    content = get_response_for_url(url).content
    if not was_category_search_successful(content):
        log.warning("Search for category wasn't successful", url)
        return 0
    html_parser = BeautifulSoup(content, "html.parser")
    offers = html_parser.find(class_="current")
    return int(offers.text) if offers else 1
Esempio n. 3
0
def get_category(main_category, detail_category, region, **filters):
    """
    Scrape OtoDom search results based on supplied parameters.

    :param main_category: "wynajem" or "sprzedaz", should not be empty
    :param detail_category: "mieszkanie", "dom", "pokoj", "dzialka", "lokal", "haleimagazyny", "garaz", or
                            empty string for any
    :param region: a string that contains the region name. Districts, cities and voivodeships are supported. The exact
                    location is established using OtoDom's API, just as it would happen when typing something into the
                    search bar. Empty string returns results for the whole country. Will be ignored if either 'city',
                    'region', '[district_id]' or '[street_id]' is present in the filters.
    :param filters: the following dict contains every possible filter with examples of its values, but can be empty:

    ::

        input_dict = {
            '[dist]': 0,  # distance from region
            '[filter_float_price:from]': 0,  # minimal price
            '[filter_float_price:to]': 0,  # maximal price
            '[filter_float_price_per_m:from]': 0  # maximal price per square meter, only used for apartments for sale
            '[filter_float_price_per_m:to]': 0  # minimal price per square meter, only used for apartments for sale
            '[filter_enum_market][]': [primary, secondary]  # enum: primary, secondary
            '[filter_enum_building_material][]': []  # enum: brick, wood, breezeblock, hydroton, concrete_plate,
                concrete, silikat, cellular_concrete, reinforced_concrete, other, only used for apartments for sale
            '[filter_float_m:from]': 0,  # minimal surface
            '[filter_float_m:to]': 0,  # maximal surface
            '[filter_enum_rooms_num][]': '1',  # number of rooms, enum: from "1" to "10", or "more"
            '[private_business]': 'private',  # poster type, enum: private, business
            '[open_day]': 0,  # whether or not the poster organises an open day
            '[exclusive_offer]': 0,  # whether or not the offer is otodom exclusive
            '[filter_enum_rent_to_students][]': 0,  # whether or not the offer is aimed for students, only used for
                apartments for rent
            '[filter_enum_floor_no][]': 'floor_1',  # enum: cellar, ground_floor, floor_1-floor_10, floor_higher_10,
                garret
            '[filter_float_building_floors_num:from]': 1,  # minimal number of floors in the building
            '[filter_float_building_floors_num:to]': 1,  # maximal number of floors in the building
            'building_type': 'blok',  # enum: blok, w-kamienicy, dom-wolnostojacy, plomba, szeregowiec,
                apartamentowiec, loft
            '[filter_enum_heating][]': 'urban',  # enum: urban, gas, tiled_stove, electrical, boiler_room, other
            '[filter_float_build_year:from]': 1980,  # minimal year the building was built in
            '[filter_float_build_year:to]': 2016,  # maximal year the building was built in
            '[filter_enum_extras_types][]': ['balcony', 'basement'],  # enum: balcony, usable_room, garage, basement,
                garden, terrace, lift, two_storey, separate_kitchen, air_conditioning, non_smokers_only
            '[filter_enum_media_types][]': ['internet', 'phone'],  # enum: internet, cable-television, phone
            '[free_from]': 'from_now',  # when will it be possible to move in, enum: from_now, 30, 90
            '[created_since]': 1,  # when was the offer posted on otodom in days, enum: 1, 3, 7, 14
            '[id]': 48326376,  # otodom offer ID, found at the very bottom of each offer
            'description_fragment': 'wygodne',  # the resulting offers' descriptions must contain this string
            '[photos]': 0,  # whether or not the offer contains photos
            '[movie]': 0,  # whether or not the offer contains video
            '[walkaround_3dview]': 0  # whether or not the offer contains a walkaround 3D view
            'city':  # lowercase, no diacritics, '-' instead of spaces, _city_id at the end
            'voivodeship':  # lowercase, no diacritics, '-' instead of spaces
            '[district_id]': from otodom API
            '[street_id]': from otodom API
        }

    :rtype: list of dict(string, string)
    :return: Each of the dictionaries contains the following fields:

    ::

        'detail_url' - a link to the offer
        'offer_id' - the internal otodom's offer ID, not to be mistaken with the '[id]' field from the input_dict
        'poster' - a piece of information about the poster. Could either be a name of the agency or "Oferta prywatna"
    """
    page, pages_count, parsed_content = 1, None, []

    while page == 1 or page <= pages_count:
        url = get_url(main_category, detail_category, region,
                      "?nrAdsPerPage=72", page, **filters)
        content = get_response_for_url(url).content
        if not was_category_search_successful(content):
            log.warning("Search for category wasn't successful", url)
            return []

        parsed_content.extend(parse_category_content(content))

        if page == 1:
            pages_count = get_category_number_of_pages(content)
            if page == pages_count:
                break

        page += 1

    return parsed_content
Esempio n. 4
0
def test_get_url(main_category, detail_category, region,
                 get_region_from_autosuggest_value):
    with mock.patch("otodom.utils.get_region_from_autosuggest"
                    ) as get_region_from_autosuggest:
        get_region_from_autosuggest.return_value = get_region_from_autosuggest_value
        assert utils.get_url(main_category, detail_category, region)