An open API service indexing awesome lists of open source software.

https://github.com/link89/auto-assist


https://github.com/link89/auto-assist

Last synced: about 1 year ago
JSON representation

Awesome Lists containing this project

README

          

# auto-assist

Collection of automation tools for various tasks.

## Usage

### Launch a browser
Use this to manually setup the browser before running other tasks. For example, login to websites, etc.
```bash
poetry run python -m auto_assist browser launch ./tmp/chrome
```

### Search Google Scholar by authors
```bash
cat authors.txt | poetry run python -m auto_assist gs ./tmp/chrome gs_search_by_authors --keyword chemistry
```

### Extract Google Scholar profile URLs from search result
```bash
poetry run python -m auto_assist gs ./tmp/chrome task gs_list_profile_urls gs_result.jsonl > gs_profiles.txt
```

### Crawling Google Scholar profiles from search results
```bash
cat gs_profiles.txt | poetry run python -m auto_assist task gs_explore_profiles
```

### Extract Student resume from Excel file
```bash
poetry run python -m auto_assist hunter --browser_dir ./tmp/chrome search_students targets.xlsx out/students/ --parse --limit 1
```