Skip to content

Instantly share code, notes, and snippets.

View bond95's full-sized avatar

Bohdan Iakymets bond95

View GitHub Profile
@bond95
bond95 / corly-import.py
Last active August 29, 2015 14:05
Corly import script
#!/usr/bin/python
import sys
import requests
import os.path
import json
import time
from corlyapi import CorlyAPI
import tempfile
#! /usr/bin/python
from HTMLParser import HTMLParser
from bs4 import BeautifulSoup
class FormParser(HTMLParser):
def __init__(self):
HTMLParser.__init__(self)
self.url = None
self.params = {}
@bond95
bond95 / main.py
Last active August 29, 2015 13:58
vk-player
#! /usr/bin/python
from PyQt4 import QtGui, QtCore, QtWebKit, uic, QtNetwork
import json
from PyQt4.phonon import Phonon
import time
class myWindow(QtGui.QWidget):
currentRow = -1