// Header Design 1
A one line description of the project.
// Header Design 2
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) | |
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 |
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 time | |
import random | |
import datetime | |
import telepot | |
""" | |
After **inserting token** in the source code, run it: | |
``` | |
$ python2.7 diceyclock.py | |
``` |
#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 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"] |
/* | |
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. |
// Header Design 1
A one line description of the project.
// Header Design 2
Orgainization | [coala] | |
Project name | Enhance coala-quickstart | |
Primary repository | [coala-quickstart] | |
Project Mentors | Adhityaa, Zatreanu Adrian-Gabriel | |
Project Page | [Summer of Code Project Page] | |
Status | Completed |
7th Feb, 2018 https://www.facebook.com/events/181584245945961
Event Slides: https://docs.google.com/presentation/d/1aQIWgrwb-JypECEXMbetUV9PdKnUHqjeeBPnN9SLIwg/edit?usp=sharing
If you don't know what GSoC is, you may find previous session's slides and gists helpful.
I'd recommend to read this post as well (skipped in the session).