File size: 431 Bytes
28df1e8
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
from .html_utils import extract_rating_from_element, extract_images_from_soup
from .http_utils import fetch_page
from .image_utils import filter_logo_images, is_logo_image
from .google_search_utils import fetch_hotel_images_from_google

__all__ = [
    'extract_rating_from_element',
    'extract_images_from_soup',
    'fetch_page',
    'filter_logo_images',
    'is_logo_image',
    'fetch_hotel_images_from_google'
]