Questions tagged [github-search]

22 questions
0
votes
1 answer

See GitHub issues created during a specific time range

I would like to view all of the GitHub issues opened during a specific time range for a single repository. For example, all issues opened during the month of December 2022. I can query for issues created after a specific date with the following…
wesk
  • 998
  • 1
  • 11
  • 15
0
votes
1 answer

Why is my GitHub code search hitting secondary rate limits?

I am searching for GitHub files containing the string "torch." Since, the search API limits searches to the first 100 results, I am searching based on file sizes as suggested here. However, I keep hitting the secondary rate limit. Could someone…
desert_ranger
  • 1,096
  • 3
  • 13
  • 26
0
votes
1 answer

Why does GitHub pagination give varying results?

If I perform a code search using the GitHub Search API and request 100 results per page, I get a varying number of results - import requests # url = "https://api.github.com/search/code?q=torch +in:file +…
desert_ranger
  • 1,096
  • 3
  • 13
  • 26
0
votes
0 answers

Why are timed out queries not being flagged as incomplete?

While using the GitHub Search API, some queries are incomplete. For instance, this one - import requests url = "https://api.github.com/search/code?q=torch +in:file + language:python&page=1&per_page=100" headers = { 'Authorization': 'Token…
desert_ranger
  • 1,096
  • 3
  • 13
  • 26
0
votes
0 answers

how to search issues in github based on release number

I want to search issues in github, based on the release number. I tried with "release:{release_no}" or "{release_no} in:release" as search filter, but none is working. Please help
test user
  • 1
  • 3
0
votes
0 answers

Github Search API: search for a file without giving the complete filename

I want to use the Github Search API to find all files that can be close to a given word. For example, if i search for https://api.github.com/search/code?q=COPY+in:file,path+repo:yvonndjamen/Endevor i will receive 6 items matching my request because…
0
votes
1 answer

Is there a way to search Github for specific text from PDF resources

Is there an easy to search for specific text in GitHub? Like the way we can search for "code" in GitHub, is there an easy way to do a search for keywords using the Github search from all the PDF files that are there in the GitHub.
Exploring
  • 2,493
  • 11
  • 56
  • 97
1
2