Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/binatify/dbmovie250
A spider to collect douban top250 movies.
https://github.com/binatify/dbmovie250
Last synced: 5 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 (about 7 years ago)
- Default Branch: master
- Last Pushed: 2018-01-04T06:25:47.000Z (about 7 years ago)
- Last Synced: 2024-11-13T13:54:30.110Z (2 months 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.
![screen shot 2018-01-04 at 2 20 58 pm](https://user-images.githubusercontent.com/1459834/34552164-d5ec5bf2-f15a-11e7-8591-83a75b41385d.png)### Usage
1. Use `go get github.com/binatify/dbmovie250`
2. Or [binary](https://github.com/binatify/dbmovie250/releases/tag/v0.1) release.```bash
$ dbmovie250 -hUsage 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 stringYear string
Area string
Category string
Star stringDiscription string
Poster string
Link string
}```