https://github.com/binatify/dbmovie250
A spider to collect douban top250 movies.
https://github.com/binatify/dbmovie250
Last synced: 22 days ago
JSON representation
A spider to collect douban top250 movies.
- Host: GitHub
- URL: https://github.com/binatify/dbmovie250
- Owner: binatify
- Created: 2018-01-04T02:37:31.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2018-01-04T06:25:47.000Z (over 8 years ago)
- Last Synced: 2025-01-12T23:09:04.134Z (over 1 year ago)
- Language: Go
- Homepage:
- Size: 2.93 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# dbmovie250
A spider to collect douban top250 movies.

### Usage
1. Use `go get github.com/binatify/dbmovie250`
2. Or [binary](https://github.com/binatify/dbmovie250/releases/tag/v0.1) release.
```bash
$ dbmovie250 -h
Usage of dbmovie250:
-csv string
the data saved csv name. (default "./data.csv")
```
when you run `dbmovie250 -csv xxx`, you will get data in file `xxx.csv`.
### Data struct
``` golang
type Movie struct {
Name string
Director string
Starring string
Year string
Area string
Category string
Star string
Discription string
Poster string
Link string
}
```