Python client for Ghost API v3/v4/v5/v6
Project description
EDWH Ghost Client
This Client is compatible with v3, v4, v5 and v6 of the Ghost CMS Admin and Content API's.
Installation
pip install edwh-ghost
Usage
The GhostAdmin class can be instantiated as follows:
from ghost import GhostAdmin
from dotenv import dotenv_values
config = dotenv_values(".env")
# .env can be used, but config values can also be simply hardcoded
ga = GhostAdmin(
config["GHOST_SITE"],
adminAPIKey=config["GHOST_ADMIN_KEY"],
contentAPIKey=config["GHOST_CONTENT_KEY"],
api_version="v4", # works like a train
)
print(ga.site())
If no admin API key is available, the GhostContent class can be used, which has read-only access to public endpoints.
After creating a GhostClient instance, the different Resources can be used:
from ghost.resources import *
posts: PostResource = ga.posts
# READ
multiple = posts(limit=5) # Ghost Result Set
# alias for
posts.get(limit=5) # Ghost Result Set
some_post = posts.get("some_id") # Ghost Result
for post in posts.paginate():
# iterate without limit
print(post) # Ghost Result
# UPDATE
some_post.update({...}) # response dict
# alias:
posts.update("some_id", {...}) # response dict
# bulk:
multiple.update({...}) # response dict
# DELETE
some_post.delete() # bool of success
# alias:
posts.delete("some_id") # bool of success
# bulk:
multiple.delete() # list of bools of success
# CREATE
# one:
posts.create(title="...", etc="...") # response dict
# bulk:
posts.create({...}, {...}) # list of response dicts
# some resources are read only:
authors: AuthorResource = ga.authors
authors() # Ghost Result Set
authors.delete() # error
Available Resources:
| Resource Class[^1] | Ghost Path | Method[^2] | Related Tests | Admin? | Content? |
|---|---|---|---|---|---|
| Posts | /posts | ghost.posts(), ghost.post() | test_1_posts, test_10_ghost_content, test_11_ghost_paginate | ✓ | ✓ |
| Pages | /pages | ghost.pages(), ghost.page() | test_2_pages | ✓ | ✓ |
| Authors | /authors | ghost.authors(), ghost.author() | test_4_authors | ~[^3] | ✓ |
| Tags | /tags | ghost.tags(), ghost.tag() | test_3_tags | ✓ | ✓ |
| Members | /members | ghost.members(), ghost.member() | test_9_members | ✓ | ✗ |
| Images | /images | ghost.images.upload() | test_6_images | ✓ | ✗ |
| Themes | /themes | ghost.themes.upload(), ghost.themes.activate() | test_7_themes | ✓ | ✗ |
| Site | /site | ghost.site() | test_8_site_and_settings | ✓ | ✗ |
| Settings | /settings | ghost.settings() | test_8_site_and_settings | ~[^3] | ✓ |
| Users | /users | ghost.user(), ghost.users() | test_12_users, test_13_users_content | ✓ | ✗ |
[^1]: these classes live in ghost.resources
[^2]: where ghost is an instance of a GhostClient subclass (GhostContent or GhostAdmin)
[^3]: Content APIs are also accessible through the GhostAdmin client, they are however read-only
Unavailable Resources:
| Resource Name | Ghost Path | Admin? | Content? | Reason |
|---|---|---|---|---|
| Tiers | /tiers | ✓ | ✓ | Testing Failed |
| Offers | /offers | ✓ | ✗ | Testing Failed |
| Webhooks | /webhooks | ✓ | ✗ | TODO |
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
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 edwh_ghost-0.2.3.tar.gz.
File metadata
- Download URL: edwh_ghost-0.2.3.tar.gz
- Upload date:
- Size: 78.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.9.11 {"installer":{"name":"uv","version":"0.9.11"},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Linux Mint","version":"22.2","id":"zara","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2711c54522c638d79e20ec62d84d7f221d1fd5fe824d60e8f50c026720a9d266
|
|
| MD5 |
7ebc767cbf712f15215b09def07cd090
|
|
| BLAKE2b-256 |
2129ed72d8b26b18f2a7da5a6f277e570402f7281e70a6585c25d54f33ae7c58
|
File details
Details for the file edwh_ghost-0.2.3-py3-none-any.whl.
File metadata
- Download URL: edwh_ghost-0.2.3-py3-none-any.whl
- Upload date:
- Size: 14.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.9.11 {"installer":{"name":"uv","version":"0.9.11"},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Linux Mint","version":"22.2","id":"zara","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
835b4b58af4340aaa57521dc89445c5bc9d6f0c3c8d6027d4b769cb84b210245
|
|
| MD5 |
e68ab3cabf7dd471da525970077a106b
|
|
| BLAKE2b-256 |
676eeaff94a2587c192150f98a8fe7963c074f9733bf1c4467d8f375f7634018
|