search_yellowstone
Yellowstone Lodging Web Searching Utilities
SearchYellowstone
#
Bases: BaseCampingSearch
Searches on YellowstoneNationalParkLodges.com for Campsites
Source code in camply/search/search_yellowstone.py
22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 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 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 |
|
__init__(search_window, weekends_only=False, campgrounds=None, nights=1, offline_search=False, offline_search_path=None, **kwargs)
#
Initialize with Search Parameters
Parameters:
Name | Type | Description | Default |
---|---|---|---|
search_window |
Union[SearchWindow, List[SearchWindow]]
|
Search Window tuple containing start date and End Date |
required |
weekends_only |
bool
|
Whether to only search for Camping availabilities on the weekends (Friday / Saturday nights) |
False
|
campgrounds |
Optional[Union[List[str], str]]
|
Campground ID or List of Campground IDs |
None
|
nights |
int
|
minimum number of consecutive nights to search per campsite,defaults to 1 |
1
|
offline_search |
bool
|
When set to True, the campsite search will both save the results of the campsites it's found, but also load those campsites before beginning a search for other campsites. |
False
|
offline_search_path |
Optional[str]
|
When offline search is set to True, this is the name of the file to be saved/loaded.
When not specified, the filename will default to |
None
|
Source code in camply/search/search_yellowstone.py
find_recreation_areas(**kwargs)
classmethod
#
Return the Yellowstone Recreation Area Object
get_all_campsites()
#
Search for all matching campsites in Yellowstone.
Returns:
Type | Description |
---|---|
List[AvailableCampsite]
|
|