// Header Design 1
A one line description of the project.
// Header Design 2
// Header Design 1
A one line description of the project.
// Header Design 2
| /* | |
| This a header file that includes every standard library. | |
| You can use it to save time. | |
| NOTE: This header file may not be recognized by compilers | |
| other than gcc. | |
| */ | |
| #include <bits/stdc++.h> | |
| /* | |
| //Use this if the above header file doesn't work. |
| import shutil | |
| import os | |
| import requests | |
| from bs4 import BeautifulSoup | |
| # USAGE: Add all the galleries that you want to be scraped in the list below | |
| roots = ["https://quotefancy.com/motivational-quotes", | |
| "https://quotefancy.com/inspirational-entrepreneurship-quotes", | |
| "https://quotefancy.com/startup-quotes"] |
| #importing the python requests library | |
| import requests | |
| def get_scores(): | |
| url = "https://cricscore-api.appspot.com/csa" | |
| #Creatin a GET request | |
| response = requests.get(url) |
| import time | |
| import random | |
| import datetime | |
| import telepot | |
| """ | |
| After **inserting token** in the source code, run it: | |
| ``` | |
| $ python2.7 diceyclock.py | |
| ``` |
| import scrapy | |
| class Stackoverflowspider(scrapy.spider): | |
| name = 'stackoverflow' | |
| start_urls = ['http://stackoverflow.com/questions?sort=votes'] | |
| def parse(self, response): | |
| for href in response.css('.question-summary h3 a::attr(href)'): | |
| full_url = response.urljoin(href.extract()) | |
| yield scrapy.Request(full_url, callback=self.parse_question) | |
| def parse_question(self, response): | |
| yield { |
| import requests | |
| response = requests.get('https://in.pycon.org/cfp/2016/proposals/') | |
| if response.status_code == 200: | |
| print "Fetched the page sucessfully" | |
| print response.content |
| from datetime import datetime, timedelta | |
| from math import log | |
| epoch = datetime(1970, 1, 1) | |
| def epoch_seconds(date): | |
| td = date - epoch | |
| return td.days * 86400 + td.seconds + (float(td.microseconds) / 1000000) | |