Skip to content

Commit

Permalink
0.0.7
Browse files Browse the repository at this point in the history
  • Loading branch information
wenlong2 committed Mar 30, 2024
1 parent 785651b commit db7fbcd
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "hatchling.build"

[project]
name = "pydeed"
version = "0.0.6"
version = "0.0.7"
authors = [
{ name="Wenlong", email="wenlongtamu@gmail.com" },
]
Expand Down
1 change: 1 addition & 0 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ pip install -r requirements.txt
### Quick example

``` bash
python3 -m pydeed -h
python3 -m pydeed -j get -k Python -l California -n 5
python3 -m pydeed -j filter -e 'TS/SCI,US citizen,security clearance'
```
6 changes: 5 additions & 1 deletion src/pydeed/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,11 @@ def main(args) -> None:
if __name__ == '__main__':
pars = argparse.ArgumentParser()
pars.add_argument('-j', '--job',
help='job type:\n"get" to download recent posts from indeed.com\n"filter" to filter the downloaded posts\nExample: python3 -m pydeed -j get -k Python -l California -n 5\npython3 -m pydeed -j filter -e \'TS/SCI,US citizen,security clearance\'',
help='job type:
"get" to download recent posts from indeed.com
"filter" to filter the downloaded posts\nExample:
python3 -m pydeed -j get -k Python -l California -n 5
python3 -m pydeed -j filter -e \'TS/SCI,US citizen,security clearance\'',
required=True)
pars.add_argument('-k', '--keyword', help='job title keyword to be searched')
pars.add_argument('-l', '--location', help='job location')
Expand Down

0 comments on commit db7fbcd

Please sign in to comment.