repo_name
stringlengths
5
92
path
stringlengths
4
232
copies
stringclasses
19 values
size
stringlengths
4
7
content
stringlengths
721
1.04M
license
stringclasses
15 values
hash
int64
-9,223,277,421,539,062,000
9,223,102,107B
line_mean
float64
6.51
99.9
line_max
int64
15
997
alpha_frac
float64
0.25
0.97
autogenerated
bool
1 class
flavour/cedarbluff
modules/eden/project.py
1
132447
# -*- coding: utf-8 -*- """ Sahana Eden Project Model @copyright: 2011-2012 (c) Sahana Software Foundation @license: MIT Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software witho...
mit
-1,446,498,629,031,835,600
40.312227
219
0.415691
false
jangler/vcii
vcii/test/test_sheet.py
1
2485
import random import unittest from vcii.sheet import * class TestSheet(unittest.TestCase): def test_key_to_indices(self): with self.assertRaises(ValueError): indices_from_label('1A') self.assertEqual(indices_from_label('A1'), (0, 0)) self.assertEqual(indices_from_label('zz99'...
mit
-3,295,605,350,344,006,700
33.513889
79
0.597183
false
thorwhalen/ut
ml/stream/sequences.py
1
6137
from sklearn.base import BaseEstimator from collections import Counter import pandas as pd from numpy import sum, nan, isnan from ut.util.uiter import window class NextElementPredictor(BaseEstimator): def predict(self, seqs): preds = self.predict_proba(seqs) return [max(pred, key=lambda key: pr...
mit
5,309,313,774,185,950,000
37.118012
120
0.608604
false
kivhift/qmk
src/commands/help.py
1
1442
# # Copyright (c) 2009-2012 Joshua Hughes <kivhift@gmail.com> # import atexit import os import tempfile import urllib import webbrowser import qmk class HelpCommand(qmk.Command): ''' View help for all available commands. A new tab will be opened in the default web browser that contains the help for all o...
mit
-3,162,210,888,576,345,000
31.772727
79
0.576976
false
demisto/content
Packs/WindowsForensics/Scripts/RegistryParse/RegistryParse_test.py
1
1112
import json import RegistryParse as reg_parse def util_load_json(path): with open(path, mode='r', encoding='utf-8') as f: return json.loads(f.read()) def test_get_sub_keys(): key = 'HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion\\ProfileList' folder_output_key = 'Sid' mo...
mit
7,210,574,577,760,528,000
38.714286
92
0.670863
false
KDE/twine2
kdelibs.py
1
37607
# -*- coding: utf-8 -*- # Copyright 2009-2010 Simon Edwards <simon@simonzone.com> # # 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 2 of the License, or # (at your option) any...
lgpl-3.0
-8,934,794,075,207,159,000
43.505325
738
0.658468
false
josiah-wolf-oberholtzer/supriya
tests/nonrealtime/test_nonrealtime_Session_zero_duration.py
1
2475
import pytest import supriya.assets.synthdefs import supriya.nonrealtime import supriya.synthdefs import supriya.ugens def test_manual_with_gate(): session = supriya.nonrealtime.Session(0, 2) with session.at(0): group = session.add_group(duration=4) for i in range(4): with session.at(i): ...
mit
6,077,712,018,084,925,000
29.9375
79
0.486465
false
pombredanne/hitch
hitch/commandline.py
1
10374
"""High level command line interface to hitch.""" from subprocess import call, PIPE, STDOUT, CalledProcessError, Popen from hitch.click import command, group, argument, option from os import path, makedirs, listdir, kill, remove from sys import stderr, exit, modules, argv from functools import partial from hitch import...
agpl-3.0
-3,730,368,201,072,467,000
36.182796
103
0.613264
false
locaweb/simplenet
src/simplenet/common/event.py
1
4587
# Copyright 2012 Locaweb. # All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by appli...
mit
479,172,603,894,329,150
33.75
106
0.51755
false
certik/sfepy
sfepy/base/conf.py
1
10020
import re from base import Struct, IndexedStruct, dict_to_struct, pause, output, copy,\ import_file, assert_, get_default from reader import Reader _required = ['filename_mesh', 'field_[0-9]+|fields', 'ebc_[0-9]+|ebcs', 'fe', 'equations', 'region_[0-9]+|regions', 'variable_[0-9]+|variab...
bsd-3-clause
5,469,896,234,037,747,000
31.960526
81
0.518762
false
asposeforcloud/Aspose_Cloud_SDK_For_Python
asposecloud/email/__init__.py
1
7149
__author__ = 'assadmahmood' import requests import json from asposecloud import Product from asposecloud import AsposeApp from asposecloud.common import Utils # ======================================================================== # DOCUMENT CLASS # ================================================================...
mit
-1,981,531,942,469,692,000
34.567164
118
0.566093
false
swprojects/wxPieTool
pyimager.py
1
8720
""" wxPieTool - wxPython Image Embedding Tool Copyright 2016 Simon Wu <swprojects@gmx.com> 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 2 of the License, or (at your option) any la...
gpl-2.0
3,023,426,488,338,498,600
34.741803
96
0.607798
false
pli3/e2-openwbif
plugin/controllers/views/web/powerstate.py
1
5042
#!/usr/bin/env python ################################################## ## DEPENDENCIES import sys import os import os.path try: import builtins as builtin except ImportError: import __builtin__ as builtin from os.path import getmtime, exists import time import types from Cheetah.Version import MinCompatib...
gpl-2.0
7,429,331,706,846,930,000
32.838926
192
0.626934
false
erigones/esdc-ce
api/mon/backends/abstract/server.py
1
1705
from django.utils.text import Truncator from django.utils.translation import ugettext_lazy as _ # noinspection PyProtectedMember from vms.models.base import _DummyModel, _UserTasksModel from vms.models import Dc class AbstractMonitoringServer(_DummyModel, _UserTasksModel): """ Abstract model for representing...
apache-2.0
4,198,058,031,038,698,500
24.833333
72
0.653959
false
umlfri/umlfri2
umlfri2/qtgui/canvas/scrolledcanvaswidget.py
1
1410
from PyQt5.QtCore import QPoint from PyQt5.QtCore import Qt from PyQt5.QtGui import QWheelEvent from PyQt5.QtWidgets import QScrollArea from .canvaswidget import CanvasWidget class ScrolledCanvasWidget(QScrollArea): def __init__(self, main_window, drawing_area): super().__init__() self._...
gpl-3.0
4,295,992,312,250,899,000
34.25
82
0.52766
false
carbureted/shavar-prod-lists
scripts/json_verify.py
1
6963
#!/usr/bin/env python # -*- coding: utf-8 -*- import argparse import glob import json import re from types import DictType, ListType, UnicodeType from urlparse import urlparse parser = argparse.ArgumentParser(description='Verify json files for shavar.') parser.add_argument("-f", "--file", help="filename to verify") ...
gpl-3.0
-808,360,885,678,404,500
27.892116
78
0.507827
false
kamalx/edx-platform
lms/djangoapps/discussion_api/tests/test_api.py
1
90651
""" Tests for Discussion API internal interface """ from datetime import datetime, timedelta import itertools from urlparse import parse_qs, urlparse, urlunparse from urllib import urlencode import ddt import httpretty import mock from pytz import UTC from django.core.exceptions import ValidationError from django.htt...
agpl-3.0
-6,897,488,860,505,443,000
38.259853
118
0.553916
false
att-comdev/deckhand
deckhand/common/validation_message.py
1
2620
# Copyright 2018 AT&T Intellectual Property. All other rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required...
apache-2.0
4,281,113,961,153,711,000
38.104478
118
0.646183
false
gwct/grampa
lib/spec_tree.py
1
5143
import sys, os, reconcore as RC, recontree as RT, global_vars as globs ############################################################################# def readSpecTree(spec_tree_input, starttime): if os.path.isfile(spec_tree_input): spec_tree = open(spec_tree_input, "r").read().replace("\n", "").replace("\r",""); e...
gpl-3.0
-548,104,545,586,755,300
43.336207
145
0.634649
false
beeftornado/sentry
src/sentry/roles/manager.py
1
2011
from __future__ import absolute_import import six from collections import OrderedDict class Role(object): def __init__(self, priority, id, name, desc="", scopes=(), is_global=False): assert len(id) <= 32, "Role id must be no more than 32 characters" self.priority = priority self.id = id...
bsd-3-clause
2,672,312,002,791,817,700
24.455696
80
0.567379
false
akrherz/iem
htdocs/DCP/ahpsxml2wxc.py
1
2188
"""Convert the AHPS XML into WXC format""" import datetime from paste.request import parse_formvars from twisted.words.xish import domish, xpath import requests def do(nwsli): """work""" res = "" xml = requests.get( ( "https://water.weather.gov/ahps2/" "hydrograph_to_xml.p...
mit
-4,720,805,943,521,046,000
27.051282
69
0.528793
false
soaplib/soaplib
setup.py
1
2916
#!/usr/bin/env python from unittest import TestLoader from pkg_resources import resource_exists from pkg_resources import resource_listdir from setuptools import setup, find_packages VERSION = '2.0.0' LONG_DESC = """\ This is a simple, easily extendible soap library that provides several useful tools for creating and...
lgpl-2.1
-7,305,585,574,414,316,000
32.136364
77
0.60631
false
tictail/claw
claw/utils.py
1
2061
# -*- coding: utf-8 -*- import logging from random import shuffle from claw.constants import RE_DELIMITER log = logging.getLogger(__name__) def safe_format(format_string, *args, **kwargs): """ Helper: formats string with any combination of bytestrings/unicode strings without raising exceptions """...
apache-2.0
-4,425,286,584,638,680,600
25.802632
73
0.621993
false
QTB-HHU/ModelHeatShock
HSM_VaryParamsRMSvsData.py
1
30309
from copy import deepcopy import math #from HSM_ParametersClass import * from HSM_SimulateClass import * def GenerateRandomParametersSets(NumberOfRandomSets, FactorOf, DefaultParamSetRATES): """GENERATE SETS OF RANDOM PARAMETERS FROM A FLAT DISTRIBUTION CENTERED AROUND FIDUCIAL VALUES AND WITHIN A FACTOR OF F...
gpl-3.0
-8,061,149,291,241,139,000
47.4944
308
0.711241
false
layus/INGInious
backend/tests/TestRemoteDocker.py
1
6508
# -*- coding: utf-8 -*- # # Copyright (c) 2014-2015 Université Catholique de Louvain. # # This file is part of INGInious. # # INGInious is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published # by the Free Software Foundation, either version 3 o...
agpl-3.0
1,654,411,361,262,695,700
34.752747
137
0.685877
false
AutorestCI/azure-sdk-for-python
azure-cognitiveservices-vision-customvision/azure/cognitiveservices/vision/customvision/prediction/prediction_endpoint.py
1
14280
# coding=utf-8 # -------------------------------------------------------------------------- # Copyright (c) Microsoft Corporation. All rights reserved. # Licensed under the MIT License. See License.txt in the project root for # license information. # # Code generated by Microsoft (R) AutoRest Code Generator. # Changes ...
mit
-8,334,644,218,442,024,000
39.338983
131
0.646289
false
Strubbl/pynder
pynder.py
1
7110
#!/usr/bin/env python # -*- coding: utf-8 -*- """ This file is part of Pynder. Pynder 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 ...
gpl-3.0
-5,437,938,528,855,794,000
35.984375
128
0.558513
false
melodous/designate
designate/schema/resolvers.py
1
1348
# Copyright 2013 Hewlett-Packard Development Company, L.P. # # Author: Kiall Mac Innes <kiall@hp.com> # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain # a copy of the License at # # http://www.apache.org/licenses/L...
apache-2.0
-8,684,722,769,681,558,000
33.564103
75
0.707715
false
pjh/vm-analyze
analyze/oldscripts/gather_proc.py
1
3609
#! /usr/bin/env python3.3 # Virtual memory analysis scripts. # Developed 2012-2014 by Peter Hornyack, pjh@cs.washington.edu # Copyright (c) 2012-2014 Peter Hornyack and University of Washington from vm_regex import * from pjh_utils import * import vm_common as vm import errno import os import re import stat import sys...
bsd-3-clause
-7,003,235,764,294,394,000
27.195313
75
0.688556
false
andreasvc/disco-dop
web/browse.py
1
12449
"""Web interface to browse a corpus with various visualizations.""" # stdlib import os import re import sys import glob import math import logging from collections import OrderedDict from functools import wraps import matplotlib matplotlib.use('AGG') import matplotlib.cm as cm import pandas # Flask & co from flask impo...
gpl-2.0
-5,266,283,117,673,447,000
31.674541
79
0.660053
false
cloud-rocket/python-OBD
obd/decoders.py
1
9011
######################################################################## # # # python-OBD: A python OBD-II serial module derived from pyobd # # # # Copyright 2004 Donour Siz...
gpl-2.0
8,309,814,910,839,828,000
23.687671
72
0.487182
false
ryneches/SuchTree
SuchTree/tests/test_SuchTree.py
1
3768
from __future__ import print_function import pytest from pytest import approx from SuchTree import SuchTree from dendropy import Tree from itertools import combinations, chain import numpy try : import networkx has_networkx = True except ImportError : has_networkx = False test_tree = 'SuchTree/tests/test...
bsd-3-clause
-5,152,190,606,593,604,000
30.4
97
0.573779
false
MERegistro/meregistro
meregistro/apps/seguridad/models/Rol.py
1
1354
# -*- coding: UTF-8 -*- from django.db import models from apps.seguridad.models import Credencial, TipoAmbito class Rol(models.Model): ROL_ADMIN_NACIONAL = 'AdminNacional' ROL_ADMIN_SEGURIDAD = 'AdminSeguridad' ROL_REFERENTE_JURISDICCIONAL = 'ReferenteJurisdiccional' ROL_REFERENTE_INSTITUCIONAL ...
bsd-3-clause
5,661,577,332,660,196,000
31.238095
106
0.679468
false
hasgeek/funnel
tests/unit/models/test_user_User.py
1
15870
from datetime import timedelta import pytest from coaster.utils import utcnow import funnel.models as models def test_user(db_session): """Test for creation of user object from User model.""" user = models.User(username='hrun', fullname="Hrun the Barbarian") db_session.add(user) db_session.commit() ...
agpl-3.0
4,014,777,160,011,535,000
35.150342
100
0.692691
false
jtratner/sudoku-fuzzer-udacity
fuzz_solver.py
1
9025
# Use a different solved board to generate different tests. valid = [[5,3,4,6,7,8,9,1,2], [6,7,2,1,9,5,3,4,8], [1,9,8,3,4,2,5,6,7], [8,5,9,7,6,1,4,2,3], [4,2,6,8,5,3,7,9,1], [7,1,3,9,2,4,8,5,6], [9,6,1,5,3,7,2,8,4], [2,8,7,4,1,9,6,3,5], [3,4,5,2,8,...
mit
-7,949,316,682,714,491,000
39.470852
231
0.601994
false
osspeak/osspeak
osspeak/recognition/commands/monitor.py
1
3535
import threading import collections import log import copy import asyncio import settings import clargs from recognition.actions.library import pywindow from recognition.commands import loader from recognition.actions import perform from communication import topics, pubsub import time def create_message_subscriptions...
mit
532,628,761,851,594,700
47.438356
125
0.722772
false
jamielennox/django-openstack-auth-websso
openstack_auth_websso/plugin.py
1
2014
# Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain # a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under t...
apache-2.0
-5,599,959,279,583,941,000
37.730769
75
0.644985
false
0ps/wfuzz
src/wfuzz/mixins.py
1
1871
from .plugin_api.urlutils import parse_url from .exception import FuzzExceptBadInstall # python 2 and 3 import sys if sys.version_info >= (3, 0): from urllib.parse import urljoin else: from urlparse import urljoin class FuzzRequestSoupMixing(object): def get_soup(self): try: from bs4 ...
gpl-2.0
6,004,915,391,877,477,000
27.348485
100
0.5783
false
google-research/google-research
summae/human_and_extractive.py
1
8614
# coding=utf-8 # Copyright 2021 The Google Research Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicab...
apache-2.0
-9,174,223,925,574,483,000
34.01626
80
0.666241
false
jpvanhal/cloudsizzle
cloudsizzle/asi/server.py
1
11139
# -*- coding: utf-8 -*- # # Copyright (c) 2009-2010 CloudSizzle Team # # Permission is hereby granted, free of charge, to any person # obtaining a copy of this software and associated documentation # files (the "Software"), to deal in the Software without # restriction, including without limitation the rights to use, #...
mit
-7,420,965,687,537,019,000
30.735043
79
0.573301
false
diplomacy/research
diplomacy_research/__init__.py
1
1696
# ============================================================================== # Copyright 2019 - Philip Paquette # # NOTICE: Permission is hereby granted, free of charge, to any person obtaining # a copy of this software and associated documentation files (the "Software"), # to deal in the Software without rest...
mit
6,087,254,447,154,937,000
42.487179
103
0.655071
false
MiczFlor/Booktype
lib/booktype/constants.py
1
22740
# This file is part of Booktype. # Copyright (c) 2012 Aleksandar Erkalovic <aleksandar.erkalovic@sourcefabric.org> # # Booktype is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by # the Free Software Foundation, either version 3 of the Li...
agpl-3.0
6,846,859,636,964,900,000
45.790123
97
0.497845
false
pepitogithub/PythonScripts
musica/drumExFachade.py
1
2964
# import pygame import threading import drumExMachina class Fasade: """ Matrix -> reproducir() -> pausar() -> salir() -> volumen-general() -> tempo() -> figura() -> agregar-pista() -> quitar-pi...
gpl-2.0
718,095,634,692,036,600
22.164063
86
0.430162
false
jeffery9/mixprint_addons
ineco_jasper_report/__openerp__.py
1
1946
# -*- coding: utf-8 -*- ############################################################################## # # Copyright (c) 2010 INECO PARTNERSHIP LIMITED (http://openerp.tititab.com) # All Right Reserved # # Author : Tititab Srisookco (thitithup@gmail.com) # # WARNING: This program as such is intended to be used by profe...
agpl-3.0
3,297,264,119,505,475,600
36.423077
78
0.629496
false
stvstnfrd/edx-platform
lms/djangoapps/courseware/views/views.py
1
89915
""" Courseware views functions """ import json import logging from collections import OrderedDict, namedtuple from datetime import datetime import bleach import requests import six from django.conf import settings from django.contrib.auth.decorators import login_required from django.contrib.auth.models import Anonym...
agpl-3.0
646,148,226,935,186,800
41.980402
212
0.656131
false
CasataliaLabs/biscuit_drishtiman
v4l_capture_example.py
1
1279
import Image import select import v4l2capture import numpy import pylab import time # Open the video device. #~ video = v4l2capture.Video_device("/dev/video0") video = v4l2capture.Video_device("http://admin:@192.168.1.105/snapshot.cgi?.mjpeg") # Suggest an image size to the device. The device may choose and # return ...
gpl-3.0
5,290,132,691,312,513,000
28.744186
83
0.713839
false
vipod/pyzimbra
pyzimbra/soap_auth.py
2
6473
# -*- coding: utf-8 -*- """ ################################################################################ # Copyright (c) 2010, Ilgar Mashayev # # E-mail: pyzimbra@lab.az # Website: http://github.com/ilgarm/pyzimbra ################################################################################ # This file is part ...
lgpl-3.0
-5,685,805,696,362,786,000
34.371585
81
0.549359
false
beeftornado/sentry
src/sentry/api/endpoints/group_events.py
1
5127
from __future__ import absolute_import import six from datetime import timedelta from django.utils import timezone from rest_framework.exceptions import ParseError from rest_framework.response import Response from functools import partial from sentry import eventstore from sentry.api.base import EnvironmentMixin fr...
bsd-3-clause
4,531,243,865,721,410,000
38.744186
98
0.634484
false
vygr/Python-PCB
pcb.py
1
3869
#!/opt/local/bin/pypy -tt # -*- coding: utf-8 -*- #Copyright (C) 2014 Chris Hinsley All Rights Reserved import sys, argparse, router from copy import deepcopy from ast import literal_eval from mymath import * def main(): parser = argparse.ArgumentParser(description = 'Pcb layout optimizer.', formatter_class = argpa...
gpl-2.0
-8,110,803,568,652,330,000
51.283784
158
0.632722
false
CanalTP/kirin
tests/integration/piv_worker_test.py
1
6425
# coding: utf8 # # Copyright (c) 2020, Canal TP and/or its affiliates. All rights reserved. # # This file is part of Navitia, # the software to build cool stuff with public transport. # # Hope you'll enjoy and contribute to this project, # powered by Canal TP (www.canaltp.fr). # Help us simplify mobility and op...
agpl-3.0
5,102,547,780,023,800,000
36.138728
107
0.710661
false
notnownikki/quatloo
quatloo/qanda/tests.py
1
7688
from django.test import TestCase, SimpleTestCase from qanda.parser import parse_qa, ParserError from qanda.models import Question, Answer from qanda.factory import get_question, get_answer class QAParserTestCase(SimpleTestCase): def test_extract_question_and_url(self): qa = 'How do I do the thing? http://...
gpl-3.0
-1,262,025,947,253,863,000
39.463158
119
0.598725
false
AntonelliLab/seqcap_processor
bin/aTRAM-master/atram.py
1
8421
#!/usr/bin/env python3 """ Start atram. This wrapper module parses the input arguments and passes them to the module that does the actual processing (core_atram.py). """ import os import argparse import textwrap import lib.db as db import lib.log as log import lib.bio as bio import lib.util as util import lib.blast a...
mit
-5,189,248,304,416,858,000
36.762332
79
0.624273
false
AmericanResearchInstitute/poweru-server
pr_services/user_system/organization_email_domain_manager.py
1
1902
""" OrgEmailDomain manager class @author Chris Church <cchurch@americanri.com> @copyright Copyright 2011 American Research Institute, Inc. """ from pr_services.object_manager import ObjectManager from pr_services.rpc.service import service_method import facade class OrgEmailDomainManager(ObjectManager): """ ...
bsd-3-clause
8,118,541,161,619,871,000
33.581818
128
0.640904
false
ShuboshaKuro/SimpleGameEngine
Test.py
1
1251
import numpy as np import os from matplotlib import pyplot as plt from mpl_toolkits.mplot3d import Axes3D # has to change whenever noise_width and noise_height change in the PerlinNoise.hpp file DIMENSION1 = 200 DIMENSION2 = 200 # works if the working directory is set path = os.path.dirname(os.path.realpath(__file__)...
mit
6,276,378,628,629,430,000
27.431818
108
0.67466
false
OCA/account-financial-tools
account_journal_lock_date/tests/test_journal_lock_date.py
1
8511
# Copyright 2017 ACSONE SA/NV # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). from datetime import date, timedelta from odoo import tools from odoo.modules import get_module_resource from odoo.tests import common from ..exceptions import JournalLockDateError class TestJournalLockDate(common.Transac...
agpl-3.0
2,972,015,974,190,809,000
34.911392
82
0.364117
false
ros2/rclpy
rclpy/rclpy/action/client.py
1
22966
# Copyright 2019 Open Source Robotics Foundation, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law...
apache-2.0
-5,743,371,639,841,132,000
38.057823
97
0.613254
false
mmalyska/eve-wspace
evewspace/Map/views.py
1
36404
# Eve W-Space # Copyright (C) 2013 Andrew Austin and other contributors # # 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...
gpl-3.0
-173,141,384,186,333,800
33.150094
95
0.608779
false
tedlaz/pyted
tedutil/db_context_manager.py
1
5076
''' Module db_context_manager.py Connect to sqlite database and perform crud functions ''' import sqlite3 import os PATH = os.path.dirname(os.path.dirname(os.path.realpath(__file__))) print(PATH) def grup(txtv): ''' Trasforms a string to uppercase special for Greek comparison ''' ar1 = u"αάΆΑβγδεέΈζ...
gpl-3.0
2,498,087,319,140,315,600
30.408805
78
0.547257
false
Erotemic/local
build_scripts/custom_fletch.py
1
5960
# -*- coding: utf-8 -*- #!/usr/bin/env python import os from os.path import dirname # NOQA import sys def disable_packages(): if pkgname == 'OpenBLAS': """ PKGNAME=OpenBLAS PKGNAME=Zlib find build/src/ -iname CMakeCache.txt -delete rm -rf build/src/$PKGNAME* rm -...
gpl-3.0
-2,039,726,112,540,294,700
26.850467
119
0.58104
false
vidyar/testing-yml
setup.py
1
1647
# dockerpty. # # Copyright 2014 Chris Corbyn <chris@w3style.co.uk> # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by ap...
apache-2.0
-6,114,690,253,438,141,000
33.3125
77
0.681239
false
hgiemza/DIRAC
tests/System/dirac-test-production.py
1
4565
""" This script submits a test prodJobuction with filter """ import time import os import json from DIRAC.Core.Base import Script Script.setUsageMessage( '\n'.join( [ __doc__.split( '\n' )[1], 'Usage:', ' %s test directory' % Script.scriptName...
gpl-3.0
4,057,335,523,541,933,600
34.115385
116
0.699452
false
cournape/Bento
bento/commands/build.py
1
2331
import os import os.path as op from bento.utils.utils \ import \ subst_vars from bento.installed_package_description \ import \ BuildManifest, build_manifest_meta_from_pkg from bento._config \ import \ BUILD_MANIFEST_PATH from bento.commands.core \ import \ Option from...
bsd-3-clause
4,304,503,386,611,436,500
29.272727
90
0.557701
false
joowani/dtags
dtags/commands/tags.py
1
5372
import json import sys from pathlib import Path from typing import List, Optional, Set, Tuple from dtags import style from dtags.commons import ( dtags_command, get_argparser, normalize_tags, prompt_user, reverse_map, ) from dtags.files import get_new_config, load_config_file, save_config_file USA...
mit
-5,143,990,087,949,404,000
28.195652
87
0.592144
false
tonnrueter/pymca_devel
PyMca/TiffStack.py
1
14610
#/*########################################################################## # Copyright (C) 2004-2012 European Synchrotron Radiation Facility # # This file is part of the PyMca X-ray Fluorescence Toolkit developed at # the ESRF by the Software group. # # This file is free software; you can redistribute it and/or modi...
gpl-2.0
2,687,976,386,199,071,000
35.708543
99
0.484805
false
shzygmyx/Adaboost
boosting.py
1
13043
# -*- coding: utf-8 -*- """ Created on Mon Nov 14 14:39:38 2016 @author: Meng Yuxian This is an implementation of <Improved boosting algorithms using confidence-rated predictions>, Schapire, 1999. """ from math import e, log import numpy as np from sklearn.tree import DecisionTreeClassifier class Ada...
gpl-3.0
8,261,647,468,071,129,000
33.067204
131
0.499885
false
dionhaefner/veros
test/pyom_consistency/eke_test.py
1
3344
from collections import OrderedDict import numpy as np from test_base import VerosPyOMUnitTest from veros.core import eke class EKETest(VerosPyOMUnitTest): nx, ny, nz = 70, 60, 50 extra_settings = { 'enable_cyclic_x': True, 'enable_eke_leewave_dissipation': True, 'enable_eke': True, ...
mit
-7,968,939,652,004,585,000
43
117
0.557715
false
google-research/simclr
tf2/data_util.py
1
18220
# coding=utf-8 # Copyright 2020 The SimCLR Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or...
apache-2.0
-7,356,768,281,607,679,000
34.105973
80
0.644237
false
Daniel-CA/odoo-addons
stock_quant_expiry/models/stock_quant.py
1
1792
# -*- coding: utf-8 -*- # Copyright 2017 Ainara Galdona - AvanzOSC # License AGPL-3 - See http://www.gnu.org/licenses/agpl-3.0.html from openerp import models, fields, api class StockQuant(models.Model): _inherit = 'stock.quant' @api.multi @api.depends('lot_id.life_date', 'lot_id.mrp_date') def _co...
agpl-3.0
-6,778,287,636,719,805,000
43.8
79
0.580915
false
harpribot/deep-summarization
train_scripts/train_script_lstm_stacked_bidirectional_attention.py
1
1043
import os import sys sys.path.append(os.path.abspath(os.path.dirname(__file__) + '/' + '..')) from models import lstm_stacked_bidirectional from helpers import checkpoint # Get the review summary file review_summary_file = 'extracted_data/review_summary.csv' # Initialize Checkpointer to ensure checkpointing checkpoint...
mit
4,807,616,649,628,322,000
44.347826
106
0.744008
false
ScanOC/trunk-player
radio/receivers.py
1
1882
# receivers.py import json import logging import datetime from django.dispatch import receiver from django.contrib.auth.models import User from pinax.stripe.signals import WEBHOOK_SIGNALS from radio.models import Plan, StripePlanMatrix, Profile from pinax.stripe.models import Plan as pinax_Plan # Get an instance of...
mit
-176,158,808,518,551,600
37.408163
115
0.70457
false
Grumbel/rfactorlcd
rfactorlcd/state.py
1
13232
# rFactor Remote LCD # Copyright (C) 2014 Ingo Ruhnke <grumbel@gmail.com> # # 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 versi...
gpl-3.0
-7,897,458,366,094,102,000
30.504762
78
0.546025
false
ocelot-collab/ocelot
unit_tests/ebeam_test/acc_utils/acc_utils_test.py
1
4045
"""Test of the demo file demos/ebeam/csr_ex.py""" import os import sys import copy import time FILE_DIR = os.path.dirname(os.path.abspath(__file__)) REF_RES_DIR = FILE_DIR + '/ref_results/' from unit_tests.params import * from acc_utils_conf import * def test_lattice_transfer_map(lattice, p_array, parameter=None, ...
gpl-3.0
-2,321,862,415,947,859,000
32.155738
140
0.624969
false
ellisztamas/faps
faps/pr_unsampled.py
1
2716
import numpy as np def pr_unsampled(offspring_diploid, maternal_diploid, allele_freqs, offspring_genotype, maternal_genotype, male_genotype, mu): """ Calculate the transitions probability for a given set of parental and offspring alleles. Transitipn probabilities are then weight by the probability of...
mit
5,498,974,815,240,566,000
46.666667
126
0.623343
false
fbradyirl/home-assistant
homeassistant/components/mochad/light.py
1
4739
"""Support for X10 dimmer over Mochad.""" import logging import voluptuous as vol from homeassistant.components.light import ( ATTR_BRIGHTNESS, SUPPORT_BRIGHTNESS, Light, PLATFORM_SCHEMA, ) from homeassistant.components import mochad from homeassistant.const import CONF_NAME, CONF_PLATFORM, CONF_DEVIC...
apache-2.0
1,578,962,292,659,869,400
34.365672
84
0.603292
false
JoErNanO/brianmodel
brianmodel/neuron/neuron.py
1
5023
#!/usr/bin/python # coding: utf-8 # ################################################################################# # Copyright (C) 2014 Francesco Giovannini, Neurosys - INRIA CR Nancy - Grand Est # Authors: Francesco Giovannini # email: francesco.giovannini@inria.fr # website: http://neurosys.loria.fr/ # Permission...
gpl-3.0
8,160,894,770,479,721,000
39.184
148
0.550468
false
ronnyandersson/zignal
examples/ex_chunks.py
1
2576
''' Created on 12 Apr 2020 @author: Ronny Andersson (ronny@andersson.tk) @copyright: (c) 2020 Ronny Andersson @license: MIT Demo of how to iterate over an instance of the Audio class, for chunk-based processing. Typically the chunks have a size that is a power of two, for example 256, 1024 or 4096. In this example th...
mit
-1,448,987,454,992,654,300
32.025641
79
0.612189
false
modesttree/Projeny
Source/mtm/log/LogStreamConsole.py
1
4086
import os import re import sys from mtm.ioc.Inject import Inject import mtm.util.Util as Util from mtm.log.Logger import LogType import shutil from mtm.util.Assert import * import mtm.log.ColorConsole as ColorConsole class AnsiiCodes: BLACK = "\033[1;30m" DARKBLACK = "\033[0;30m" RED = "\033[1;31m" D...
mit
-1,695,768,849,465,963,800
30.430769
103
0.638767
false
51reboot/actual_09_homework
10/jinderui/cmdb/user/dbutils.py
1
1788
# encoding: utf-8 import os,sys reload(sys) sys.setdefaultencoding( "utf-8" ) import gconf import MySQLdb # encoding: utf-8 import os,sys reload(sys) sys.setdefaultencoding( "utf-8" ) import gconf import MySQLdb class MySQLConnection(object): """docstring for MySQLConnection""" def __init__(self, host,port,user,pas...
mit
2,713,146,756,037,389,300
21.64557
101
0.645973
false
heracek/django-nonrel
tests/regressiontests/i18n/commands/extraction.py
1
6442
import os import re import shutil from django.test import TestCase from django.core import management LOCALE='de' class ExtractorTests(TestCase): PO_FILE='locale/%s/LC_MESSAGES/django.po' % LOCALE def setUp(self): self._cwd = os.getcwd() self.test_dir = os.path.abspath(os.path.dirname(__file...
bsd-3-clause
-375,927,002,498,649,100
40.831169
174
0.646228
false
Itxaka/st2
st2api/st2api/controllers/v1/executionviews.py
1
3355
# Licensed to the StackStorm, Inc ('StackStorm') under one or more # contributor license agreements. See the NOTICE file distributed with # this work for additional information regarding copyright ownership. # The ASF licenses this file to You under the Apache License, Version 2.0 # (the "License"); you may not use th...
apache-2.0
-4,095,253,901,279,048,700
38.011628
98
0.66617
false
JDRomano2/VenomKB
venomkb/archive/scripts/add_go_data.py
1
1105
import json from tqdm import tqdm from venomkb_builder import VenomKB VKB = VenomKB() VKB.load_database() go_annotations_out = {} for x in tqdm(VKB.proteins): try: toxprot = VKB.get_record_from_toxprot(x.venomkb_id, 'dbReference', json=False) except: continue go_annotations = [y for y in...
gpl-2.0
178,348,791,076,406,720
27.333333
86
0.586425
false
aecepoglu/twitchy-streamer-python
test/steps/all.py
1
4759
from behave import * from unittest.mock import patch, mock_open, MagicMock from src import arg_parser as myArgParser, server_utils as myServerUtils, errors as myErrors import io import requests import requests_mock def setup_debug_on_error(userdata): global BEHAVE_DEBUG_ON_ERROR BEHAVE_DEBUG_ON_ERROR = userdata.getb...
mit
-4,857,236,144,585,987,000
26.039773
92
0.739021
false
minhnd/youtube-subtitle-downloader
youtubesub.py
1
5521
# -*- coding: utf-8 -*- """ Youtube Subtitle Downloader downloads subtitles from Youtube videos (if those are present) and convert them to SRT format. Usage: youtubesub.py [-h] [-l] [--language LANGUAGE] [--filename FILENAME] [--filetype {srt,xml}] url ...
bsd-2-clause
5,863,344,055,062,149,000
35.806667
124
0.58522
false
scollis/iris
lib/iris/tests/unit/plot/test_points.py
1
1395
# (C) British Crown Copyright 2014, Met Office # # This file is part of Iris. # # Iris is free software: you can redistribute it and/or modify it under # the terms of the GNU Lesser General Public License as published by the # Free Software Foundation, either version 3 of the License, or # (at your option) any later ve...
gpl-3.0
993,418,146,650,446,000
33.875
74
0.729749
false
thomasorb/orb
orb/utils/io.py
1
33933
#!/usr/bin/python # *-* coding: utf-8 *-* # Author: Thomas Martin <thomas.martin.1@ulaval.ca> # File: io.py ## Copyright (c) 2010-2020 Thomas Martin <thomas.martin.1@ulaval.ca> ## ## This file is part of ORB ## ## ORB is free software: you can redistribute it and/or modify it ## under the terms of the GNU General Pub...
gpl-3.0
8,377,938,406,832,901,000
33.946447
185
0.581646
false
quarckster/cfme_tests
cfme/test_framework/appliance_police.py
1
2826
import attr import pytest import requests from cfme.utils import ports from cfme.utils.net import net_check from cfme.utils.wait import TimedOutError from cfme.utils.conf import rdb from fixtures.pytest_store import store from cfme.fixtures.rdb import Rdb @attr.s class AppliancePoliceException(Exception): me...
gpl-2.0
-7,508,210,430,631,497,000
33.888889
97
0.617127
false
ErasRasmuson/LA
LogAna/Taxi_LongRides_old.py
1
2578
# -*- coding: cp1252 -*- """ ############################################################################### HEADER: Taxi_LongRides.py AUTHOR: Esa Heikkinen DATE: 26.06.2018 DOCUMENT: - VERSION: "$Id$" REFERENCES: - PURPOSE: CHANGES: "$Log$" #######################################################...
gpl-3.0
2,315,905,248,688,705,500
27.32967
125
0.556633
false
FEniCS/ufl
test/test_apply_function_pullbacks.py
1
12156
#!/usr/bin/env py.test # -*- coding: utf-8 -*- from pytest import raises from ufl import * from ufl.algorithms.apply_function_pullbacks import apply_function_pullbacks, apply_single_function_pullbacks from ufl.algorithms.renumbering import renumber_indices from ufl.classes import Jacobian, JacobianInverse, JacobianDet...
lgpl-3.0
2,708,946,957,977,316,000
29.619647
109
0.534304
false
bubenkoff/Arkestra
vacancies_and_studentships/tests.py
1
22863
from datetime import datetime, timedelta from django.test import TestCase from django.test.client import Client from django.test.utils import override_settings from django.conf import settings from django.contrib.auth.models import User from django.core.urlresolvers import reverse from django.http import HttpRequest,...
bsd-2-clause
8,495,456,747,010,492,000
33.073025
97
0.611906
false
1orwell/yrs2013
fake.py
1
3440
'''Generate necessary dump files''' #options size = 100 regenerate_graph = False days = 1 force_layout = False default = str(size)+'.dat' ### import igraph, pickle, random, os import math from collections import OrderedDict def process(fout): output = os.path.join('data',fout) try: #load graph if...
mit
7,964,937,547,895,710,000
26.96748
173
0.54157
false
antiface/audiolazy
audiolazy/lazy_io.py
1
14038
# -*- coding: utf-8 -*- # This file is part of AudioLazy, the signal processing Python package. # Copyright (C) 2012-2014 Danilo de Jesus da Silva Bellini # # AudioLazy 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 Foun...
gpl-3.0
-8,054,913,346,017,574,000
30.195556
79
0.616826
false
Answeror/aip
aip/imfs/cascade.py
1
1705
from .base import NameMixin def load_ext(name, bases): return need_raw( name, bases, lambda base: base.load(name) ) def thumbnail_ext(name, width, height, bases): return need_raw( name, bases, lambda base: base.thumbnail(name, width, height) ) def mt...
mit
-1,043,821,107,190,842,800
20.049383
61
0.537243
false
JustRamon/SpeechController
SC.py
1
1113
#!/usr/bin/env python3 import speech_recognition as sr import ksr10 import time arm = ksr10.ksr10_class() while 1: r = sr.Recognizer() with sr.Microphone() as source: print("Say something!") audio = r.listen(source) try: rn = r.recognize_google(audio) except sr.UnknownValueError: print("Goog...
gpl-2.0
-2,197,478,390,076,488,000
22.1875
97
0.607367
false
starbt/flea_market
market/migrations/0006_auto_20161206_2033.py
1
1232
# -*- coding: utf-8 -*- # Generated by Django 1.10.2 on 2016-12-06 12:33 from __future__ import unicode_literals from django.db import migrations, models class Migration(migrations.Migration): dependencies = [ ('market', '0005_auto_20161206_1204'), ] operations = [ migrations.AddField( ...
mit
-7,127,938,892,819,470,000
29.8
160
0.571429
false
UbiCastTeam/touchwizard
touchwizard/canvas.py
1
16655
# -*- coding: utf-8 -* import clutter import gobject import easyevent import logging import os import time from touchwizard.loading import LoadingWidget logger = logging.getLogger('touchwizard') class Canvas(clutter.Actor, clutter.Container, easyevent.User): """Wizard main actor which manages the user interfac...
gpl-3.0
398,874,673,450,197,570
36.093541
130
0.593215
false
AnthillTech/python-mewa-client
examples/main.py
1
1354
''' Created on 27 lip 2014 @author: Krzysztof Langner ''' from mewa.client import Connection HOST_URL = "ws://mewa.cc:9001/ws" # HOST_URL = "ws://localhost:9000/ws" connection = Connection(HOST_URL) def onConnected(): connection.getDevices() connection.sendEvent("serviceA.event2", "78", True) params =...
bsd-2-clause
3,212,027,003,129,120,000
27.208333
157
0.669129
false
tencia/deeptrackpy
utils.py
1
10122
import time import sys import os from PIL import Image import numpy as np import lasagne as nn import theano import theano.tensor as T import h5py from fuel.datasets.hdf5 import H5PYDataset from fuel.schemes import ShuffledScheme, SequentialScheme from fuel.streams import DataStream # runs training loop, expects dat...
mit
4,537,278,992,625,200,000
40.314286
96
0.598992
false
rickerc/cinder_audit
cinder/tests/db/test_finish_migration.py
1
2226
# Copyright 2013 IBM Corp. # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain # a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed t...
apache-2.0
1,801,730,165,042,376,000
41
78
0.609164
false
miguelut/utmbu
mbu/api/scout.py
1
1603
from django.contrib.admin.views.decorators import staff_member_required from django.http import JsonResponse from django.contrib.auth.decorators import permission_required from rest_framework.decorators import api_view from mbu.models import Scout, ScoutCourseInstance, ScoutCourseInstanceSerializer, RegistrationStatus ...
mit
6,069,730,055,826,966,000
32.395833
100
0.69869
false
thbuerg/Heidelberg_2017
DeeProtein/validate.py
1
1040
""" Invoke the Model in validation mode and perform a run over the valid set.""" import argparse import json from DeeProtein import DeeProtein import helpers def main(): with open(FLAGS.config_json) as config_fobj: config_dict = json.load(config_fobj) # set the gpu context if not FLAGS.gpu: ...
mit
2,103,418,648,317,539,800
26.368421
80
0.610577
false