Skip to content

Commit 29e9df9

Browse files
authored
Update README.md (#29)
2 parents ae67457 + 7425cf2 commit 29e9df9

3 files changed

Lines changed: 14 additions & 14 deletions

File tree

README.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -60,13 +60,13 @@ Queries the code index and returns at most 100 results.
6060

6161
### Code Search Without Filters
6262

63-
#### CLI
63+
#### Command-Line Interface
6464

6565
```commandline
6666
searchcode "import module"
6767
```
6868

69-
#### SDK
69+
#### In Code
7070

7171
```python
7272
from pprint import pprint
@@ -82,13 +82,13 @@ pprint(search)
8282

8383
### Filter by Language (Java and JavaScript)
8484

85-
#### CLI
85+
#### Command-Line Interface
8686

8787
````commandline
8888
searchcode "import module" --languages java,javascript
8989
````
9090

91-
#### SDK
91+
#### In Code
9292

9393
```python
9494
from searchcode import Searchcode
@@ -104,13 +104,13 @@ ___
104104

105105
### Filter by Source (BitBucket and CodePlex)
106106

107-
#### CLI
107+
#### Command-Line Interface
108108

109109
```commandline
110110
searchcode "import module" --sources bitbucket,codeplex
111111
```
112112

113-
#### SDK
113+
#### In Code
114114

115115
```python
116116
from searchcode import Searchcode
@@ -126,13 +126,13 @@ ___
126126

127127
### Filter by Lines of Code (Between 500 and 1000)
128128

129-
#### CLI
129+
#### Command-Line Interface
130130

131131
```commandline
132132
searchcode "import module" --lines-of-code-gt 500 --lines-of-code-lt 1000
133133
```
134134

135-
#### SDK
135+
#### In Code
136136

137137
```python
138138

@@ -149,13 +149,13 @@ ___
149149

150150
### With Callback Function (JSONP only)
151151

152-
#### CLI
152+
#### Command-Line Interface
153153

154154
```commandline
155155
searchcode "import module" --callback myCallback
156156
```
157157

158-
#### SDK
158+
#### In Code
159159

160160
```python
161161
from searchcode import Searchcode
@@ -204,13 +204,13 @@ ___
204204

205205
Returns the raw data from a code file given the code id which can be found as the `id` in a code search result.
206206

207-
#### CLI
207+
#### Command-Line Interface
208208

209209
```commandline
210210
searchode code 4061576
211211
```
212212

213-
#### SDK
213+
#### In Code
214214

215215
#### Params
216216

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "searchcode"
3-
version = "0.4.1"
3+
version = "0.4.2"
44
description = "Simple, comprehensive code search."
55
authors = ["Ritchie Mwewa <rly0nheart@duck.com>"]
66
license = "GPLv3+"

searchcode/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
from .api import Searchcode
1919

2020
__pkg__ = "searchcode"
21-
__version__ = "0.4.1"
21+
__version__ = "0.4.2"
2222
__author__ = "Ritchie Mwewa"
2323

2424

0 commit comments

Comments
 (0)