https://github.com/mitakeck/oreillyfreebook
📚 O'Reilly Free Ebooks Downloader (unofficial)
https://github.com/mitakeck/oreillyfreebook
ebook epub go mobi oreilly pdf
Last synced: 5 months ago
JSON representation
📚 O'Reilly Free Ebooks Downloader (unofficial)
- Host: GitHub
- URL: https://github.com/mitakeck/oreillyfreebook
- Owner: mitakeck
- License: mit
- Created: 2017-02-19T14:10:16.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2017-03-31T16:25:33.000Z (about 9 years ago)
- Last Synced: 2024-06-20T12:51:53.277Z (almost 2 years ago)
- Topics: ebook, epub, go, mobi, oreilly, pdf
- Language: Go
- Homepage:
- Size: 2.03 MB
- Stars: 9
- Watchers: 2
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# oreillyfreebook
[](https://circleci.com/gh/mitakeck/oreillyfreebook/tree/master) [](https://goreportcard.com/report/github.com/mitakeck/oreillyfreebook) [](https://github.com/mitakeck/oreillyfreebook/blob/master/LICENSE)
O'Reilly Free Ebook Downloader
## Install
### From Homebrew
```
$ brew tap mitakeck/oreillyfreebook
$ brew install oreillyfreebook
```
### From binary
- Download from [here](https://github.com/mitakeck/oreillyfreebook/releases/latest).
```
$ chmod +x oreillyfreebook_*
$ mv oreillyfreebook_* /usr/loca/bin/oreillyfreebook
```
### From source code
```
$ go get github.com/mitakeck/oreillyfreebook
$ cd $GOPATH/src/github.com/mitakeck/oreillyfreebook
$ go install
```
## Usage
[](https://asciinema.org/a/4y4udfbh4lf26jbfxzown0zkz)
```
$ oreillyfreebook -d directory [-f format] [-c category] [-s search-word]
```
```
options
-d directory Specify the directory to save
-f format Specify the ebook format to download; the default is "pdf"
"pdf", "mobi", "epub"
-c category Specify the ebook category to download;
if not specified, all categories will be download
"business", "design", "iot", "data", "programming", "security", "web-platform", "webops"
-s search-word Specify the search word for ebook
```
```
$ # ex) download all free ebook
$ oreillyfreebook -d files
Download : files/2016-data-science-salary-survey.pdf
Download : files/business-models-for-the-data-economy.pdf
Download : files/embedding-analytics-in-modern-applications.pdf
Download : files/mapping-big-data.pdf
Download : files/data-science-microsoft-azure-ml-python.pdf
...
```
```
$ # ex) download iot category
$ oreillyfreebook -d files -c iot
Download : files/ambient-computing.pdf
Download : files/governing-the-iot.pdf
Download : files/creating-functional-teams-for-iot.pdf
Download : files/iot-opportunities-challenges.pdf
...
```