-
-
Notifications
You must be signed in to change notification settings - Fork 98
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
BugFix: Campsite Searching in YAML (#59)
* --campsites -> YAML * Sphinx Documentation Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com>
- Loading branch information
1 parent
7ad7878
commit defb4b7
Showing
7 changed files
with
50 additions
and
34 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,5 +2,5 @@ | |
camply __version__ file | ||
""" | ||
|
||
__version__ = "0.2.1" | ||
__version__ = "0.2.2" | ||
__camply__ = "camply" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,15 @@ | ||
provider: RecreationDotGov # RecreationDotGov IF NOT PROVIDED | ||
recreation_area: # (LIST OR SINGLE ENTRY) | ||
- 2991 # Yosemite National Park, CA (All Campgrounds) | ||
- 1074 # Sierra National Forest, CA (All Campgrounds) | ||
campgrounds: null # OVERRIDES RECREATION AREA (LIST OR SINGLE ENTRY) | ||
- 2991 # Yosemite National Park, CA (All Campgrounds) | ||
- 1074 # Sierra National Forest, CA (All Campgrounds) | ||
campgrounds: null # ENTIRE FIELD CAN BE OMITTED IF NOT USED - (LIST OR SINGLE ENTRY) | ||
campsites: null # OVERRIDES CAMPGROUNDS / RECREATION AREA - (LIST OR SINGLE ENTRY) | ||
start_date: 2022-09-12 # YYYY-MM-DD | ||
end_date: 2022-09-13 # YYYY-MM-DD | ||
weekends: false # FALSE BY DEFAULT | ||
nights: 1 # 1 BY DEFAULT | ||
continuous: false # DEFAULTS TO TRUE | ||
continuous: true # DEFAULTS TO TRUE | ||
polling_interval: 5 # DEFAULTS TO 10 , CAN'T BE LESS THAN 5 | ||
notifications: email # (silent, email, pushover, pushbullet), DEFAULTS TO `silent`. LIST OR SINGLE ENTRY | ||
notifications: email # (silent, email, pushover, pushbullet), DEFAULTS TO `silent` | ||
search_forever: true # FALSE BY DEFAULT | ||
notify_first_try: false # FALSE BY DEFAULT |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
provider: RecreationDotGov # RecreationDotGov IF NOT PROVIDED | ||
recreation_area: # (LIST OR SINGLE ENTRY) | ||
- 2907 # ROCKY MOUNTAIN NATIONAL PARK | ||
campsites: | ||
- 40107 | ||
- 177 | ||
start_date: 2022-09-10 # YYYY-MM-DD | ||
end_date: 2022-09-11 # YYYY-MM-DD | ||
weekends: false # FALSE BY DEFAULT | ||
continuous: false # DEFAULTS TO TRUE |