providers
providers init file
AlabamaStateParks
#
Bases: UseDirectProvider
Alabama State Parks
Source code in camply/providers/usedirect/variations.py
ArizonaStateParks
#
Bases: UseDirectProvider
Arizona State Parks
Source code in camply/providers/usedirect/variations.py
BaseProvider
#
Bases: ABC
Base Provider Class
Source code in camply/providers/base_provider.py
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 |
|
__init__()
#
Initialize with a session
Source code in camply/providers/base_provider.py
__repr__()
#
find_campgrounds()
abstractmethod
#
get_search_months(search_days)
classmethod
#
Get the Unique Months that need to be Searched
Returns:
Name | Type | Description |
---|---|---|
search_months |
List[datetime]
|
Datetime Months to search for reservations |
Source code in camply/providers/base_provider.py
make_http_request(url, method='GET', data=None, headers=None, retry_response_codes=None)
#
Make an HTTP Request
Parameters:
Name | Type | Description | Default |
---|---|---|---|
url |
str
|
URL to make the request to |
required |
method |
str
|
HTTP Method to use. Defaults to GET |
'GET'
|
data |
Optional[Union[Dict[str, Any], str]]
|
Data to send with the request |
None
|
headers |
Optional[Dict[str, Any]]
|
Headers to send with the request |
None
|
retry_response_codes |
Optional[List[int]]
|
List of response codes to raise a ProviderError. on. Defaults to 500 range |
None
|
Returns:
Name | Type | Description |
---|---|---|
response |
Response
|
|
Raises:
Type | Description |
---|---|
ProviderError
|
If the response code is in the retry_response_codes list |
HTTPError
|
If the response code is not in the retry_response_codes list and the request fails |
Source code in camply/providers/base_provider.py
make_http_request_retry(url, method='GET', data=None, headers=None, retry_response_codes=None)
#
Make an HTTP Request with Exponential Backoff
This method will retry the request with exponential backoff if the request fails. By default, it will only ignore 500 range status codes, but this can be overridden.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
url |
str
|
URL to make the request to |
required |
method |
str
|
HTTP Method to use. Defaults to GET |
'GET'
|
data |
Optional[Union[Dict[str, Any], str]]
|
Data to send with the request |
None
|
headers |
Optional[Dict[str, Any]]
|
Headers to send with the request |
None
|
retry_response_codes |
Optional[List[int]]
|
List of response codes to retry on. Defaults to 500 range |
None
|
Returns:
Name | Type | Description |
---|---|---|
response |
Response
|
|
Source code in camply/providers/base_provider.py
FairfaxCountyParks
#
Bases: UseDirectProvider
Fairfax County Parks
Source code in camply/providers/usedirect/variations.py
FloridaStateParks
#
Bases: UseDirectProvider
Florida State Parks
Source code in camply/providers/usedirect/variations.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
MaricopaCountyParks
#
Bases: UseDirectProvider
Maricopa County Parks
Source code in camply/providers/usedirect/variations.py
MinnesotaStateParks
#
Bases: UseDirectProvider
Minnesota State Parks
Source code in camply/providers/usedirect/variations.py
MissouriStateParks
#
Bases: UseDirectProvider
Missouri State Parks
Source code in camply/providers/usedirect/variations.py
NorthernTerritory
#
Bases: UseDirectProvider
Australian NorthernTerritory
Source code in camply/providers/usedirect/variations.py
OhioStateParks
#
OregonMetro
#
Bases: UseDirectProvider
Oregon Metro Parks
Source code in camply/providers/usedirect/variations.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 |
|
RecreationDotGovDailyTicket
#
Bases: RecreationDotGovDailyMixin
, RecreationDotGovTicket
RecreationDotGovTicket: Daily
Daily MixIn for Tickets
RecreationDotGovDailyTimedEntry
#
Bases: RecreationDotGovDailyMixin
, RecreationDotGovTimedEntry
RecreationDotGovTimedEntry: Daily
Daily MixIn for Tours
RecreationDotGovTicket
#
Bases: RecreationDotGovTours
RecreationDotGovTicket
Tickets for Tours
Source code in camply/providers/recreation_dot_gov/recdotgov_tours.py
RecreationDotGovTimedEntry
#
Bases: RecreationDotGovTours
RecreationDotGovTimedEntry
Timed Entries
Source code in camply/providers/recreation_dot_gov/recdotgov_tours.py
ReserveCalifornia
#
VirginiaStateParks
#
Bases: UseDirectProvider
Virginia State Parks
Source code in camply/providers/usedirect/variations.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
|
|