gtalarico / pyairtable

Python Api Client for Airtable
https://pyairtable.readthedocs.io
MIT License
765 stars 138 forks source link

Support for iterating through the audit log #330

Closed mesozoic closed 7 months ago

mesozoic commented 8 months ago

This branch allows enterprise users to iterate through audit log events with something like this:

enterprise = api.enterprise("ent...")
for page in enterprise.audit_log(sort_asc=True):
    for event in page.events:
        handle_event(event)
codecov[bot] commented 8 months ago

Codecov Report

All modified and coverable lines are covered by tests :white_check_mark:

Comparison is base (ba96d6d) 99.61% compared to head (6166fa7) 99.63%.

Additional details and impacted files ```diff @@ Coverage Diff @@ ## main #330 +/- ## ========================================== + Coverage 99.61% 99.63% +0.01% ========================================== Files 24 25 +1 Lines 1806 1894 +88 ========================================== + Hits 1799 1887 +88 Misses 7 7 ```

:umbrella: View full report in Codecov by Sentry.
:loudspeaker: Have feedback on the report? Share it here.