For example, I want to know how to implement a project that uses Django and Stripe. So I want Github repos that uses these dependencies. I can think of two example ways to know that in this case:
- repositories that
**/urls.py
containsviews.stripe_webhook
AND**/views.py
containsfrom django
(no requirements.txt approach) - repositories that
requirements.txt
containsDjango
andstripe
(requirements.txt approach)
Either way, it need to search text content in files in repositories.
So here, how can I do something like this, using Github API, Github advanced search, or Github Graphql (, or something else)?