https://github.com/link89/auto-assist
https://github.com/link89/auto-assist
Last synced: about 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/link89/auto-assist
- Owner: link89
- Created: 2023-09-14T07:40:54.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2025-03-17T00:51:29.000Z (over 1 year ago)
- Last Synced: 2025-04-15T19:27:54.091Z (about 1 year ago)
- Language: Jupyter Notebook
- Size: 1.14 MB
- Stars: 3
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```