Skip to content

Commit df4a6dd

Browse files
committed
Update def parse
1 parent 8acab69 commit df4a6dd

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,15 +45,15 @@ Options:
4545

4646
Commands:
4747
export Generate an HTML report from the data in the database.
48-
parse Parse the Shodan JSON export file and store data in the database.
48+
parse Parse exported file from Shodan and store the data in a SQLite database.
4949
```
5050

5151
### Command : parse
5252

5353
```bash
5454
Usage: shodan2db.py parse [OPTIONS]
5555

56-
Parse the Shodan JSON export file and store data in the database.
56+
Parse exported file from Shodan and store the data in a SQLite database.
5757

5858
Options:
5959
-i, --input-file FILE JSON or JSON.GZ export file from Shodan. [required]

shodan2db.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -415,7 +415,7 @@ def cli():
415415
@click.option("--verbose", "-v", is_flag=True, help="Verbose mode.")
416416
def parse(verbose, database, input_file):
417417
"""
418-
Parse the Shodan JSON export file and store data in the database.
418+
Parse exported file from Shodan and store the data in a SQLite database.
419419
"""
420420
Shodan2DB.init_database(verbose=verbose, database=database)
421421
Shodan2DB.parser(verbose=verbose, database=database, inputfile=input_file)

0 commit comments

Comments
 (0)