1 parent 04eaca4 commit d3876f0Copy full SHA for d3876f0
1 file changed
README.rst
@@ -106,6 +106,16 @@ List a Projects Issues
106
>>> github.issues.list("ask/chishop", state="open")
107
>>> github.issues.list("ask/chishop", state="closed")
108
109
+Search a Projects Issues
110
+------------------------
111
+
112
+ >>> issues = github.issues.search("ask/chishop", "version twice")
113
+ >>> issues[0].title
114
+ 'Upload hangs on attempted second file.'
115
116
+ >>> github.issues.search("ask/chishop", term="authorization",
117
+ ... state="closed")
118
119
View an Issue
120
-------------
121
0 commit comments