code
stringlengths
1
199k
import os from Cerebrum.default_config import * CEREBRUM_DATABASE_NAME = os.getenv('DB_NAME') CEREBRUM_DATABASE_CONNECT_DATA['user'] = os.getenv('DB_USER') CEREBRUM_DATABASE_CONNECT_DATA['table_owner'] = os.getenv('DB_USER') CEREBRUM_DATABASE_CONNECT_DATA['host'] = os.getenv('DB_HOST') CEREBRUM_DATABASE_CONNECT_DATA['t...
""" Mirror a remote ftp subtree into a local directory tree. usage: ftpmirror [-v] [-q] [-i] [-m] [-n] [-r] [-s pat] [-l username [-p passwd [-a account]]] hostname[:port] [remotedir [localdir]] -v: verbose -q: quiet -i: interactive mode -m: macintosh server (NCSA telnet 2.4) (implies ...
""" *************************************************************************** ogr2ogrtabletopostgislist.py --------------------- Date : November 2012 Copyright : (C) 2012 by Victor Olaya Email : volayaf at gmail dot com ************************************...
import socket def server_test(): s = socket.socket() host = socket.gethostname() port = 12345 s.bind((host, port)) s.listen(5) while True: c, addr = s.accept() print c print 'connect addr: ', addr c.send('Welcome to CaiNiao!') if cmp(c.recv(1024), "GoodBye...
from common import Constant from common import utils from main.logger_helper import L __author__ = 'Dan Cristian <dan.cristian@gmail.com>' def save_to_history_cloud(obj): try: L.l.debug('Trying to save historical record to cloud {}'.format(obj)) if Constant.JSON_PUBLISH_GRAPH_X in obj: #...
import unittest import test_specify def main(): suite = unittest.TestSuite(( test_specify.suite(), )) unittest.TextTestRunner(verbosity=2).run(suite) if __name__ == '__main__': main()
import networkx as nx class BaseTestAttributeMixing(object): def setUp(self): G=nx.Graph() G.add_nodes_from([0,1],fish='one') G.add_nodes_from([2,3],fish='two') G.add_nodes_from([4],fish='red') G.add_nodes_from([5],fish='blue') G.add_edges_from([(0,1),(2,3),(0,4),(2,5...
""" SQLAlchemy support. """ from __future__ import absolute_import import datetime from types import GeneratorType import decimal from sqlalchemy import func from sqlalchemy.orm.collections import InstrumentedList from sqlalchemy.sql.type_api import TypeDecorator try: from sqlalchemy.orm.relationships import Relati...
import csv import codecs import re import argparse import os from prettytable import PrettyTable report08_schools = {} report08_employees = {} report08_school_employees = {} report16_employee = None report16_absents = {} employee_school_exclusions = {} excluced_schools = list() excluced_employees = dict() def filterAFM...
import bpy from mathutils import Matrix def DefQuickParent(inf, out): ob = bpy.context.object if ob.type == "ARMATURE": target = [object for object in bpy.context.selected_objects if object != ob][0] ob = bpy.context.active_pose_bone if bpy.context.object.type == 'ARMATURE' else bpy.context.obje...
from __future__ import division, print_function import unittest import inspect import sympy from sympy import symbols import numpy as np from symfit.api import Variable, Parameter, Fit, FitResults, Maximize, Minimize, exp, Likelihood, ln, log, variables, parameters from symfit.functions import Gaussian, Exp import scip...
from gi.repository import GLib from gi.repository import Gtk import xl.unicode from xl import event, main, plugins, xdg from xlgui.widgets import common, dialogs from xl.nls import gettext as _, ngettext import logging logger = logging.getLogger(__name__) name = _('Plugins') ui = xdg.get_data_path('ui', 'preferences', ...
__doc__="""FSP3000R7NCU FSP3000R7NCU is a component of a FSP3000R7Device Device """ from ZenPacks.Merit.AdvaFSP3000R7.lib.FSP3000R7Component import * import logging log = logging.getLogger('FSP3000R7NCU') class FSP3000R7NCU(FSP3000R7Component): """FSP3000R7NCU object""" portal_type = meta_type = 'FSP3000R7NCU' ...
import re from random import randint from helpers.orm import Scores from helpers.command import Command def pluralize(s, n): if n == 1: return s else: return s + 's' @Command('score', ['config', 'db', 'botnick']) def cmd(send, msg, args): """Gets scores. Syntax: {command} <--high|--low|n...
import logging import time import types from autotest.client.shared import error from virttest import utils_misc, utils_test, aexpect def run(test, params, env): """ KVM migration test: 1) Get a live VM and clone it. 2) Verify that the source VM supports migration. If it does, proceed with ...
import os from setuptools import setup def read(fname): return open(os.path.join(os.path.dirname(__file__), fname)).read() setup( name="blake-archive", version="0.1", description="Blake archive web app", license="Closed source", packages=['blake', 'test'], long_description=read('README'), ...
from openerp.osv import osv, fields class res_partner(osv.Model): _inherit = 'res.partner' _order = "parent_left" _parent_order = "ref" _parent_store = True _columns = { 'parent_right': fields.integer('Parent Right', select=1), 'parent_left': fields.integer('Parent Left', select=1), ...
from py.test import mark from translate.filters import checks from translate.lang import data from translate.storage import po, xliff def strprep(str1, str2, message=None): return data.normalized_unicode(str1), data.normalized_unicode(str2), data.normalized_unicode(message) def passes(filterfunction, str1, str2): ...
""" This page is in the table of contents. Skeinlayer is an analyze viewer to display each layer of a gcode file. The skeinlayer manual page is at: http://fabmetheus.crsndoo.com/wiki/index.php/Skeinforge_Skeinlayer Skeinlayer is derived from Nophead's preview script. The extruded lines are in the resistor colors red, ...
"""Persistent identifier minters.""" from __future__ import absolute_import, print_function from .providers import CDSRecordIdProvider def recid_minter(record_uuid, data): """Mint record identifiers.""" assert 'recid' not in data provider = CDSRecordIdProvider.create( object_type='rec', object_uuid=...
import re import scipy from scipy import optimize from scipy import linalg from pylab import * def read_log(ac_id, filename, sensor): f = open(filename, 'r') pattern = re.compile("(\S+) "+ac_id+" IMU_"+sensor+"_RAW (\S+) (\S+) (\S+)") list_meas = [] while 1: line = f.readline().strip() i...
import os from setuptools import setup readme = os.path.join(os.path.dirname(__file__), 'README.md') setup(name = 'bottleneck', version = '0.1.0', description = 'performance report generator for OpenMP programs in GNU/Linux', long_description = open(readme).read(), author = 'Andres More', ...
import os from PyQt4.QtCore import pyqtSignal from PyQt4.QtGui import QComboBox, QDoubleValidator from configmanager.editorwidgets.core import ConfigWidget from configmanager.editorwidgets.uifiles.ui_numberwidget_config import Ui_Form class NumberWidgetConfig(Ui_Form, ConfigWidget): description = 'Number entry widg...
""" This is the main widget of the xc2424scan application This widget is self contained and can be included in any other Qt4 application. """ __all__ = ["ScanWidget"] from PyQt4.QtCore import QDir, QObject, QRect, Qt, SIGNAL from PyQt4.QtGui import QWidget, QFileDialog, QListWidgetItem, QPixmap, \ ...
'''synthesize structurally interesting change history This extension is useful for creating a repository with properties that are statistically similar to an existing repository. During analysis, a simple probability table is constructed from the history of an existing repository. During synthesis, these properties ar...
from Xml.Xslt import test_harness sheet_str = """<?xml version="1.0"?> <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"> <xsl:template match="/"> <root> <xsl:apply-templates/> </root> </xsl:template> <xsl:template name="do-the-rest"> <xsl:param name="start"/> <xsl:param name="count"/...
import sys import subprocess import os import optparse import tempfile import shutil from urlgrabber import grabber import time import mockbuild.util __VERSION__ = "unreleased_version" SYSCONFDIR = os.path.join(os.path.dirname(os.path.realpath(sys.argv[0])), "..", "etc") PYTHONDIR = os.path.dirname(os.path.realpath(sys...
import gettext _ = gettext.translation('yali', fallback=True).ugettext from PyQt5.Qt import QWidget, pyqtSignal, QVariant import yali.util import yali.localedata import yali.postinstall import yali.context as ctx from yali.gui import ScreenWidget from yali.gui.Ui.keyboardwidget import Ui_KeyboardWidget class Widget(QWi...
""" urlresolver Kodi plugin Copyright (C) 2011 t0mm0 Updated by Gujal (C) 2016 This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your ...
import sys, os my_site = os.path.join(os.environ["HOME"], ".local/lib/python2.7/site-packages") sys.path.insert(0, my_site) import h5py import networkx as nx import numpy as np import pycuda.driver as cuda import scipy.stats as st import sys import aux from consts import * def to_graph(connections): graph = nx.DiGr...
# coding=utf-8 from __future__ import print_function, unicode_literals __author__ = "Sally Wilsak" import codecs import os import sys import textwrap import unittest import import_resolver if sys.stdout.encoding != 'utf8': sys.stdout = codecs.getwriter('utf8')(sys.stdout, 'strict') if sys.stderr.encoding != 'utf8': ...
from twitter_rec import Api import time USERNAME = "liaoyisheng89@sina.com" PASSWD = "bigdata" s = Api.Session(USERNAME, PASSWD, debug=False) s.connect() counter = 0 while True: _ = s.read("/AllenboChina/followers") if "eason" in _: print counter counter += 1 else: assert False
import cv if __name__ == "__main__": capture = cv.CaptureFromCAM(-1) cv.NamedWindow("image") while True: frame = cv.QueryFrame(capture) cv.ShowImage("image", frame) k = cv.WaitKey(10) if k % 256 == 27: break cv.DestroyWindow("image")
from __future__ import with_statement import gtk, gobject, sys, os import pango from lib import * from libu import * class ComputerDoctorPane(gtk.VBox): icon = D+'sora_icons/m_computer_doctor.png' text = _('Computer\nDoctor') def render_type_func(self, column, cell, model, iter): cure_obj = model.ge...
import os import re import netifaces as ni from socket import * from Components.Console import Console from Components.PluginComponent import plugins from Plugins.Plugin import PluginDescriptor from boxbranding import getBoxType class Network: def __init__(self): self.ifaces = {} self.configuredNetworkAdapters = [...
class RC(object): """Return codes of binaries used throughout this project. See ``source`` for more details.""" SUCCESS = 0 INCORRECT_ARGS = 1 NO_INTERNET = 2 NO_KANO_WORLD_ACC = 3 CANNOT_CREATE_FLAG = 4 # read-only fs? # kano-feedback-cli specific. ERROR_SEND_DATA = 10 ERROR_CO...
import sys,csv import codecs import os def charStat (text): # set default value stat = {} # go through the characters one by one for character in text: #print (character) # retrieve current value for a character, # and 0 if still not in list # update the list stat[character] = stat.get(character,0) + 1 #...
import sys import optparse import socket def main(): p = optparse.OptionParser() p.add_option("--port", "-p", default=8888) p.add_option("--input", "-i", default="test.txt") options, arguments = p.parse_args() sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM) sock.connect(("localhost", op...
""" Entrance of ICM Desktop Agent """ import os import signal import sys import time import socket from twisted.internet import reactor from twisted.internet import task from umit.icm.agent.logger import g_logger from umit.icm.agent.BasePaths import * from umit.icm.agent.Global import * from umit.icm.agent.Version impo...
import ArtusConfigBase as base import mc def config(): conf = mc.config() l = [] for pipeline in conf['Pipelines']: if not pipeline.startswith('all'): l.append(pipeline) elif 'CHS' not in pipeline: l.append(pipeline) for pipeline in l: del conf['Pipeli...
import os import pytest import testinfra.utils.ansible_runner testinfra_hosts = testinfra.utils.ansible_runner.AnsibleRunner( os.environ['MOLECULE_INVENTORY_FILE']).get_hosts('all') DEB_PACKAGES = ['percona-server-mongodb', 'percona-server-mongodb-server', 'percona-server-mongodb-mongos', 'percona-s...
"""Unit tests for utility functions.""" from __future__ import absolute_import from invenio.testsuite import InvenioTestCase, make_test_suite, run_test_suite class HoldingPenUtilsTest(InvenioTestCase): """Test basic utility functions for Holding Pen.""" def test_get_previous_next_objects_empty(self): ""...
from __future__ import print_function import atexit import tempfile import shutil import os import sys from gettext import gettext as _ import gtk import pango from . import melddoc from . import misc from . import paths from . import recent from . import tree from . import vc from .ui import emblemcellrenderer from .u...
""" blank screen to stop game being played out-of-hours """ import random import os import pygame import pygame.locals from ctime_common import go_fullscreen class BlankScreen(): """ a blank screen with no controls """ def __init__(self, ctime, screen_width, screen_height, log): log.info('Time for bed s...
""" Asynchronous communication to phone. Mostly you should use only L{GammuWorker} class, others are only helpers which are used by this class. """ import queue import threading import gammu class InvalidCommand(Exception): """ Exception indicating invalid command. """ def __init__(self, value): ...
import os import sys from merge_utils import * xml_out = etree.Element("packages") funtoo_staging_w = GitTree("funtoo-staging", "master", "repos@localhost:ports/funtoo-staging.git", root="/var/git/dest-trees/funtoo-staging", pull=False, xml_out=xml_out) xmlfile="/home/ports/public_html/packages.xml" nopush=False funtoo...
""" binlog_purge_rpl test for ms test and BUG#22543517 running binlogpurge on second master added to slave replication channels """ import replicate_ms from mysql.utilities.exception import MUTLibError _CHANGE_MASTER = ("CHANGE MASTER TO MASTER_HOST = 'localhost', " "MASTER_USER = 'rpl', MASTER_PASSWO...
from abc import ABCMeta,abstractmethod from my_hue import * def trigger_factory(trigger_type): return None class Trigger(object): __metaclass__ = ABCMeta def __init__(self): self.action() @abstractmethod def action(self): pass class IClickerTrigger(object): def __init__(self, cli...
from __future__ import absolute_import from unittest import TestCase from datetime import datetime, timedelta from voeventdb.server.tests.fixtures import fake, packetgen class TestBasicRoutines(TestCase): def setUp(self): self.start = datetime(2015, 1, 1) self.interval = timedelta(minutes=15) de...
import sqlite3 import os.path import sys import random def makeDatabase(databaseName): if databaseName[-3:] != ".db": databaseName = databaseName + ".db" conn = sqlite3.connect(databaseName) conn.commit() conn.close() def listToString(list): string = "" for i in list: string += str(i)+"\t" return string[:-1]...
from sklearn.base import BaseEstimator from sklearn.base import ClassifierMixin from sklearn.preprocessing import LabelEncoder from sklearn.externals import six from sklearn.base import clone from sklearn.pipeline import _name_estimators import numpy as np import operator class MajorityVoteClassifier(BaseEstimator,Clas...
from Tools.Profile import profile profile("LOAD:ElementTree") import xml.etree.cElementTree import os profile("LOAD:enigma_skin") from enigma import eSize, ePoint, eRect, gFont, eWindow, eLabel, ePixmap, eWindowStyleManager, addFont, gRGB, eWindowStyleSkinned, getDesktop from Components.config import ConfigSubsection, ...
import logging import tornado.escape import tornado.ioloop import tornado.web import tornado.options import tornado.websocket import tornado.httpserver import os.path from tornado.concurrent import Future from tornado import gen from tornado.options import define, options, parse_command_line import socket import fcntl ...
import os from shutil import copyfile import subprocess from save_embedded_graph27 import main_binary as embed_main from spearmint_ghsom import main as ghsom_main import numpy as np import pickle from time import time def save_obj(obj, name): with open(name + '.pkl', 'wb') as f: pickle.dump(obj, f, pickle.H...
from .base import * CACHES = { 'default' : { 'BACKEND': 'django.core.cache.backends.locmem.LocMemCache' } }
from unittest import TestCase from pyage.core import inject from pyage_forams.solutions.foram import Foram class TestForam(TestCase): def test_step(self): inject.config = "pyage_forams.conf.dummy_conf" foram = Foram(10) # foram.step()
""" SuperPython - Teste de Funcionalidade Web Verifica a funcionalidade do servidor web. """ __author__ = 'carlo' import unittest import sys import bottle import os import sys import os project_server = os.path.dirname(os.path.abspath(__file__)) project_server = os.path.join(project_server, '../src/') sys.path.insert(0...
import codecs def funct(f_name): """Remove leading and trailing whitespace from file.""" f_read = codecs.open(f_name, 'r') f_lines = f_read.readlines() out_lines = map(str.strip, f_lines) f_read.close() while True: o_write = raw_input("Create new file (c) or overwrite existing (o): ") ...
from __future__ import absolute_import from testutil.dott import feature, sh, testtmp # noqa: F401 feature.require(["symlink"]) sh % "hg init repo" sh % "cd repo" sh % "ln -s foo link" sh % "hg add link" sh % "hg ci -mbad link" sh % "hg rm link" sh % "hg ci -mok" sh % "hg diff -g -r '0:1'" > "bad.patch" sh % "hg up 0"...
import pytest from cfme.cloud.provider.azure import AzureProvider from cfme.markers.env_markers.provider import ONE_PER_CATEGORY from cfme.networks.views import BalancerView from cfme.networks.views import CloudNetworkView from cfme.networks.views import FloatingIpView from cfme.networks.views import NetworkPortView fr...
import unittest from mock import Mock, patch from expyrimenter import Executor from expyrimenter.runnable import Runnable from subprocess import CalledProcessError from concurrent.futures import ThreadPoolExecutor import re class TestExecutor(unittest.TestCase): output = 'TestExecutor output' outputs = ['TestEx...
from django.contrib import admin from .models import Environment,EnvironmentAdmin,Component,ComponentAdmin,Environment_property,Environment_propertyAdmin,Component_attribute,Component_attributeAdmin admin.site.register(Environment,EnvironmentAdmin) admin.site.register(Component,ComponentAdmin) admin.site.register(Envir...
"HDL Checker installation script" import setuptools # type: ignore import versioneer LONG_DESCRIPTION = open("README.md", "rb").read().decode(encoding='utf8', errors='replace') CLASSIFIERS = """\ Development Status :: 5 - Production/Stable Environment :: Console Intended Audience :: Developers License :: OSI Approved ...
import html.parser class PyllageParser(html.parser.HTMLParser): def __init__(self): super().__init__() self.counter = 1 self.stack = {1: {"tag": "", "attrs": "", "data": []}} def handle_previous_tag(self): """Checks whether previously handled tag was significant.""" previ...
from __future__ import (absolute_import, division, print_function) __metaclass__ = type import datetime import signal import sys import termios import time import tty from os import ( getpgrp, isatty, tcgetpgrp, ) from ansible.errors import AnsibleError from ansible.module_utils._text import to_text, to_nat...
import os import unittest from vsg.rules import package from vsg import vhdlFile from vsg.tests import utils sTestDir = os.path.dirname(__file__) lFile, eError =vhdlFile.utils.read_vhdlfile(os.path.join(sTestDir,'rule_001_test_input.vhd')) dIndentMap = utils.read_indent_file() lExpected = [] lExpected.append('') utils....
import requests import xml.etree.ElementTree as ET from time import sleep class QualysAPI: """Class to simplify the making and handling of API calls to the Qualys platform Class Members ============= server : String : The FQDN of the API server (with https:// prefix) user : Stri...
__author__ = 'Patrick Michl' __email__ = 'frootlab@gmail.com' __license__ = 'GPLv3' import nemoa import numpy class Links: """Class to unify common ann link attributes.""" params = {} def __init__(self): pass @staticmethod def energy(dSrc, dTgt, src, tgt, links, calc = 'mean'): """Return lin...
import glob import os.path import re import hashlib from bs4 import BeautifulSoup from subprocess import call, Popen, PIPE, STDOUT root = "/home/alex/tidalcycles.github.io/_site/" dnmatcher = re.compile(r'^\s*d[0-9]\s*(\$\s*)?') crmatcherpre = re.compile(r'^[\s\n\r]*') crmatcherpost = re.compile(r'[\s\n\r]*$') sizematc...
"""Usage: codetrawl.dump PATTERN FILE [FILE...] where PATTERN is a Python format string like "{raw_url}", with allowed keys: - service - query - repo - path - raw_url - content """ import sys import docopt from .read import read_matches if __name__ == "__main__": args = docopt.docopt(__doc__) for ...
import platform from PyQt5.QtGui import QIcon, QFont, QFontDatabase from PyQt5.QtCore import QSize class StyleDB(object): def __init__(self): # ---- frame self.frame = 22 self.HLine = 52 self.VLine = 53 self.sideBarWidth = 275 # ----- colors self.red = '#C8373...
import unittest import wire class TestSQLString(unittest.TestCase): def setUp(self): '''Sets up the test case''' self.sql = wire.SQLString def test_pragma(self): '''Tests the PRAGMA SQL generation''' self.assertEqual(self.sql.pragma("INTEGRITY_CHECK(10)"), "PRAGMA INTEGRITY_CHECK(10)") self.assertEqual(self...
import SOAP import supybot.utils as utils from supybot.commands import * import supybot.callbacks as callbacks class UrbanDict(callbacks.Plugin): threaded = True server = SOAP.SOAPProxy('http://api.urbandictionary.com/soap') def _licenseCheck(self, irc): license = self.registryValue('licenseKey') ...
""" """ from DIRAC import S_OK, S_ERROR from DIRAC.Core.Utilities.CFG import CFG from DIRAC.Core.Utilities import List from DIRAC.ConfigurationSystem.Client.Helpers.Operations import Operations from DIRAC.Core.Utilities.JDL import loadJDLAsCFG, dumpCFGAsJDL from DIRAC.WorkloadManagementSystem.Agent.SiteDirector import ...
import os import argparse from logger import HoneyHornetLogger from threading import BoundedSemaphore import threading import logging from datetime import date, datetime from termcolor import colored import http.client import re import time class ViewChecker(HoneyHornetLogger): def __init__(self, config=None): ...
import os import subprocess import scipy.io as sio import bet.sampling.basicSampling as bsam def lb_model(input_data): io_file_name = "io_file" io_mdat = dict() io_mdat['input'] = input_data # save the input to file sio.savemat(io_file_name, io_mdat) # run the model subprocess.call(['python'...
"""Almanac data This module can optionally use PyEphem, which offers high quality astronomical calculations. See http://rhodesmill.org/pyephem. """ import time import sys import math import weeutil.Moon import weewx.units try: import ephem except ImportError: import weeutil.Sun class Almanac(): """Almanac d...
import tornado.httpserver import tornado.ioloop import tornado.options import tornado.web import tornado.httpclient import lcs from urllib import quote from urllib import unquote from tornado import gen import ttlrcdump listen_port = 38439 def ChooiseItem(xml, artist): #print '======================================...
from edu.umd.rhsmith.diads.tools.sentiment import ISentimentAnalyzer import pickle import re import os import sys import time import traceback import nltk from nltk.corpus import stopwords class SentimentAnalyzerP(ISentimentAnalyzer, object): ''' Sentiment Analyzer Utility ''' def __init__(self, classifierFilename,...
import unittest from cron_status import * class TestChangeDetection(unittest.TestCase): """Test if the change detection is operational.""" # Please note that status_history_list is backwards, # i.e., newest entry first. def test_all_okay(self): status_history_list = [ {'foo': (Contai...
from __future__ import unicode_literals from django.db import migrations, models import django.db.models.deletion class Migration(migrations.Migration): initial = True dependencies = [ ] operations = [ migrations.CreateModel( name='Class_year', fields=[ ('...
import os import sys def usage(): print "{0} <feed>".format(os.path.basename(__file__)) if __name__ == '__main__': kmotion_dir = os.path.abspath(os.path.join(os.path.dirname(__file__), '..')) sys.path.append(kmotion_dir) from core.camera_lost import CameraLost feed = '' if len(sys.argv) > 1: ...
__version__="1.0.1"
""" Root finding methods ==================== Routines in this module: bisection(f, a, b, eps=1e-5) newton1(f, df, eps=1e-5) newtonn(f, J, x0, eps=1e-5) secant(f, x0, x1, eps=1e-5) inv_cuadratic_interp(f, a, b, c, eps=1e-5) lin_fracc_interp(f, a, b, c, eps=1e-5) broyden(f, x0, B0, eps=1e-5) """ import numpy as np ''' *...
''' Copyright (C) 2014 Janina Mass This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that ...
from emburse.resource import ( EmburseObject, Account, Allowance, Card, Category, Company, Department, Label, Location, Member, SharedLink, Statement, Transaction ) class Client(EmburseObject): """ Emburse API Client API enables for the creation of expense...
from django.conf.urls import url from . import views urlpatterns = [ url(r'^([a-zA-Z0-9_\-]+)/$', views.poll, name='poll'), url(r'^([a-zA-Z0-9_\-]+).csv$', views.poll, {'export': True}, name='poll_export_csv'), url(r'^([a-zA-Z0-9_\-]+)/comment/$', views.comment, name='poll_comment'), url(r'^([a-zA-Z0-9_...
import unittest import base import todo class AppendTest(base.BaseTest): def test_append(self): todo.cli.addm_todo("\n".join(self._test_lines_no_pri(self.num))) for i in range(1, self.num + 1): todo.cli.append_todo([str(i), "testing", "append"]) self.assertNumLines(self.num, "Tes...
import json from django.http import HttpResponse from django.contrib.auth.models import User from django.shortcuts import get_object_or_404 from apps.exercises.models import Attempts from apps.maps.models import Graphs from apps.ki.utils import performInference from apps.research.utils import getParticipantByUID, study...
copying_str = \ ''' GNU GENERAL PUBLIC LICENSE Version 3, 29 June 2007 Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/> Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allow...
from .common_settings import * DEBUG = True TEMPLATE_DEBUG = DEBUG SECRET_KEY = 'dz(#w(lfve24ck!!yrt3l7$jfdoj+fgf+ru@w)!^gn9aq$s+&y' DATABASES = { 'default': { 'ENGINE': 'django.db.backends.sqlite3', 'NAME': os.path.join(BASE_DIR, 'db.sqlite3'), } }
"""Module for generating CTS test descriptions and test plans.""" import glob import os import re import shutil import subprocess import sys import xml.dom.minidom as dom from cts import tools from multiprocessing import Pool def GetSubDirectories(root): """Return all directories under the given root directory.""" ...
''' author: Tomasz Spustek e-mail: tomasz@spustek.pl University of Warsaw, July 06, 2015 ''' import numpy as np import scipy.stats as scp import matplotlib.pyplot as plt from scipy.io import loadmat from src.dictionary import tukey def generateTestSignal(gaborParams , sinusParams , asymetricWaveformsAParams , rec...
import glob import logging import ConfigParser from lxml import etree log = logging.getLogger('CommonSetting') class RawConfigSetting(object): '''Just pass the file path''' def __init__(self, path, type=type): self._type = type self._path = path self.init_configparser() def _type_con...
""" autoxml is a metaclass for automatic XML translation, using a miniature type system. (w00t!) This is based on an excellent high-level XML processing prototype that Gurer prepared. Method names are mixedCase for compatibility with minidom, an old library. """ import locale import codecs import types import form...
from __future__ import absolute_import from base64 import b64encode from socket import error as SocketError from hashlib import md5, sha1 from binascii import hexlify, unhexlify import sys from core.backports.collections import namedtuple try: from select import poll, POLLIN except ImportError: # `poll` doesn't ex...
import boto3 sqs = boto3.resource('sqs') queue = sqs.get_queue_by_name(QueueName='test') print(queue.url) print(queue.attributes.get('DelaySeconds'))
import cryspy.numbers import cryspy.geo class Goniometer: def __init__(self, motiontype, axis, direction, parametername): assert motiontype in ["translation", "rotation"], \ "First parameter for creating a Goniometer " \ "must be one of the strings " \ "'translation' or '...
import sys # NOQA import profile import ConfigParser import pygame from pygame import * from static_functions import * import camera as camera import planet as planet from orbitable import GCD_Singleton, SoundSystem_Singleton from helldebris_collection import HellDebrisCollection from team import Team from simplestats...
import pickle import time from PyQt5 import QtCore, QtWidgets, QtWidgets from random import randint class Quill: class Event: NIL, LOC, MSG, OBJ, SWAP, PLC = tuple(range(100, 106)) cond_ops = [("AT", "data.location_no == param1"), ("NOT AT", "data.location_no != param1"), ...