-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add playlist report types and fix broken ones
Numerous changes include: - Modifying the secrets home path - Fixing verification constants - Making the verifier check sort options
- Loading branch information
Showing
6 changed files
with
436 additions
and
87 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 |
---|---|---|
@@ -1,9 +1,4 @@ | ||
import os | ||
from pathlib import Path | ||
|
||
if os.name == "nt": | ||
TOKEN_STORE = Path("%USERPROFILE%/.analytix") | ||
else: | ||
TOKEN_STORE = Path(f"/home/{os.environ['USER']}/.analytix") | ||
|
||
TOKEN_STORE = Path().home() / ".analytix" | ||
YT_ANALYTICS_TOKEN = "youtube-analytics-token.json" |
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
Oops, something went wrong.