camply
camply init file
AvailableCampsite
#
Bases: CamplyModel
Campsite Storage
This container should be universal regardless of API Provider
Source code in camply/containers/data_containers.py
EquipmentOptions
#
Enumeration of the Equipment Options
Source code in camply/config/search_config.py
GoingToCamp
#
Bases: BaseProvider
Going To Camp API provider
Source code in camply/providers/going_to_camp/going_to_camp_provider.py
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 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 |
|
find_campgrounds(search_string=None, rec_area_id=None, campground_id=None, campsite_id=None, **kwargs)
#
Find Campgrounds Given a Set of Search Criteria
Parameters:
Name | Type | Description | Default |
---|---|---|---|
search_string |
Optional[str]
|
Search Keyword(s) |
None
|
rec_area_id |
Optional[List[int]]
|
Recreation Area ID by which to filter |
None
|
campground_id |
Optional[List[int]]
|
ID of the Campground |
None
|
Returns:
Name | Type | Description |
---|---|---|
facilities |
List[CampgroundFacility]
|
Array of Matching Campgrounds |
Source code in camply/providers/going_to_camp/going_to_camp_provider.py
find_facilities_per_recreation_area(rec_area_id=None, campground_id=None, search_string=None, **kwargs)
#
Find Matching Campsites by Recreation Area
Parameters:
Name | Type | Description | Default |
---|---|---|---|
rec_area_id |
Optional[Union[List[int], int]]
|
Recreation Area ID |
None
|
campground_id |
Optional[Union[List[int], int]]
|
Campground IDs |
None
|
search_string |
Optional[str]
|
A string to search for in the facility name |
None
|
Returns:
Name | Type | Description |
---|---|---|
campgrounds |
List[CampgroundFacility]
|
Array of Matching Campsites |
Source code in camply/providers/going_to_camp/going_to_camp_provider.py
find_recreation_areas(search_string=None, **kwargs)
classmethod
#
Find Matching Recreation Areas based on search string
Parameters:
Name | Type | Description | Default |
---|---|---|---|
search_string |
Optional[str]
|
Search Keyword(s) |
None
|
Returns:
Name | Type | Description |
---|---|---|
filtered_responses |
List[RecreationArea]
|
Array of Matching Recreation Areas |
Source code in camply/providers/going_to_camp/going_to_camp_provider.py
get_reservation_link(rec_area_domain_name, resource_location_id, map_id, equipment_id, sub_equipment_id, party_size, start_date, end_date)
#
Generate a URL which a site can be booked
Returns:
Name | Type | Description |
---|---|---|
url |
str
|
The reservation link URL |
Source code in camply/providers/going_to_camp/going_to_camp_provider.py
get_site_details(rec_area_id, resource_id)
#
Get the details about a site in a recreation area
Parameters:
Name | Type | Description | Default |
---|---|---|---|
rec_area_id |
int
|
Recreation Area ID by which to filter |
required |
resource_id |
int
|
|
required |
Returns:
Name | Type | Description |
---|---|---|
details |
Dict[str, str]
|
The details about the site |
Source code in camply/providers/going_to_camp/going_to_camp_provider.py
list_equipment_types(rec_area_id)
#
List equipment types available for a recreation area
Params#
rec_area_id: int The ID of the recreation area
Returns:
Name | Type | Description |
---|---|---|
types |
List[GoingToCampEquipment]
|
A list of equipment types available to this rec area |
Source code in camply/providers/going_to_camp/going_to_camp_provider.py
list_site_availability(campground, start_date, end_date, equipment_type_id)
#
Retrieve the Availability for all Sites in a Camp Area
Sites are filtered on the provided date range and compatible equipment.
Returns:
Name | Type | Description |
---|---|---|
available_sites |
List[AvailableResource]
|
The list of available sites |
Source code in camply/providers/going_to_camp/going_to_camp_provider.py
rec_area_lookup(rec_area_id)
#
Lookup a recreation area by ID
Parameters:
Name | Type | Description | Default |
---|---|---|---|
rec_area_id |
int
|
The recreation area ID to lookup |
required |
Returns:
Type | Description |
---|---|
domain_name, rec_ara: Tuple[str, RecreationArea]
|
The rec area's domain name and the recreation area object |
Source code in camply/providers/going_to_camp/going_to_camp_provider.py
RecreationDotGov
#
Bases: RecreationDotGovBase
Recreation.gov: Campsite Searcher
Source code in camply/providers/recreation_dot_gov/recdotgov_camps.py
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 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 |
|
make_recdotgov_availability_request(campground_id, month)
#
Make a request to the RecreationDotGov API
Parameters:
Name | Type | Description | Default |
---|---|---|---|
campground_id |
int
|
|
required |
month |
datetime
|
|
required |
Returns:
Type | Description |
---|---|
Response
|
|
Source code in camply/providers/recreation_dot_gov/recdotgov_camps.py
paginate_recdotgov_campsites(facility_id, equipment=None)
#
Paginate through the RecDotGov Campsite Metadata
Source code in camply/providers/recreation_dot_gov/recdotgov_camps.py
process_campsite_availability(availability, recreation_area, recreation_area_id, facility_name, facility_id, month, campsite_metadata)
classmethod
#
Parse the JSON Response and return availabilities
Parameters:
Name | Type | Description | Default |
---|---|---|---|
availability |
Dict[str, Any]
|
API Response |
required |
recreation_area |
str
|
Name of Recreation Area |
required |
recreation_area_id |
int
|
ID of Recreation Area |
required |
facility_name |
str
|
Campground Facility Name |
required |
facility_id |
int
|
Campground Facility ID |
required |
month |
datetime
|
Month to Process |
required |
campsite_metadata |
DataFrame
|
Metadata Fetched from the Recreation.gov API about the Campsites |
required |
Returns:
Name | Type | Description |
---|---|---|
total_campsite_availability |
List[Optional[AvailableCampsite]]
|
Any monthly availabilities |
Source code in camply/providers/recreation_dot_gov/recdotgov_camps.py
155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 |
|
SearchRecreationDotGov
#
Bases: SearchRecreationDotGovBase
Searches on Recreation.gov for Campsites (default provider)
Source code in camply/search/search_recreationdotgov.py
SearchWindow
#
Bases: CamplyModel
Search Window for Campsite Search
Source code in camply/containers/data_containers.py
end_date_must_be_in_future(v)
classmethod
#
Validate that end_date is in the future
Source code in camply/containers/data_containers.py
get_current_start_date()
#
get_date_range()
#
start_date_must_be_in_future(v)
classmethod
#
Validate that start_date is in the future.
Coerece start date to today's date when it is not in the future.
Source code in camply/containers/data_containers.py
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]
|
|
Source code in camply/search/search_yellowstone.py
Yellowstone
#
Bases: BaseProvider
Scanner for Lodging in Yellowstone
Source code in camply/providers/xanterra/yellowstone_lodging.py
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 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 |
|
find_campgrounds(**kwargs)
#
Print the Campgrounds inside of Yellowstone
Source code in camply/providers/xanterra/yellowstone_lodging.py
get_monthly_campsites(month, nights=None)
#
Return All Campsites Available in a Given Month
Parameters:
Name | Type | Description | Default |
---|---|---|---|
month |
datetime
|
Month to Search |
required |
nights |
Optional[int]
|
Search for consecutive nights |
None
|
Returns:
Type | Description |
---|---|
List[AvailableCampsite]
|
|
Source code in camply/providers/xanterra/yellowstone_lodging.py
390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 |
|
make_yellowstone_request(endpoint, params=None)
staticmethod
#
Try and Retry Fetching Data from the Yellowstone API.
Unfortunately this is a required method to request the data since the Yellowstone API doesn't always return data.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
endpoint |
str
|
API Endpoint |
required |
params |
Optional[dict]
|
|
None
|
Returns:
Type | Description |
---|---|
dict
|
|