Download link: from generating to finding

So now you can download ANY song using this utility!
This commit is contained in:
Masahiko AMANO 2020-08-23 16:33:49 +03:00
parent 10612f0809
commit 081b8e897d
3 changed files with 9 additions and 18 deletions

Binary file not shown.

View File

@ -4,6 +4,7 @@ from bs4 import BeautifulSoup as parse
import click
from sys import stdout
@click.command()
@click.argument('songid',nargs=1,metavar='<Newgrounds song ID>')
@click.option('-d','--dist',default='./Downloads',type=click.Path(exists=True),help='Where to save the songs (default: ./Downloads)')
@ -13,21 +14,15 @@ def CLI(songid,dist):
page=parse(load(f'https://www.newgrounds.com/audio/listen/{songid}').text,'html.parser')
songTitle=page.find('title').text
print('Creating download link...')
link=f'http://audio.ngfiles.com/{songid[:3]}000/{songid}_'
count=0
for char in songTitle:
if 97<=ord(char.lower())<=122:
link+=char
count+=1
elif char==' ':
link+='-'
count+=1
if count==26: break
link+='.mp3'
print('Searching download link...')
link='http://audio.ngfiles.com/'
page=str(page)
i=page.find('audio.ngfiles.com')+len('audio.ngfiles.com/')
while not link.endswith('.mp3'):
if page[i]!='\\': link+=page[i]
i+=1
if not access(dist,F_OK): mkdir(dist)
print(f'Downloading "{songTitle}"...')
download(link,dist)
print(f'"{songTitle}" successfully downloaded.')

View File

@ -23,8 +23,4 @@ $ NGAudioDownloader.py [OPTIONS] <Newgrounds song ID>
Options:
-d, --dist PATH Where to save the songs (default: ./Downloads)
--help Show this message and exit.
```
## ※NOTE!
Please note that you can download the songs named with *latin symbols only*. I'll fix it later so just for now bear with what we have. :3
```