Jared Van Bortel

Results 359 comments of Jared Van Bortel

@sldx12 Unfortunately, I can only reproduce the 404 if I intentionally mistype the name of a blog. If you copy `.tumblr.com/likes` from the error and paste it into a web...

@sldx12 Yeah, open a new issue to track this, but in the new issue please tell us if any other versions/forks/commits of tumblr-utils that you've tried _can_ back up the...

AFAIK this can happen on macOS when the version of OpenSSL linked to the system Python is too old to handle TLSv1.2. There are two ways you could work around...

This can actually occur on any platform if using old enough OpenSSL - but it is common on macOS because the system Python on older releases of OS X is...

Aside from some occasional crashes due to various exceptions (e.g. access violation, invalid TCP packets), not properly closing after you press "X" (the GUI closes but the process stays running),...

If you add `notes_info` to the API parameters, you can get a ~full~ short list of: - People who liked the post - People who reblogged the post, with a...

```python import dryscrape import re from bs4 import BeautifulSoup def get_more_link(sess, base, url): sess.visit(url) soup = BeautifulSoup(sess.body(), 'lxml') element = soup.find('a', class_='more_notes_link') if not element: return None onclick = element.get_attribute_list('onclick')[0]...

I've made a PR for this (#189).

If it's caused by a regression, I have a suspicion commit 4961a2f64a8fe17fae2afb412b4222d1202a45a2 ([script here](https://raw.githubusercontent.com/bbolli/tumblr-utils/4961a2f64a8fe17fae2afb412b4222d1202a45a2/tumblr_backup.py)) would work better for you. But chances are https://github.com/aggroskater/tumblr-utils still has better support for likes.

It's possible that this condition is failing: https://github.com/bbolli/tumblr-utils/blob/da3370c157cc40449c852240fdb2fd43cd848020/tumblr_backup.py#L223 You could try replacing that line with this more verbose code: ```python if doc.get('meta', {}).get('status', 0) != 200: sys.stderr.write('API response has non-200...