# Events Store Examples (/sdks/python/how-to/events-store)



Persistent pub/sub with replay, consumer groups, and time-based subscriptions.

[Events Store getting started →](/learn/events-store/getting-started)

<Cards>
  <Card title="Persistent Pub/Sub" href="/sdks/python/tutorials/persistent-pubsub">
    Publish and subscribe with message persistence
  </Card>

  <Card title="Cancel Subscription" href="/sdks/python/how-to/events-store/cancel-subscription">
    Unsubscribe from an events store channel
  </Card>

  <Card title="Consumer Group" href="/sdks/python/how-to/events-store/consumer-group">
    Load-balance persistent events across subscribers
  </Card>

  <Card title="Replay from Sequence" href="/sdks/python/how-to/events-store/replay-from-sequence">
    Replay events starting from a specific sequence number
  </Card>

  <Card title="Replay from Time" href="/sdks/python/how-to/events-store/replay-from-time">
    Replay events starting from a specific timestamp
  </Card>

  <Card title="Start at Time Delta" href="/sdks/python/how-to/events-store/start-at-time-delta">
    Subscribe starting from a relative time offset
  </Card>

  <Card title="Start from First" href="/sdks/python/how-to/events-store/start-from-first">
    Subscribe and replay all events from the beginning
  </Card>

  <Card title="Start from Last" href="/sdks/python/how-to/events-store/start-from-last">
    Subscribe starting from the most recent event
  </Card>

  <Card title="Start New Only" href="/sdks/python/how-to/events-store/start-new-only">
    Subscribe to new events only, skip history
  </Card>

  <Card title="Stream Send" href="/sdks/python/how-to/events-store/stream-send">
    High-throughput persistent event publishing
  </Card>
</Cards>
