Python | 00:07というわけで、AtomPubなるものを利用して。はてなダイアリへ投稿するためのクラスを書いてみました。Pythonでの初クラス作成です。まだかなり改善の余地がありそうですが。。。ベースとなるAtomClientクラスはこちらを参考にというか、ほぼそのまま使用させて頂きました。 #!/usr/bin/python # -*- coding: utf-8 -*- # atom.py import random import datetime, time import base64, hashlib import httplib class AtomClient: def __init__(self, endpoint, userid, password): self.credentials(endpoint, userid, password) self.usage