diff --git a/README.md b/README.md index 2f3651a..37d0e20 100644 --- a/README.md +++ b/README.md @@ -98,7 +98,7 @@ For more control over token storage: def getMyToken(): # Retrieve token from your custom storage (database, file, etc.) return { - "access_token": "***", + "access_token": "your_token_here", "access_token_timeout": 9999999999 # Unix timestamp } @@ -372,14 +372,6 @@ API.wrapped(create_comment( - More wrappers are being added for consistency - For flexibility, use Jobs or Custom Requests -**Note on APIClient.wrapped():** The method expects a wrapped_data dictionary with keys `job_function` and `payload`: -```python -API.wrapped({ - "job_function": "post.create", - "payload": {...} -}) -``` - ### Using `run_job` vs. Wrappers | Feature | `run_job` | Wrappers |