├── .gitattributes ├── .gitignore ├── changelog.md ├── config.nims ├── examples └── web │ ├── buildLib.nims │ ├── index.html │ ├── readme.md │ ├── script │ ├── main.js │ ├── main_js.nim │ └── ytextractor.js │ └── style │ └── main.css ├── licence ├── readme.md ├── reqs └── info.nim ├── src ├── ytextractor.nim └── ytextractor │ ├── captions.nim │ ├── channel.nim │ ├── core │ ├── cookies.nim │ ├── core.nim │ └── types.nim │ ├── exports.nim │ └── video.nim ├── tests ├── config.nims ├── testChannel.nim └── testVideo.nim └── ytextractor.nimble /.gitattributes: -------------------------------------------------------------------------------- 1 | examples/web/*.js linguist-generated 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisago/ytextractor/HEAD/.gitignore -------------------------------------------------------------------------------- /changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisago/ytextractor/HEAD/changelog.md -------------------------------------------------------------------------------- /config.nims: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisago/ytextractor/HEAD/config.nims -------------------------------------------------------------------------------- /examples/web/buildLib.nims: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisago/ytextractor/HEAD/examples/web/buildLib.nims -------------------------------------------------------------------------------- /examples/web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisago/ytextractor/HEAD/examples/web/index.html -------------------------------------------------------------------------------- /examples/web/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisago/ytextractor/HEAD/examples/web/readme.md -------------------------------------------------------------------------------- /examples/web/script/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisago/ytextractor/HEAD/examples/web/script/main.js -------------------------------------------------------------------------------- /examples/web/script/main_js.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisago/ytextractor/HEAD/examples/web/script/main_js.nim -------------------------------------------------------------------------------- /examples/web/script/ytextractor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisago/ytextractor/HEAD/examples/web/script/ytextractor.js -------------------------------------------------------------------------------- /examples/web/style/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisago/ytextractor/HEAD/examples/web/style/main.css -------------------------------------------------------------------------------- /licence: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisago/ytextractor/HEAD/licence -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisago/ytextractor/HEAD/readme.md -------------------------------------------------------------------------------- /reqs/info.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisago/ytextractor/HEAD/reqs/info.nim -------------------------------------------------------------------------------- /src/ytextractor.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisago/ytextractor/HEAD/src/ytextractor.nim -------------------------------------------------------------------------------- /src/ytextractor/captions.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisago/ytextractor/HEAD/src/ytextractor/captions.nim -------------------------------------------------------------------------------- /src/ytextractor/channel.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisago/ytextractor/HEAD/src/ytextractor/channel.nim -------------------------------------------------------------------------------- /src/ytextractor/core/cookies.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisago/ytextractor/HEAD/src/ytextractor/core/cookies.nim -------------------------------------------------------------------------------- /src/ytextractor/core/core.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisago/ytextractor/HEAD/src/ytextractor/core/core.nim -------------------------------------------------------------------------------- /src/ytextractor/core/types.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisago/ytextractor/HEAD/src/ytextractor/core/types.nim -------------------------------------------------------------------------------- /src/ytextractor/exports.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisago/ytextractor/HEAD/src/ytextractor/exports.nim -------------------------------------------------------------------------------- /src/ytextractor/video.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisago/ytextractor/HEAD/src/ytextractor/video.nim -------------------------------------------------------------------------------- /tests/config.nims: -------------------------------------------------------------------------------- 1 | switch("path", "$projectDir/../src") -------------------------------------------------------------------------------- /tests/testChannel.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisago/ytextractor/HEAD/tests/testChannel.nim -------------------------------------------------------------------------------- /tests/testVideo.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisago/ytextractor/HEAD/tests/testVideo.nim -------------------------------------------------------------------------------- /ytextractor.nimble: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisago/ytextractor/HEAD/ytextractor.nimble --------------------------------------------------------------------------------