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 __future__ import print_function | |
# import unittest | |
import pytest | |
@pytest.fixture(scope='session') | |
def selenium(request): | |
print('BEGIN fixture') | |
request.addfinalizer(lambda: print('END fixture')) | |
return 123 |
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
STACKDRIVER_ERROR_FILE = '/var/log/app_engine/custom_logs/errors.log.json' | |
def log_stackdriver_err(request=None, exception=None, user=None): | |
''' | |
send error to StackDriver Error Reporting service | |
see https://cloud.google.com/error-reporting/docs/setup/app-engine-flexible-environment | |
''' | |
def make_path_to_file(filename): | |
if not os.path.exists(os.path.dirname(filename)): |
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
var gulp = require('gulp'); | |
var less = require('gulp-less'); | |
var watch = require('gulp-watch'); | |
// var util = require("gulp-util"); | |
const notifier = require('node-notifier'); | |
var path = require('path'); | |
var combiner = require('stream-combiner2'); | |
var browserSync = require('browser-sync').create(); | |
gulp.task('_less', function(){ |
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 -*- | |
from __future__ import print_function | |
import os | |
import datetime | |
import sqlalchemy as sa | |
from sqlalchemy import create_engine | |
from sqlalchemy.ext.declarative import declarative_base | |
from sqlalchemy.orm import Query, scoped_session, sessionmaker |
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
[distutils] | |
index-servers = | |
pypi | |
pypitest | |
[pypi] | |
repository=https://pypi.python.org/pypi | |
username=litvinenko1706 | |
password=!!!!! |
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 | |
import unittest | |
loader = unittest.TestLoader() | |
tests = loader.discover(os.path.join(os.path.dirname(__file__), | |
'sqlalchemy_mixins')) | |
testRunner = unittest.runner.TextTestRunner() | |
testRunner.run(tests) |
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 oauth2client import client, crypt | |
# (Receive token by HTTPS POST) | |
token = 'eyJhbGciOiJSUzI1NiIsImtpZCI6ImQyYzQ4YmFkMzAwMjBhY2U4MzBlZDkzYmQ4MWMzMjhkYzY4NTFhOTMifQ.eyJpc3MiOiJodHRwczovL2FjY291bnRzLmdvb2dsZS5jb20iLCJpYXQiOjE0ODc0MTc5ODEsImV4cCI6MTQ4NzQyMTU4MSwiYXRfaGFzaCI6IkIyYkJWU2d1M0tkOHdxT1p5NnN4Z3ciLCJhdWQiOiI1ODE3ODY2NTg3MDgtZWxmbGFua2VycXVvMWE2dnNja2FiYmhuMjVoY2xsYTAuYXBwcy5nb29nbGV1c2VyY29udGVudC5jb20iLCJzdWIiOiIxMDcwMzQzNjY2NTEwMjUwMzAwMDAiLCJlbWFpbF92ZXJpZmllZCI6dHJ1ZSwiYXpwIjoiNTgxNzg2NjU4NzA4LWVsZmxhbmtlcnF1bzFhNnZzY2thYmJobjI1aGNsbGEwLmFwcHMuZ29vZ2xldXNlcmNvbnRlbnQuY29tIiwiZW1haWwiOiJsaXR2aW5lbmtvMTcwNkBnbWFpbC5jb20iLCJuYW1lIjoi0JDQu9C10LrRgdCw0L3QtNGAINCb0LjRgtCy0LjQvdC10L3QutC-IiwicGljdHVyZSI6Imh0dHBzOi8vbGg0Lmdvb2dsZXVzZXJjb250ZW50LmNvbS8tME9hYkNoaHZMU1kvQUFBQUFBQUFBQUkvQUFBQUFBQUFBLU0vUkFhaHlTaUE2aGsvczk2LWMvcGhvdG8uanBnIiwiZ2l2ZW5fbmFtZSI6ItCQ0LvQtdC60YHQsNC90LTRgCIsImZhbWlseV9uYW1lIjoi0JvQuNGC0LLQuNC90LXQvdC60L4iLCJsb2NhbGUiOiJydS1VQSJ9.LrL5ji_j-oX9Lh78TsoyJXzSQfUaQ3elxg8GOrsHwURxMAY7lbo |
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
<!-- | |
See https://developers.google.com/identity/sign-in/web/ | |
for description and setup instructions | |
Key setup steps: | |
1. get client ID and API KEY http://www.qopy.me/0yILY0U8TD6kZ0ilhhoIAA | |
2. run HTTP server in folder where index.html lays. | |
I.g. PHP server: | |
php -S php -S 0.0.0.0:5000 | |
or this server (just EXE) http://www.zachsaw.com/?pg=quickphp_php_tester_debugger | |
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
<!-- | |
See https://developers.google.com/api-client-library/javascript/samples/samples#authorizing-and-making-authorized-requests | |
for description and setup instructions | |
Key setup steps: | |
1. get client ID and API KEY http://www.qopy.me/0yILY0U8TD6kZ0ilhhoIAA | |
2. run HTTP server in folder where index.html lays. | |
I.g. PHP server: | |
php -S php -S 0.0.0.0:5000 | |
or this server (just EXE) http://www.zachsaw.com/?pg=quickphp_php_tester_debugger |
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
def to_sql(query, dialect_name=None): | |
from sqlalchemy import dialects | |
import operator | |
if dialect_name: | |
dialect_module = getattr(dialects, dialect_name) | |
if not dialect_module: | |
raise KeyError('Wrong dialect {}'.format(dialect_name)) | |
dialect = dialect_module.dialect() | |
else: |