-
Notifications
You must be signed in to change notification settings - Fork 60
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
my.media.youtube returning [] #113
Comments
Thanks for the details!
just fyi, this would be the same as
yeah, that's expected, since Regarding the actual problem: hmm. My hunch would be that maybe there is some issue with the path within the zip archive on Windows? i.e this bit Lines 21 to 25 in 8abe665
Can you put a breakpoint there, or a |
Yup, those returned Bleh, can't believe I missed that! 🙈 |
oh wow.. I checked mine and it's definitely |
Btw, this is fixed in seanbreckenridge/google_takeout_parser So hopefully once we switch HPI to use it, we can close the issue! |
- fallback on the old logic if google_takeout_parser isn't available - move to my.youtube.takeout (possibly mixing in other sources later) - keep my.media.youtube, but issue deprecation warning currently used in orger etc, so doesn't hurt to keep - also fixes #113
- fallback on the old logic if google_takeout_parser isn't available - move to my.youtube.takeout (possibly mixing in other sources later) - keep my.media.youtube, but issue deprecation warning currently used in orger etc, so doesn't hurt to keep - also fixes #113
So I've set up HPI on Windows WSL2 Ubuntu 20.04.
But for the life of me I can't seem to get my.media.youtube to work
python3 -c 'import my.media.youtube as yt; print(yt.watched())'
Just returns
[]
Also:
python3 -c 'import my.media.youtube as yt; print(yt.stats())'
{'watched': {'count': 0, 'warning': 'THE ITERABLE RETURNED NO DATA'}}
python3 -c 'import my.google.takeout.paths as tk; print(tk.get_last_takeout())'
does return the takeout zip file.And that file does have \Takeout\My Activity\YouTube\My Activity.html
hpi doctor my.google.takeout.paths
Comes back all green
but
hpi modules --all
lists[disabled: marked explicitly (via __NOT_HPI_MODULE__)]
formy.google.takeout.paths
I'm not sure where to go from here!
Any ideas what I could try next? 😎
The text was updated successfully, but these errors were encountered: