From 43d6665e7e9e943ef74e10f629fa1cff18c49801 Mon Sep 17 00:00:00 2001 From: Ritiek Malhotra Date: Tue, 19 Jul 2016 10:24:35 +0530 Subject: [PATCH] Release 0.1 --- LICENSE.txt | 8 ++++ README.md | 55 ++++++++--------------- YT_Music.egg-info/PKG-INFO | 12 +++++ YT_Music.egg-info/SOURCES.txt | 7 +++ YT_Music.egg-info/dependency_links.txt | 1 + YT_Music.egg-info/top_level.txt | 1 + build/scripts-2.7/YTMusic | 58 +++++++++++++++++-------- dist/YTMusic-0.1-py2.7.egg | Bin 2680 -> 2765 bytes dist/YTMusic-0.1.tar.gz | Bin 0 -> 2639 bytes dist/YT_Music-0.1.tar.gz | Bin 0 -> 2653 bytes setup.cfg | 2 + setup.py | 9 ++-- 12 files changed, 94 insertions(+), 59 deletions(-) create mode 100644 LICENSE.txt create mode 100644 YT_Music.egg-info/PKG-INFO create mode 100644 YT_Music.egg-info/SOURCES.txt create mode 100644 YT_Music.egg-info/dependency_links.txt create mode 100644 YT_Music.egg-info/top_level.txt create mode 100644 dist/YTMusic-0.1.tar.gz create mode 100644 dist/YT_Music-0.1.tar.gz create mode 100644 setup.cfg diff --git a/LICENSE.txt b/LICENSE.txt new file mode 100644 index 0000000..d9ab575 --- /dev/null +++ b/LICENSE.txt @@ -0,0 +1,8 @@ +The MIT License (MIT) +Copyright (c) 2016 Ritiek + +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. diff --git a/README.md b/README.md index aea0203..ddc399b 100644 --- a/README.md +++ b/README.md @@ -2,65 +2,46 @@ My first GitHub Repository (sorry for any mistakes) -This python script allows downloading songs instantly by just entering the name of the song -and the artist. +This python script allows downloading songs from youtube by just entering the name of the song +and the artist in mp3 extension. -![Alt text](http://i.imgur.com/lWyA2pj.png "Testing") -## Dependencies: +# Dependencies: ``` pip install mechanize pip install bs4 pip install pafy ``` -[OPTIONAL] If you want to convert downloaded music to mp3 (from m4a) install avconv for linux or ffmpeg from https://ffmpeg.zeranoe.com/builds/ for windows and then place the ffmpeg.exe in your script folder: ``` -sudo apt-get install libav-tools -or download from https://libav.org/download/ for windows +sudo apt-get install ffmpeg +or download from https://ffmpeg.zeranoe.com/builds/ for windows and place the ffmpeg.exe in your script folder ``` -## Installation & Usage: +# Installation & Usage: ``` git clone https://github.com/Ritiek/YTMusic cd YTMusic -sudo python setup.py install -``` -or you can also install from pypi using: -``` -pip install YTMusic -``` -Run it using: -``` -YTMusic +sudo python YTMusic.py ``` -## Commands that can be used in the Script: +# Commands that can be used in the script: ``` -• play - will play the last song downloaded using default music player -• spotify - downloads songs from spotify playlist (see below:) -• convert - will convert all your m4a songs into mp3 -• exit - exit the script +2. play - will play the last song downloaded using default music player +3. gg - exit the script +4. spotify - downloads songs from spotify playlist (see below:) ``` -## Downloading Music from Spotify: +# Downloading Music from Spotify: -![Alt text](http://i.imgur.com/0dqlYpz.png "Testing") - -• To download music from spotify playlists goto http://www.playlist-converter.net/ and login to your +1. To download music from spotify playlists goto http://www.playlist-converter.net/ and login to your spotify account and choose the playlist you want to download. Let it grab the tracks and then click on ```Export to free text```. - -• Copy the songs list and create a new text file ```spotify.txt``` in your Music directory and paste the +2. Copy the songs list and create a new text file ```spotify.txt``` in your Music directory and paste the songs list. -``` -cd YTMusic/Music -sudo nano spotify.txt -[paste your songs here then ctrl+o, enter, ctrl+x] -sudo chmod 775 spotify.txt -``` -• Use the command ```spotify``` in the script to start downloading the list. +3. Use the command ```spotify``` in the script to start downloading the list. -## Disclaimer: +# Known bugs: -Downloading Copyright Music may be illegal in your country. Please support the artists by buying their Music. +1. Fails to download songs containing accents (that is, characters like 'Ø' in song like 'BØRNS Seeing Stars') +in the Youtube's video title. diff --git a/YT_Music.egg-info/PKG-INFO b/YT_Music.egg-info/PKG-INFO new file mode 100644 index 0000000..7a1397e --- /dev/null +++ b/YT_Music.egg-info/PKG-INFO @@ -0,0 +1,12 @@ +Metadata-Version: 1.1 +Name: YT-Music +Version: 0.1 +Summary: Downloads Songs and Spotify playlists. +Home-page: https://www.github.com/Ritiek/YTMusic/ +Author: Ritiek Malhotra +Author-email: ritiekmalhotra123@gmail.com +License: UNKNOWN +Download-URL: https://github.com/Ritiek/YTMusic/tarball/0.1 +Description: UNKNOWN +Keywords: download,songs,spotify,playlists,music +Platform: UNKNOWN diff --git a/YT_Music.egg-info/SOURCES.txt b/YT_Music.egg-info/SOURCES.txt new file mode 100644 index 0000000..37e8bd4 --- /dev/null +++ b/YT_Music.egg-info/SOURCES.txt @@ -0,0 +1,7 @@ +setup.cfg +setup.py +YT_Music.egg-info/PKG-INFO +YT_Music.egg-info/SOURCES.txt +YT_Music.egg-info/dependency_links.txt +YT_Music.egg-info/top_level.txt +bin/YTMusic \ No newline at end of file diff --git a/YT_Music.egg-info/dependency_links.txt b/YT_Music.egg-info/dependency_links.txt new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/YT_Music.egg-info/dependency_links.txt @@ -0,0 +1 @@ + diff --git a/YT_Music.egg-info/top_level.txt b/YT_Music.egg-info/top_level.txt new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/YT_Music.egg-info/top_level.txt @@ -0,0 +1 @@ + diff --git a/build/scripts-2.7/YTMusic b/build/scripts-2.7/YTMusic index c912db7..c40505b 100644 --- a/build/scripts-2.7/YTMusic +++ b/build/scripts-2.7/YTMusic @@ -13,15 +13,15 @@ avconv = 1 if os.name == 'nt': opsys = 'win' - if not os.path.isfile('ffmpeg.exe'): - print 'avconv not found, will not convert to mp3 (from m4a)' + if not os.path.isfile('avconv.exe'): + print 'avconv not found, will not convert to mp3 (from m4a). download from https://builds.libav.org/windows/ to be able to convert them' avconv = 0 else: opsys = 'linux' check_install = os.system('which avconv > /dev/null') if check_install == '': print 'avconv not found, will not convert to mp3 (from m4a). use sudo apt-get install libav-tools to install it' - avonv = 0 + avconv = 0 def Main(): script_dir = os.getcwd() @@ -49,22 +49,42 @@ def Main(): else: print 'No log to read from..' elif raw_song == "convert": + print '' - if avconv == 1: - y = 1 - x = 0 - for m in os.listdir(script_dir + '/Music/'): - if m.endswith(".m4a"): - x = x + 1 - print 'Total songs to convert = ' + str(x) + ' songs' - for m in os.listdir(script_dir + '/Music/'): - if m.endswith(".m4a"): - print '' - print str(y) + '. ' 'Converting ' + m + ' to mp3..' - y = y + 1 - song = m.replace(".m4a", "") - os.system('sudo avconv -loglevel 0 -i "Music/' + song + '.m4a" ' + '"Music/' + song + '.mp3"') - os.remove("Music/" + m) + if opsys == 'win': + if avconv == 1: + y = 1 + x = 0 + for m in os.listdir(script_dir + '/Music/'): + if m.endswith(".m4a"): + x = x + 1 + print 'Total songs to convert = ' + str(x) + ' songs' + for m in os.listdir(script_dir + '/Music/'): + if m.endswith(".m4a"): + print '' + print str(y) + '. ' 'Converting ' + m + ' to mp3..' + y = y + 1 + song = m.replace(".m4a", "") + os.system('avconv.exe -loglevel 0 -i "Music\\' + song + '.m4a" ' + '"Music\\' + song + '.mp3"') + os.remove("Music/" + m) + else: + print 'avconv is not installed, cant convert to mp3' + elif opsys == 'linux': + if avconv == 1: + y = 1 + x = 0 + for m in os.listdir(script_dir + '/Music/'): + if m.endswith(".m4a"): + x = x + 1 + print 'Total songs to convert = ' + str(x) + ' songs' + for m in os.listdir(script_dir + '/Music/'): + if m.endswith(".m4a"): + print '' + print str(y) + '. ' 'Converting ' + m + ' to mp3..' + y = y + 1 + song = m.replace(".m4a", "") + os.system('sudo avconv -loglevel 0 -i "Music/' + song + '.m4a" ' + '"Music/' + song + '.mp3"') + os.remove("Music/" + m) else: print 'avconv is not installed, cant convert to mp3' elif raw_song == "spotify": @@ -171,4 +191,4 @@ def Main(): except KeyboardInterrupt: pass -Main() +Main() \ No newline at end of file diff --git a/dist/YTMusic-0.1-py2.7.egg b/dist/YTMusic-0.1-py2.7.egg index 60bf0c29adb864b5cbf967551164168672854884..a8cda5f67587a134c1afe43b915b3fd394bccf68 100644 GIT binary patch delta 1894 zcmV-s2buWz6wMV4P)h>@6aWAK2mmW>@sSNQ11oLukwo?bD{b+UJpqLSD{b+U#Q`q^ zD{b+U_W?T&D{b*exE~z^#0CHWfE<%R0v>hDln!nfUdGX4F0wiCIG&R<=a*^K6h)L+ zU2H)D&gjnKH<}aO`@S+< z5k~MN&C2|gxZ9wq4q!||a8nan3Iklm_7X3)uhj)x`D@urDe^fPH(NXT30<;2Lqp?N~$K3q&~}c$Sw4iesn4f- z4pk&$)piAmg6ksxe^2~Zd7|q8oWb_GVtS<~rnhy(-4uDS8}4RKT}$X_+giS%=^1t< zHLv!Y&jV7kG@gI(X^zd?jAFvJU#@-F=TG1uJq$gcDuAGcO?H2rtBVM9vL)iMH#e2y zP3^6^?5s-Aq+gyKw^p5E+qG`?=}QGID_8OQlxl7!aF`c-qU2OU_x_534Y~^~&*va2 zS19)TI6MRRAv@=l36H`z@)NX_Ed81ulla%s=ovYCMqXpw6Y=EflV^li!?U-~h`Kx- z(QoJp9X(3O572+K%Jk%TbUZpaenQTsO=X&NbWBHpq-0=EkzFL@l~8;pm+2$=1i-@N zqhsmpm)F2Z*!Ja%#e%M6W11icsL3J!dcS; z#>AR4_I29bnAA*ZY*6t56x*#Mq+1r$o~Ta8G%KX$tyX_$@YpdE#|VJ;kkJ`D8e(RQ z(&OKwtYBJ4r_ss`8?hW3=!S-1>x<~m6r5_od#4uK5r4<=0+QyYT`}ujrX6 zctzb6fW0~KYS7!$4if^oh=Mh8{Gba3k>>CrvG=3Xk9&Wb8`k7Pf@wLkIl%dMf3sKO8D`)9 zS-+SwIu%ASW8Z_}=;Y}|NFa~GK3^JMX(20ng8J^tJfrP+A;#Aa8en`AgRK$VLiGnI z|90xX)&PTE;R-ek(tE_?a&I9ET#~(_kX={D{&{8W&Q+bUuAUcnA3VEgOW zb>)BSKU}>IDPB%@U9Ez|rE9R#`f+vlVs)EZb!*ahu2r>?WoNzI*i5H!+-zsg zbI59}zzABADd*LC4$N~(iQ>cd`vr+tX_ewcC}}5*PPmp7`gqu{6?b6&5OpJ53$`)I zI>=-lj+@rXYl`LVtL2@`Wm|Q~dcM~;Q-5H>JGf$&d*9RC`=94-+xxy}y4Or~?|H8K zIVQVTY3R<=-8}>_=k82>Zx~QlhSP0>>ApfKz#mOA4gvHNUri-b`H%Rsi)w1u5IVu# z?>~P5P)h*<6ay3h000O8D{b+U+z3GfD{b+UAPGDJD{b+UUkN`0D{b+Up$R+#D{b+U g;0Z_$D{b*exE~z^#0CHWfE<%H3OoiP2><{90O?AYga7~l delta 1809 zcmV+s2k!XI75EelP)h>@6aWAK2mm(#@R1EP12+Khkwo?bH~{dIJpqLSH~{dI#Q`q^ zHvsUH_W?T&H~{cSYNr1GZw3GWwilB?0v>^FNY0Zvlj0-yW~Iu>R6iwd=LKh#5wj|LqpE^1O*H&BWCfe8o3YZsZAO2j z!XYh~nNz+J+UU@KU1^c{(a7t;PR?$4D#~`*D@q{^2?Eb!i$uu<8Iz&q1*av;IT?>h zAWeYugk6X3Wb#Y|N)JtIqzWp<7m9E>oE z8>D=gG}PNNpH!9HT~X!tgu{mUEHJiR1Ad ziBrCaWtC+?WcA;n1fIbIRi>oUoaic5gcYWL%?)YTXJX10eWO&Sk*--5rZ%&&(o6Y_ zykc15xiV3<50+=g1sN4;U!@Ncj6>ZN2ERtj%o?U#D~l>zLn6!VQ3HWZ1-4^v9&wqQpKs< zxVheN;dE)`)_ZjVb`z`PiO0l$Z}a#4dmkoOlFLM;Je|}6V4FfzY|huePDc0v>>tky z20$7)hAtC73-hOJo4Ivl>y&>w$?xfwAhy!t;GnPoEeQ^Kg<-JBzWVoIc(+$hW)7|a z=H3o(cRPPkBvaRTlS*}&`Q}Ucgn-T++&xu&uDrko*dnxU3rb?2- zy~Pk@P+Y-^Pq;to#4D#D*joj4!CpdJCz^j!1G#_>G-bGo zP*!~+_?J}M^3i6F($`ix1qFidYt;mJ8FkC8T6IZup=g}BZmsO~T;<7W$sscm?u4Ha z-;WNYPhCvw81*6K8DH>>3`k!PzfB;^w8#pi?JV0b>bAXn2$nkpU+ z=n$CX4B{!0n~1y=C7-EP{DfWrnIC)Nv1S!ygGwc&rE7XfV{(u&V)=uW=yHae+Eg$v<^nW+Vm^2>Kg!-KE(Pa_&a(R z%)$8JgVP6k(QJZSXnDt4w5uzvKK-apk`0k#vJfd(zyN9YNZKy5jatlQclc-3Vy z*e{f4Bq)D_2)~;k+c(gbGQ+TL3hAyI)kOx}Z3V?1I=UzCrQ;2^V8a|IbXmeptNEd@ zcf-+#O>@__NUTbQg3xkiYe1df-9@iqiA_0F-|pT z1TwEKvbO-)T{!mNgRuvr*qtDD6o&0U*k?zuqX6tMe%%FM|6}wz2E1zDwO9p(OBWEO z%?H)P!Ri#OI$89Cv8sSi)WU4PxxB%uV=JA;$2R-oHixRlGQ2@+GUZ&7rcm>gQux~K zH}ikzBwWWb#?R}hd9108YeZp=`(3PffcnR{8|fOdt!IIwLe}!QFIL_GmZziTgW4vHMSk@l?6&B&+dbHd0-RpJb_?M^cNa0o8dwaQO9Bz%msWJFm5%BQYGU4F& zpZR*KSegEW51(aK)O|#4c>MzF{R2=-0RjsY0~7!N00;m#0PvGB2|)ul0PvG_2|NQh z0PvHv2|oik0PvIc2|NQg0PvGF3P=t(0Psj^rvCqL1^@uI7n6$$JO<4O000007{7Ec diff --git a/dist/YTMusic-0.1.tar.gz b/dist/YTMusic-0.1.tar.gz new file mode 100644 index 0000000000000000000000000000000000000000..2dd44a0d3072ae5a7d88d01ba6622840422af85d GIT binary patch literal 2639 zcmV-V3b6GbiwFoMtc_O!|72-%bT3&{O?7i=V=XW)F)nmrascfbX>;4SHDAqNfpVuq zswmr`>KHH#;!TX&ralPf+*C1GFUOm?89p zg(2THZ{PSja*w3_TH=39coJFB@?QAg>xqA-*WKX11MDvN--dptBmPkHA^9KC-ShsS z{Qu@pb`mptL<2io@>v*Y8ug=)aTG7(>@kd?cOrVMIbkskgCPwjA$pF?cD-5aYe!;; zTv2Z7N}v!Uza^BB7^PrQ%hGF_HesQUq@3|E^kS6lC3@;;LIZag;qfJ&64+AqngRC7 zz))a~x`t#^=NK3uxOt~b;xVHUmjf@uMc{?ljnQcsOk;!t7oA2Sr;{a$JiPR1%wsEG zixW5|8yFubr{og7!`>|946lt3iI1r_FqoX>t4U6){oPaySmV&oSEOf&2j_;MZic`` zHk>ekGvhpp`?kGUEUYQzvt%Sd*y$m%HFklZ!f6PL(E#Pkzq}NLdxSmDE|ck!EEgdI z!VJ*4k%2Vo$cP1@j)@tBiJy!fjqj6EF3bV7j_0#?>v)1FlA(c1s(${qHrKmHt0Sd#A#`#y`@8x{n;o(M}-e?jt1+T0R6qqMatbkJ+-1u9shHe-C}q zh#;Zwqw6KR+V?Wk?xVF#T=h3(2Hrxt>#?E^}t>7Z3AE$ovAtBhdfT_h%n|e06#|@4sLF zTkQ?~?;cnB{~#^T`L(S2t9{W8XuAYtbI>Ib30xA4mqU*Rm+|&lD>0^4s+3i}`K#;y zHV!^W{4YNfRQg}V|5bZH{lBAd{|@5+cCXv1^uLP#tN8yR^a}|9mLuO5B zlZhXZDeO-SvFnlAA?=ncCSek|b+n+KC*QN3d5HX|jZ8@fzk_R5Zt#)p%Y2F2;xl15 z2#NG5@)K!n3m7AU@W>;68sgc z%(hd<{uqMwkct|Y?IxUF5STObswTEeXBhW)ycH@I9pVH_c>)U#Vf>gLj{+ye`Fwe_ z)Oad(%V6XlIf&rxuFZxH>-wH4*XK#1bZ3 zzNG=gHhBU8DM2X7lm{EiwY3f5Dl|d}*_D7HXRZ=Ov08EUs^BUTEd6tJ0}qM`*mY-ss=5bk>SwUNfu|(kdR>1Peuk(L z+g+=P%zrt~Gj#S0y%ma&=<(CzXNUxiv(smY&HIk^SF2???Hc+C;?~e^HJzr@Y96Dr zQ4;XPb|6g!AU+0u((z>ty{3#z!YjLN9m6ucc99&Re6P1FxS+H(gd3em!D(m<)26-ORGmljl{ezj}DUMSe01vzl>Vl5bGS_)5W zcJA~qwnR5LacKywC0N>kRKCldB^Qr{^(~K;ojJBflrwod8kEv$J-yUrog4!}ISJA$ z(l8?EUATE{WiS%{HF_WlByOFOVd38Fz4t-gWu*?hCl< z{J!fV?w&I49T#%%qm;XgLbopGZrLCLN4Qbuy{1C#RHvIN(_N{OCccu42`JDTvK)n& xxj&2VEG&uA_%B5~{oqqwxvE;#s#dkCRjq1Ot6J5nR<*Cv{s*zneii^w002no5Jmt1 literal 0 HcmV?d00001 diff --git a/dist/YT_Music-0.1.tar.gz b/dist/YT_Music-0.1.tar.gz new file mode 100644 index 0000000000000000000000000000000000000000..894aef4cea4449eba3368f827f7bcd629ed648e3 GIT binary patch literal 2653 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 L+zmf{08jt`v05s) literal 0 HcmV?d00001 diff --git a/setup.cfg b/setup.cfg new file mode 100644 index 0000000..b88034e --- /dev/null +++ b/setup.cfg @@ -0,0 +1,2 @@ +[metadata] +description-file = README.md diff --git a/setup.py b/setup.py index 8802b44..8230463 100644 --- a/setup.py +++ b/setup.py @@ -8,11 +8,14 @@ if sys.version_info > (3,0): from setuptools import setup, find_packages -setup(name='YTMusic', +setup(name='YT_Music', version='0.1', - description='Download songs just by entering the song name and artist.', + description='Downloads Songs and Spotify playlists.', author='Ritiek Malhotra', author_email='ritiekmalhotra123@gmail.com', - url='https://www.github.com/Ritiek/YTMusic/', scripts=['bin/YTMusic'], + url='https://www.github.com/Ritiek/YTMusic/', + download_url = 'https://github.com/Ritiek/YTMusic/tarball/0.1', + keywords = ['download', 'songs', 'spotify', 'playlists', 'music'], + classifiers = [], )