meetog
meetog
I did it but than again another error comes `AttributeError: 'str' object has no attribute 'show_result'`
I used the later one that is `show_result_pyplot(model, img, result, score_thr=0.5)`. No error came but it just displays input image. No cells or table are detected
is there any workaround for this? I mean without using delegations?
@shcheklein hey, is there any solution for that? I have a website in production and the working of some features of that website depends on the Drive API. This error...
Yes, I think it might be. Both the condition defines my app: `External` & `Testing`. Is there a roundabout for this?
@shcheklein No LocalWebServerAuth won't work for me as I am using the app for the production. What is `from oauth2client.service_account import ServiceAccountCredentials`. What is the use of service account used...
@shcheklein I have created service account. Do I need to rename the JSON file to `client_secrets.json`? Also I don't fully understand, how to use the reference you sent me. `def...
@shcheklein thank you for these another method but still it wont work for me as to enable [https://developers.google.com/admin-sdk/directory/v1/guides/delegation](url) I need a google administrative account to give access of all the...
```python from pydrive2.auth import GoogleAuth from pydrive2.drive import GoogleDrive from pydrive2.fs import spec from oauth2client.service_account import ServiceAccountCredentials scope = ["https://www.googleapis.com/auth/drive"] gauth = GoogleAuth() gauth.auth_method = 'service' gauth.credentials = ServiceAccountCredentials.from_json_keyfile_name('client_secrets.json', scope)...
I have already shared all the folders in the drive to the service account. I think it might work. I am skeptical here because with the normal method `OAuth2 credentials`...