This file contains 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 xml import sax | |
class XMLParser(sax.handler.ContentHandler): | |
def __init__(self, keys=[], lists=[], *args, **kwargs): | |
""" | |
:param keys: list of data keys have to be available in data | |
:param lists: list of nodes have be represented as list |
This file contains 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
""" | |
Search bebop series. | |
""" | |
import arrow | |
import json | |
from tornado import options | |
from tornado.httpclient import HTTPError, HTTPClient, HTTPRequest | |
from tornado_botocore import Botocore | |
from tvs import TVS |
This file contains 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
# -*- coding: utf-8 -*- | |
TVS = [{ | |
'number': 1, | |
'title': 'Asteroid Blues', | |
'airdate': 'October 24, 1998', | |
'genre': ['anime', 'action'], | |
'content': """In a flashback, Spike Spiegel is shown waiting near a church holding a bouquet of flowers, before leaving as the church bell rings. As he walks away, images of a gunfight he participated in are shown. In the present, Spike, currently a bounty hunter, and his partner Jet Black head to the Tijuana asteroid colony on their ship, the Bebop, to track down a bounty-head named Asimov Solensan. Asimov is wanted for killing members of his own crime syndicate and for stealing a cache of a dangerous combat drug known as Bloody-Eye. On the colony, Asimov and his girlfriend, Katerina, are ambushed at a bar by his former syndicate while attempting to sell a vial of Bloody-Eye, but Asimov manages to fight his way out by using the drug himself. Spike later encounters Katerina and reveals to her that he is a bounty hunter searching for Asimov; Spike is prompt |
This file contains 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 os.path | |
import sqlite3 | |
import redis | |
import time | |
import uuid | |
class RedisSearch(object): | |
@property |
This file contains 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
""" | |
Async Tornado S3 uploader with AWS4 sign. | |
https://gist.github.com/stalkerg/63bad3ea49be6268df49 | |
Edited by @nanvel 2015-07-24 | |
Usage example: | |
.. code-block:: python |
This file contains 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 email.mime.application import MIMEApplication | |
from email.mime.multipart import MIMEMultipart | |
from email.mime.text import MIMEText | |
import botocore.session | |
if __name__ == '__main__': | |
session = botocore.session.get_session() | |
ses = session.get_service('ses') |
This file contains 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 botocore.session | |
import logging | |
import re | |
import six | |
from functools import partial | |
logger = logging.getLogger() |
This file contains 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
""" | |
This code has been written just for fun, it is slow and may produce inaccurate results. | |
The idea was to transition from mathematics to an algorithm. | |
""" | |
import binascii | |
import hashlib | |
import itertools |
This file contains 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 struct | |
class Miner(): | |
def __init__(self, previous_hash, transactions_hash, timestamp, bits, nonces): | |
self.previous_hash = previous_hash | |
self.transactions_hash = transactions_hash | |
self.timestamp = timestamp | |
self.bits = bits |
This file contains 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
w0 = 0x5d218b61 | |
w1 = 0x9ee563e9 | |
w2 = 0x6e3c750e | |
w3 = 0xbc44ad0e | |
w4 = 0xcccb8798 | |
w5 = 0x18dcead4 | |
w6 = 0x7dc014d9 | |
w7 = 0xf3ffe957 | |
OlderNewer