Daniel Brennand

Results 54 comments of Daniel Brennand

Not merging for now due to issues seen in #12

Does it help a little if you provide the `count` parameter and provide the maximum supported amount of `200`? IE: `tweepy.Cursor(API.friends, count=200).items()` But no doubt using `API.friends_ids()` is far better.

I opted for using the [`Cursor` and `api.friends_ids`](https://github.com/dbrennand/Final-Year-Project/blob/master/src/modules/twitter.py#L60) to get 5000 friend IDs per request. ```python ... friends_ids_list = [] for friend_id in tweepy.Cursor(api.friends_ids, screen_name=username, count=5000).items(): friends_ids_list.append(friend_id) ```

Using Ubuntu 18.04.4 LTS docker container. ```powershell docker run -it azurestacktest:latest PowerShell 7.0.2 Copyright (c) Microsoft Corporation. All rights reserved. https://aka.ms/powershell Type 'help' to get help. PS /> Import-Module AzureStack...

Hi @randomchance Would you be able post your `.gitlab-ci.yml` file as an example of how you got it working? Or did you get it working from outside a CI/CD pipeline?

I've been trying to get this working with a GitLab CI/CD pipeline but I haven't had much success at the moment. Here is my `.gitlab-ci.yml` file so far: ```yaml default:...

> Hey @dbrennand, are you using a project access token or a deploy token? > > It turns out that their nuget implementation only works with **Personal** access tokens, or...

Hi @alerickson, Was there a fix implemented for this issue? I can't seem to find the PR that referenced a fix for this? 😞 I've been experiencing this exact error...

Hmmm, it doesn't seem to be waiting the time I specify. 🤔

In the code you linked, I cannot see where the -OperationTimeout parameter is used.