を使用してHTMLファイルから画像を抽出するので、基本的にHTMLファイルを解析し、すべての画像を見つけて別のフォルダに保存するスクリプトを作成しようとしています。あなたのコンピュータにpython3をインストールしたときに付属するライブラリを使って、これをどうすれば実現できますか?私は現在、このスクリプトを持っています。python標準ライブラリ
date = datetime.date.today()
backup_path = os.path.join(str(date), language)
if not os.path.exists(backup_path):
os.makedirs(backup_path)
log = []
endpoint = zendesk + '/api/v2/help_center/en-us/articles.json'
while endpoint:
response = requests.get(endpoint, auth=credentials)
if response.status_code != 200:
print('Failed to retrieve articles with error {}'.format(response.status_code))
exit()
data = response.json()
for article in data['articles']:
if article['body'] is None:
continue
title = '<h1>' + article['title'] + '</h1>'
filename = '{id}.html'.format(id=article['id'])
with open(os.path.join(backup_path, filename), mode='w', encoding='utf-8') as f:
f.write(title + '\n' + article['body'])
print('{id} copied!'.format(id=article['id']))
log.append((filename, article['title'], article['author_id']))
endpoint = data['next_page']
これは基本的にZendeskに関する私たちの記事をバックアップするzendeskフォーラムで見つかったスクリプトです。
美しいスープを使ってみませんか? – JakeD
あなたは完全なコードを共有しているようには見えませんが、[urllib](https://docs.python.org/3/library/urllib.request.html)でリクエストを交換したいと思います#module-urllib.request) – etemple1