Skip to content

Commit

Permalink
Added EXE v1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
MSM74588 committed Aug 8, 2021
1 parent 6310455 commit ca9d084
Show file tree
Hide file tree
Showing 58 changed files with 59 additions and 0 deletions.
Binary file added __pycache__/msmyt.cpython-38.pyc
Binary file not shown.
Binary file added ms-icon-310x310.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
21 changes: 21 additions & 0 deletions msmyt(exe)/LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
MIT License

Copyright (c) [2021] [MandraSaptak Mandal]

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
1 change: 1 addition & 0 deletions msmyt(exe)/MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
include *.md LICENSE
Binary file not shown.
Binary file not shown.
Binary file not shown.
15 changes: 15 additions & 0 deletions msmyt(exe)/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# Youtube Downloader Utility

Python based Youtube Downloader Utility. 🧰
Terminal User Interface Based(TUI)

### Support
- Single Videos
- Playlists
- Channel (All videos by a specific Channel)

#### Functioning
Downloads Video from the specified link of the video to a custom directory
## Authors

-🤗 [@MandraSaptak Mandal](https://www.github.com/MSM74588)
Binary file added msmyt(exe)/base_library.zip
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added msmyt(exe)/libbz2.so.1.0
Binary file not shown.
Binary file added msmyt(exe)/libcrypto.so.1.1
Binary file not shown.
Binary file added msmyt(exe)/libexpat.so.1
Binary file not shown.
Binary file added msmyt(exe)/libffi.so.7
Binary file not shown.
Binary file added msmyt(exe)/libfreetype.so.6
Binary file not shown.
Binary file added msmyt(exe)/libimagequant.so.0
Binary file not shown.
Binary file added msmyt(exe)/libjbig.so.0
Binary file not shown.
Binary file added msmyt(exe)/libjpeg.so.8
Binary file not shown.
Binary file added msmyt(exe)/liblzma.so.5
Binary file not shown.
Binary file added msmyt(exe)/libmpdec.so.2
Binary file not shown.
Binary file added msmyt(exe)/libpng16.so.16
Binary file not shown.
Binary file added msmyt(exe)/libpython3.8.so.1.0
Binary file not shown.
Binary file added msmyt(exe)/libreadline.so.8
Binary file not shown.
Binary file added msmyt(exe)/libssl.so.1.1
Binary file not shown.
Binary file added msmyt(exe)/libtiff.so.5
Binary file not shown.
Binary file added msmyt(exe)/libtinfo.so.6
Binary file not shown.
Binary file added msmyt(exe)/libuuid.so.1
Binary file not shown.
Binary file added msmyt(exe)/libwebp.so.6
Binary file not shown.
Binary file added msmyt(exe)/libwebpdemux.so.2
Binary file not shown.
Binary file added msmyt(exe)/libwebpmux.so.3
Binary file not shown.
Binary file added msmyt(exe)/libz.so.1
Binary file not shown.
Binary file added msmyt(exe)/libzstd.so.1
Binary file not shown.
Binary file added msmyt(exe)/msmyt
Binary file not shown.
22 changes: 22 additions & 0 deletions msmyt(exe)/setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
from setuptools import setup, find_packages

with open("README.md", "r") as readme_file:
ld = readme_file.read()

setup(
name="msm_yt_downloader",
version="1.0.0",
description="Utiity to download Youtube Videos",
long_description=ld,
long_description_content_type="text/markdown",
author="MandraSaptak Mandal",
license="MIT",
classifiers=[
"Topic :: Utilities",
"License :: OSI Approved :: MIT License",
"Development Status :: 4 - Beta"
],
keywords="youtube video downloader",
packages=find_packages(),
install_requires=["requests>=2"]
)

0 comments on commit ca9d084

Please sign in to comment.