You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Accepts the file ID and fetches the metadata as per the [API documentation here](https://docs.imagekit.io/api-reference/metadata-api/get-image-metadata-for-uploaded-media-files)
455
455
```python
456
-
imagekit.get_metadata(file_id)
456
+
imagekit.get_file_metadata(file_id)
457
457
```
458
458
459
459
460
460
**3. Get File Metadata from remote url**
461
461
Accepts the remote file url and fetches the metadata as per the [API documentation here](https://docs.imagekit.io/api-reference/metadata-api/get-image-metadata-from-remote-url)
Programmatically issue a cache clear request as clear request as pet the [API documentation here](https://docs.imagekit.io/api-reference/media-api/purge-cache).
497
497
Accepts the full URL of the file for which the cache has to be cleared.
498
498
```python
499
-
imagekit.purge_cache(full_url)
499
+
imagekit.purge_file_cache(full_url)
500
500
```
501
501
**7. Purge Cache Status**
502
502
503
503
Get the purge cache request status using the request ID returned when a purge cache request gets submitted as pet the
0 commit comments