You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Using a Github token is strongly recommended for avoiding throttling. If you don't already have a token for the [GitHub API](https://developer.github.com/v3/), see [Creating a personal access token for the command line](https://help.github.com/articles/creating-a-personal-access-token-for-the-command-line/).
@@ -42,18 +42,18 @@ Below are the steps to run commands:
42
42
43
43
#### To generate csv files:
44
44
45
-
`fetch.py` script searches Github for a given keyword, and creates the dataset explained in *The Dataset* section.
45
+
The `fetch.py` script searches Github for a given keyword and creates the dataset explained in *The Dataset* section.
46
46
47
-
Run the script: `python fetch.py KEYWORD`
48
-
`KEYWORD` is repository's name for searching
47
+
Run the script: `python fetch.py KEYWORD`.
48
+
`KEYWORD` is the search term to use for searching repository names.
49
49
50
50
#### To generate input_defintion and json_input files:
51
51
52
-
`build_definition.py` script build JSON format input-defintion, using `language.txt` to map language string to id
52
+
The `build_definition.py` script builds a JSON formatted input-defintion. It uses `language.txt` to map a language string to an id.
53
53
54
-
Run the script: `python build_definition.py <input_definition.json>`
55
-
If `input_definitioon.json` isn't set, print out JSON input-definition
54
+
Run the script: `python build_definition.py <input_definition.json>`.
55
+
If `input_definition.json` isn't set, print out JSON input-definition.
56
56
57
-
`build_json_input.json` script searches Github for a given keyword then create json data set to import data that adheres to that `input_definition.json`
58
-
Run the script: `python build_json_input.py <reository_name>`
57
+
`build_json_input.py` script searches Github for a given keyword and creates a JSON data set that adheres to `input_definition.json`.
58
+
Run the script: `python build_json_input.py <reository_name>`.
0 commit comments