This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import requests | |
class HoverException(Exception): | |
pass | |
class HoverAPI(object): | |
def __init__(self, username, password): | |
params = {"username": username, "password": password} | |
r = requests.post("https://www.hover.com/signin", params=params) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from collections import Counter | |
from random import choice | |
import re | |
class Cup: | |
""" A class defining a cup that will hold the words that we will pull out """ | |
def __init__(self): | |
self.next_word = Counter() # will keep track of how many times a word appears in a cup |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
QStringList images; | |
QTextBlock b = document->begin(); | |
while (b.isValid()) { | |
for (QTextBlock::iterator i = b.begin(); !i.atEnd(); ++i) { | |
QTextCharFormat format = i.fragment().charFormat(); | |
bool isImage = format.isImageFormat() | |
if (isImage) | |
images << format.toImageFormat().name(); | |
} | |
b = b.next(); |
NewerOlder