(self, qql)
| 121 | return res |
| 122 | |
| 123 | def get_repos(self, qql): |
| 124 | cursor = '' |
| 125 | repos = [] |
| 126 | for i in range(0, self.bulk_count): |
| 127 | repos_gql = get_graphql_data(qql % cursor) |
| 128 | cursor = ', after:"' + repos_gql["data"]["search"]["pageInfo"]["endCursor"] + '"' |
| 129 | repos += self.parse_gql_result(repos_gql) |
| 130 | return repos |
| 131 | |
| 132 | def get_all_repos(self): |
| 133 | # get all repos of most stars and forks, and different languages |
no test coverage detected