Skip to main content

Python client for Ghost API v3/v4/v5

Project description

EDWH Ghost Client

This Client is compatible with v3 and v4 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]

[^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
Users /users Experimental
Webhooks /webhooks TODO

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

edwh-ghost-0.1.3.tar.gz (13.5 kB view details)

Uploaded Source

Built Distribution

edwh_ghost-0.1.3-py3-none-any.whl (14.4 kB view details)

Uploaded Python 3

File details

Details for the file edwh-ghost-0.1.3.tar.gz.

File metadata

  • Download URL: edwh-ghost-0.1.3.tar.gz
  • Upload date:
  • Size: 13.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.8.10

File hashes

Hashes for edwh-ghost-0.1.3.tar.gz
Algorithm Hash digest
SHA256 6312b68fdc6f55e732f9be67d852afd8750c47b39d02f0e5f23b55d5561f00db
MD5 a195f7338bde148df17193e94f7938a0
BLAKE2b-256 4114061d20b75e42e3b74e67247b44ef7bef860a362f2eb295db4e7c61fe29f2

See more details on using hashes here.

File details

Details for the file edwh_ghost-0.1.3-py3-none-any.whl.

File metadata

  • Download URL: edwh_ghost-0.1.3-py3-none-any.whl
  • Upload date:
  • Size: 14.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.8.10

File hashes

Hashes for edwh_ghost-0.1.3-py3-none-any.whl
Algorithm Hash digest
SHA256 7b6db0c034cf3c36fa717093cdc64c9922f08cc9d4a3c41cd95aa53006ef1a07
MD5 a9f1fbc125fe7b64362e3676e4b22677
BLAKE2b-256 450246cb8cbe52cd733a47e981bd53347ec77a7d9a3812b6cc918fa44c6d2f14

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page