Moving article to another blog using python api

I’d like to use the Shopify python api to move ~1500 articles to different blogs. How can I do this?

I tried to move an article like this, but it did not work:

assert isinstance(a, shopify.resources.article.Article)
assert isinstance(b, shopify.resources.blog.Blog)
a.blog_id = b.id
a.save() # This failed and returned False