Posts

Showing posts from February, 2020

create folder

import java.io.*; public class GFG { public static void main(String args[]) { // create an abstract pathname (File object) File f = new File("F:\\program"); // check if the directory can be created // using the abstract path name if (f.mkdir()) { // display that the directory is created // as the function returned true System.out.println("Directory is created"); } else { // display that the directory cannot be created // as the function returned false System.out.println("Directory cannot be created"); } } }
Download link

python

import requests from bs4 import BeautifulSoup ''' URL of the archive web-page which provides link to all video lectures. It would have been tiring to download each video manually. In this example, we first crawl the webpage to extract all the links and then download videos. ''' # specify the URL of the archive here archive_url = "http://www-personal.umich.edu/~csev/books/py4inf/media/" def get_video_links(): # create response object r = requests.get(archive_url) # create beautiful-soup object soup = BeautifulSoup(r.content,'html5lib') # find all links on web-page links = soup.findAll('a') # filter the link sending with .mp4 video_links = [archive_url + link['href'] for link in links if link['href'].endswith('mp4')] return video_links def download_video_series(video_links): for link in video_links: ...
Image
Starmaker AV downloader Type the URL. URL: Download ///////////////////////////////////////////////////////////////////////////

Download

Image
Starmaker AV downloader Type the URL. URL: Download ///////////////////////////////////////////////////////////////////////////