Classes
GoogleItem
Bases: BaseSearchItem
Represents a single Google search result item.
A class that processes and stores individual search result data from Google reverse image search.
Attributes:
Name | Type | Description |
---|---|---|
origin |
PyQuery
|
The raw PyQuery object containing the search result data. |
title |
str
|
The title text of the search result. |
url |
str
|
The URL link to the search result page. |
thumbnail |
Optional[str]
|
Base64 encoded thumbnail image, if available. |
Source code in PicImageSearch/model/google.py
10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 |
|
Functions
__init__(data, thumbnail)
Initializes a GoogleItem with data from a search result.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
data
|
PyQuery
|
A PyQuery instance containing the search result item's data. |
required |
thumbnail
|
Optional[str]
|
Optional base64 encoded thumbnail image. |
required |
Source code in PicImageSearch/model/google.py
22 23 24 25 26 27 28 29 |
|
GoogleResponse
Bases: BaseSearchResponse[GoogleItem]
Encapsulates a Google reverse image search response.
Processes and stores the complete response from a Google reverse image search, including pagination information and individual search results.
Attributes:
Name | Type | Description |
---|---|---|
origin |
PyQuery
|
The raw PyQuery object containing the full response data. |
page_number |
int
|
Current page number in the search results. |
url |
str
|
URL of the current search result page. |
pages |
list[str]
|
List of URLs for all available result pages. |
raw |
list[GoogleItem]
|
List of processed search result items. |
Source code in PicImageSearch/model/google.py
38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 |
|
Functions
__init__(resp_data, resp_url, page_number=1, pages=None)
Initializes with the response text and URL.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
resp_data
|
str
|
The text of the response. |
required |
resp_url
|
str
|
URL to the search result page. |
required |
page_number
|
int
|
The current page number in the search results. |
1
|
pages
|
Optional[list[str]]
|
List of URLs to pages of search results. |
None
|
Source code in PicImageSearch/model/google.py
52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 |
|
create_thumbnail_dict(script_list)
staticmethod
Creates a mapping of image IDs to their base64 encoded thumbnails.
Processes script tags from Google's search results to extract thumbnail images and their corresponding IDs.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
script_list
|
list[PyQuery]
|
List of PyQuery objects containing script elements from the search results page. |
required |
Returns:
Type | Description |
---|---|
dict[str, str]
|
dict[str, str]: A dictionary where: - Keys are image IDs (format: 'dimg_*') - Values are base64 encoded image strings |
Note
- Handles multiple image formats (jpeg, jpg, png, gif)
- Automatically fixes escaped base64 strings by replacing '=' with '='
Source code in PicImageSearch/model/google.py
91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 |
|