Metadata-Version: 2.1
Name: freetutorials-dl
Version: 1.1
Summary: Downloader for freetutorials.ca
Home-page: https://github.com/TimilsinaBimal/freetutorials-dl
Author: Timilsina Bimal
License: MIT
Download-URL: https://github.com/TimilsinaBimal/freetutorials-dl/archive/freetutorials-dlv1.0.tar.gz
Keywords: freetutorialsdl,downloader,freetutorials,fts-dl
Platform: UNKNOWN
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: License :: Public Domain
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Requires-Dist: youtube-dl
Requires-Dist: requests
Requires-Dist: lxml
Requires-Dist: bs4
Requires-Dist: click

# freetutorials-dl

A utility to download courses/videos from freetutorials.ca by using [Youtube-DL](https://github.com/ytdl-org/youtube-dl)

<hr>

## How to use

install from pypi.org

```sh
$ sudo pip install freetutorials-dl
```

<hr>

## Instructions

The tool can be accesed via `fts-dl` command.
eg.

```sh
$ fts-dl --url https://www.freetutorials.ca/course/some-course
```

> Make sure you provide `--url` or `-u` which is required.

and it will download the whole course.

You can also provide `--output <your-path-here>` to save on your desired directory.

eg.

```sh
$ fts-dl --url https://www.freetutorials.ca/course/some-course --output ~/my_course
```

and it will save in the given path.

## Command Docs

| Flag             | Usage                                 |
| ---------------- | ------------------------------------- |
| -u <br> --url    | url of course/video from learningcrux |
| -o <br> --output | Output path                           |

#### License

-   TimilsinaBimal (MIT)

<h4>Huge thanks to <a href="https://github.com/SwapnilSoni1999/learningcrux-dl">Swapnil Soni</a></h4>


