38 lines
1.1 KiB
Python
38 lines
1.1 KiB
Python
from os import access,F_OK,mkdir
|
|
from requests import get as load
|
|
from bs4 import BeautifulSoup as parse
|
|
import click
|
|
|
|
@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)')
|
|
def CLI(songid,dist):
|
|
"""===== Newgrounds Audio Downloader by H1K0 ====="""
|
|
print('Loading HTML...')
|
|
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'
|
|
|
|
if not access(dist,F_OK):
|
|
mkdir(dist)
|
|
|
|
print(f'Downloading "{songTitle}"...')
|
|
with open(f'{dist}/{link.split("/")[-1]}','wb') as out:
|
|
out.write(load(link).content)
|
|
print(f'{songTitle} successfully downloaded.')
|
|
|
|
if __name__=='__main__':
|
|
CLI() |