あれく
あれく
Can you let me know what sort of command you were running (downloading fanclub(s), post, URL list, etc)?
You'll probably need to do a serious rewrite. Twitter removed pretty much all of the v1.1 API endpoints you're relying on, with the exception of the home timeline which inexplicably...
I'll be taking a look at merging this in the next few days hopefully.
This should be mostly ready now. One thing I want to square is `mark_incomplete_post` with the way we update a post to mark it completed in the DB now. It's...
Also I'm not sure about: ``` if self.db.conn and db_post and db_post["download_complete"]: self.output("Post {} already downloaded. Skipping...\n".format(post_id)) ``` This seems problematic if new post contents are added later.
> This seems problematic if new post contents are added later. I changed this check to be after retrieving the initial post JSON so we can verify if `converted_at` appears...
`if self.db.conn` allows checking if a DB is actually defined, because `self.db` is still an object even with no path provided. I would prefer keeping these checks to ensure any...
My preference right now would probably be to remove the `url` table and that check. If we limit to S3 URLs then we would only get the benefit of that...
Right, let's keep the URL checks in some manner then. Everything from `cc.fantia.jp` and `c.fantia.jp` appears to be hashed so is it really true that contents can be modified without...
Got it, thanks for your detail and work on this! We'll keep things as they are currently. If it seems like the URLs are a concern we can address this...