[TIP] repository 검색 필터 적용하기 :: 행복한 프로그래머

posted by 쁘로그램어 2018. 1. 23. 08:43

github에서 repository를 검색하는 방법이다.

가장 인기 있는 프로젝트를 다양한 필터 조건에 따라 검색이 가능하다.

## Search by language

검색어 language:python


## Search by filename

검색어 filename:split.py


## Search based on the number of forks

검색어 forks:>10000


## Search based on the number of stars a repository has

검색어 http stars:>10000


## Search based on when a repository was created or last updated

검색어 created:<2011-01-01

검색어 pushed:>2017-01


## Example

ex1) http2 language:Python

ex2) json created:>2012-01-01 stars:>10 forks:>10 language:Python


## Reference

https://github.com/search/advanced

https://help.github.com/articles/searching-code/

https://help.github.com/articles/about-searching-on-github/