Add your description here
Project description
Bloggerkit
A Python toolkit for interacting with the Google Blogger API.
Installation
pip install bloggerkit
Usage
from bloggerkit import BloggerClient
# Replace with your credentials
API_KEY = "YOUR_API_KEY"
BLOG_ID = "YOUR_BLOG_ID"
client = BloggerClient(API_KEY, BLOG_ID)
posts = client.list_posts()
if posts and "items" in posts:
for post in posts["items"]:
print(post['title'], post['url'])
new_post = client.create_post("My New Post", "Content of my new post.")
if new_post:
print(f"New post created: {new_post['url']}")
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
bloggerkit-0.1.0.tar.gz
(2.1 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file bloggerkit-0.1.0.tar.gz.
File metadata
- Download URL: bloggerkit-0.1.0.tar.gz
- Upload date:
- Size: 2.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.6.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8501e652e0cf36f4db285bc617f096d13814530d760bf42fe3aeceeeb48c39ee
|
|
| MD5 |
6f9c8770c127a1a35d6841ef385822ee
|
|
| BLAKE2b-256 |
5330b324d133424ac9cac485fc7a2f176186ea1d96cd9e080cf488853f3f8d3e
|
File details
Details for the file bloggerkit-0.1.0-py3-none-any.whl.
File metadata
- Download URL: bloggerkit-0.1.0-py3-none-any.whl
- Upload date:
- Size: 4.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.6.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8689dfd75d8ac04827d3dbd6b81d366330bc9b7672933467e36f6cb51ad4cc0f
|
|
| MD5 |
51f38490a717b3d7ba99e7997caa538e
|
|
| BLAKE2b-256 |
a4952d7d1149ad3131179b3a40f452902a2cf9833bfe9db2808cada84e14205f
|