Skip to main content

Marriott CDN Team Fastpurge POC script

Project description

akamai-purge-cache : interactive python script

Python Script

from fastpurge import FastPurgeClient
import click

@click.command()
@click.option('paths', '--path', '-p', multiple=True, help="A single URL to Purge (This option is repeatable for additional URLs)")
@click.option('--dryrun', '-d', is_flag=True, help="Just print the command and args that will be run and exit")

def mgpurge(paths: list[str], dryrun: bool):
  # Omit credentials to read from ~/.edgerc
  client = FastPurgeClient()
  if dryrun:
    print('These paths will be purged:')
    for path in paths:
      click.echo(path)
  else:

    # Start purge of some URLs
    mgpurge = client.purge_by_url(paths)
    # purge is a Future, if we want to ensure purge completed
    # we can block on the result:
    result = mgpurge.result()
    # print("Purge completed:")
    print("Purge completed:", result)
  
if __name__ == "__main__":
  mgpurge()

TO-DO

  • Document local installation
  • Document local run
  • Document building
  • Document publishing to PY-Pi
  • Document remote installation and usage

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

akamai_purge_cache-1.0.0.tar.gz (1.6 kB view hashes)

Uploaded Source

Built Distribution

akamai_purge_cache-1.0.0-py3-none-any.whl (2.7 kB view hashes)

Uploaded Python 3

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