blob_id
stringlengths
40
40
directory_id
stringlengths
40
40
path
stringlengths
3
616
content_id
stringlengths
40
40
detected_licenses
listlengths
0
112
license_type
stringclasses
2 values
repo_name
stringlengths
5
115
snapshot_id
stringlengths
40
40
revision_id
stringlengths
40
40
branch_name
stringclasses
777 values
visit_date
timestamp[us]date
2015-08-06 10:31:46
2023-09-06 10:44:38
revision_date
timestamp[us]date
1970-01-01 02:38:32
2037-05-03 13:00:00
committer_date
timestamp[us]date
1970-01-01 02:38:32
2023-09-06 01:08:06
github_id
int64
4.92k
681M
star_events_count
int64
0
209k
fork_events_count
int64
0
110k
gha_license_id
stringclasses
22 values
gha_event_created_at
timestamp[us]date
2012-06-04 01:52:49
2023-09-14 21:59:50
gha_created_at
timestamp[us]date
2008-05-22 07:58:19
2023-08-21 12:35:19
gha_language
stringclasses
149 values
src_encoding
stringclasses
26 values
language
stringclasses
1 value
is_vendor
bool
2 classes
is_generated
bool
2 classes
length_bytes
int64
3
10.2M
extension
stringclasses
188 values
content
stringlengths
3
10.2M
authors
listlengths
1
1
author_id
stringlengths
1
132
cf3aef8d67017da08e3ac0f4469803969c4c23ce
71c0121fb47df8ce11f33e7617dd262525ffea81
/commandline/manager.py
34727999ac0f2d6dedbde1132e0ac273ca1b4085
[]
no_license
igor35hh/PythonTraining
33d09b045b0f8676f23a5b43410aaa6a7c6a5631
020bc274bba0ffb70f1cdc45e18ea8b6467110fb
refs/heads/master
2021-05-01T23:46:54.919344
2018-03-11T21:30:30
2018-03-11T21:30:30
77,922,552
0
0
null
null
null
null
UTF-8
Python
false
false
821
py
from Person import Person class Manager(Person): def __init__(self, name, age, pay): Person.__init__(self, name, age, pay, 'mahager') def giveRaise(self, percent, bonus=0.1): Person.giveRaise(self, percent + bonus) if __name__ == '__main__': tom = Manager(name='Tom Doe',...
[ "igor35hh@gmail.com" ]
igor35hh@gmail.com
37415d93e5786fda13e764919a9b90057f5fdbdc
db1dcf7cf7218e0de8eb7fa0da709effa507c3bf
/Mastering matplotlib/SF_MM/02-architecture/lib/modfind.py
dfc21e7e0c2b219c2e391cba3fd0d5ae28ad14d4
[]
no_license
AaronCHH/B_PYTHON_matplotlib
a65da48771ce8248d51ee054eab91eeb3ce50e74
84c809800b3b797a09a5abfc76860ca7f7df8b80
refs/heads/master
2021-01-19T10:17:05.132372
2017-04-10T19:29:54
2017-04-10T19:29:54
87,849,667
0
0
null
null
null
null
UTF-8
Python
false
false
1,416
py
from collections import Counter, OrderedDict from modulefinder import Module, ModuleFinder from typecheck import typecheck import typecheck as tc class CustomFinder(ModuleFinder): def __init__(self, include: list=None, exclude: list=None, *args, **kwargs): super().__init__(*args, **kwarg...
[ "aaronhsu219@gmail.com" ]
aaronhsu219@gmail.com
41f0e0207d7368fe936b6b7dd33c3d5918255fc7
744594f30c5e283f6252909fc68102dd7bc61091
/2017/13/13b_solution.py
de65bf6b0591cf4c57cbfdbf892acb60bc33e3ad
[ "MIT" ]
permissive
vScourge/Advent_of_Code
84f40c76e5dc13977876eea6dbea7d05637de686
36e4f428129502ddc93c3f8ba7950aed0a7314bb
refs/heads/master
2022-12-20T22:12:28.646102
2022-12-15T22:16:28
2022-12-15T22:16:28
160,765,438
0
0
null
null
null
null
UTF-8
Python
false
false
1,671
py
""" Advent of Code 2017 input is: input.txt """ DIR_DOWN = 0 DIR_UP = 1 class Layer( ): def __init__( self, depth, range ): self.depth = depth self.range = range self.scan_pos = 0 self.scan_dir = DIR_DOWN def move( self ): if self.scan_dir == DIR_DOWN: self.scan_pos += 1 if self.scan_pos ==...
[ "adam.pletcher@gmail.com" ]
adam.pletcher@gmail.com
e9cab789778a120d62afba5b2378b2ea14e862b2
0af18096e2d024cc1e069b16e7c17d944c6f96e8
/backend/naiosh_4776/wsgi.py
70f7738558b87649acf9f02b276b15f0b7d28243
[]
no_license
crowdbotics-apps/naiosh-4776
7ed8ee5c42efa74da842a36d55fb5acb68e68291
27386cc9d311d965e87b086ff10b44f469dd2a96
refs/heads/master
2022-12-12T03:43:11.995902
2019-06-17T10:09:09
2019-06-17T10:09:09
192,322,848
0
0
null
2022-12-03T14:01:00
2019-06-17T10:09:03
JavaScript
UTF-8
Python
false
false
400
py
""" WSGI config for naiosh_4776 project. It exposes the WSGI callable as a module-level variable named ``application``. For more information on this file, see https://docs.djangoproject.com/en/1.11/howto/deployment/wsgi/ """ import os from django.core.wsgi import get_wsgi_application os.environ.setdefault("DJANGO_...
[ "team@crowdbotics.com" ]
team@crowdbotics.com
7b0cb2d2f3dee1ab0cc39a99d8091729a0a93698
98c6ea9c884152e8340605a706efefbea6170be5
/examples/data/Assignment_3/ndxkee009/question4.py
5473e314c72caf0b2087d06f5bbfde1e8a2e5a5d
[]
no_license
MrHamdulay/csc3-capstone
479d659e1dcd28040e83ebd9e3374d0ccc0c6817
6f0fa0fa1555ceb1b0fb33f25e9694e68b6a53d2
refs/heads/master
2021-03-12T21:55:57.781339
2014-09-22T02:22:22
2014-09-22T02:22:22
22,372,174
0
0
null
null
null
null
UTF-8
Python
false
false
605
py
#Keegan Naidoo #NDXKEE009 import math s=eval(input("Enter the starting point N: \n")) e=eval(input("Enter the ending point M: \n")) s1=str(s) e1=str(e) c=1 print("The palindromic primes are:") for i in range(s+1,e): a=s+c #print(a) a1=str(a) ...
[ "jarr2000@gmail.com" ]
jarr2000@gmail.com
8a3ae0b145000c2ff07323b20a3e821a08a00604
b500996a0b29829fde6afe8b23178ca9df4a239d
/rydinfap/src/procdata/procxml.py
85d8990856b92ff7752484b6827873e33fa16a25
[]
no_license
eocampo2000/test-code
48c4d444e323eef5e6fe7e61b018952ef3cd4134
49328664243e1a9daf9c567d1aaaa19fd4654c02
refs/heads/master
2016-08-11T07:35:31.346464
2016-02-13T12:33:55
2016-02-13T12:33:55
51,642,188
0
0
null
null
null
null
UTF-8
Python
false
false
3,011
py
''' Created on May 15, 2012 @author: eocampo XML files parser. Please specify the main LAYOUT. TODO encapsulate it into a class EO 20150313 : Added parseCanCPI, _parseCanCPITable methods. ''' __version__ = '20150313' import utils.fileutils as fu import xml.etree.ElementTree as ET import sys im...
[ "eocampo1000@hotmail.com" ]
eocampo1000@hotmail.com
bb2a5c272cb0c24dd423ee814a9a892c61bfe4e2
1c40857067b4d92e4efe161d154927c928548a7d
/workery/tenant_api/views/staff_comment.py
168d92c62878ef8fe2ef89a2cc6ead80bac6836b
[ "BSD-3-Clause", "LicenseRef-scancode-unknown-license-reference" ]
permissive
rahulyhg/workery-django
9331eb1b87b02407a721e9d512e3d60cb22af314
73fd500fefcf4212cf07071e16cf676e173ddea6
refs/heads/master
2020-06-29T08:34:03.529503
2019-08-03T21:18:09
2019-08-03T21:18:09
null
0
0
null
null
null
null
UTF-8
Python
false
false
1,849
py
# -*- coding: utf-8 -*- from ipware import get_client_ip from django_filters.rest_framework import DjangoFilterBackend from django.conf.urls import url, include from django.shortcuts import get_list_or_404, get_object_or_404 from rest_framework import filters from rest_framework import generics from rest_framework impo...
[ "bart@mikasoftware.com" ]
bart@mikasoftware.com
144328a1ef2d6268d21d76ba311a8ab52315f9e7
f07a42f652f46106dee4749277d41c302e2b7406
/Data Set/bug-fixing-5/fa45c44026ed471714d0383fd2731911d16a1271-<main>-fix.py
c47982491f786ea4edc3a9e39524947a6f75ebe6
[]
no_license
wsgan001/PyFPattern
e0fe06341cc5d51b3ad0fe29b84098d140ed54d1
cc347e32745f99c0cd95e79a18ddacc4574d7faa
refs/heads/main
2023-08-25T23:48:26.112133
2021-10-23T14:11:22
2021-10-23T14:11:22
null
0
0
null
null
null
null
UTF-8
Python
false
false
1,054
py
def main(): args = parse_args() try: sys.stdout = StringIO() config_files = (cloud_config.CONFIG_FILES + CONFIG_FILES) sdk.enable_logging(debug=args.debug) inventory_args = dict(refresh=args.refresh, config_files=config_files, private=args.private, cloud=args.cloud) if ha...
[ "dg1732004@smail.nju.edu.cn" ]
dg1732004@smail.nju.edu.cn
20e2fa8b1ace352e52ea0894f8e32dc5c436ddab
9cf6b31876b6fe3652e9d2613afff41793cc7d49
/apps/cpa/forms.py
aab6be6e553718cf8eca57f5b85acd26ba63747a
[]
no_license
amyard/findinshopGit
2a3b56c845691573b33ccc66b036cab0effa0e8e
b642bc81cf633c95ccd978d5e9fb4177eee38be4
refs/heads/master
2022-12-13T19:17:45.031095
2019-10-31T13:08:51
2019-10-31T13:08:51
213,323,148
0
0
null
2022-12-10T04:48:01
2019-10-07T07:44:13
Roff
UTF-8
Python
false
false
3,269
py
# -*- coding: utf-8 -*- #Python imports from datetime import timedelta #Django imports from django import forms from django.shortcuts import get_object_or_404 from django.utils import timezone from django.core.cache import cache #Findinshop from apps.cpa.models import CostSetting, OwnAndUserCategory from apps.cpa.va...
[ "maksymturenko@gmail.com" ]
maksymturenko@gmail.com
ae516920a922dc54aabf018db891dd22f8e371f0
34cb685d3340cb59c2f3639b3b5ca42ff3812338
/pptx/shapes/__init__.py
99f249ecc8e51d468e8c571d0f1aa09118457441
[ "MIT" ]
permissive
handwriter/python-pptx
6b435b6c9c95fcc00cd2aa0923ca15e211228a8b
22351c6f9fe637cadddca3461c4899af7d439711
refs/heads/master
2021-04-05T00:27:20.870352
2020-03-19T13:20:28
2020-03-19T13:20:28
248,506,405
1
0
null
null
null
null
UTF-8
Python
false
false
614
py
# encoding: utf-8 """ Objects used across sub-package """ class Subshape(object): """ Provides common services for drawing elements that occur below a shape but may occasionally require an ancestor object to provide a service, such as add or drop a relationship. Provides ``self._parent`` a...
[ "62296664+handwriter@users.noreply.github.com" ]
62296664+handwriter@users.noreply.github.com
ceaa8c09f078a8c7e8371072a72da1225db7cfa5
9743d5fd24822f79c156ad112229e25adb9ed6f6
/xai/brain/wordbase/otherforms/_gigolos.py
ef7c72c0482e98e0450b0486f04f9aea27e380da
[ "MIT" ]
permissive
cash2one/xai
de7adad1758f50dd6786bf0111e71a903f039b64
e76f12c9f4dcf3ac1c7c08b0cc8844c0b0a104b6
refs/heads/master
2021-01-19T12:33:54.964379
2017-01-28T02:00:50
2017-01-28T02:00:50
null
0
0
null
null
null
null
UTF-8
Python
false
false
222
py
#calss header class _GIGOLOS(): def __init__(self,): self.name = "GIGOLOS" self.definitions = gigolo self.parents = [] self.childen = [] self.properties = [] self.jsondata = {} self.basic = ['gigolo']
[ "xingwang1991@gmail.com" ]
xingwang1991@gmail.com
5748810f922be1440a1298e49a103ac06d55a06e
a5747577f1f4b38823f138ec0fbb34a0380cd673
/17/mc/ExoDiBosonResonances/EDBRTreeMaker/test/crab3_analysisM4000_R_0-6.py
910fd4a43e6bc2485a23bcac0657f0fb8a30f1a0
[]
no_license
xdlyu/fullRunII_ntuple
346fc1da4cec9da4c404aa1ec0bfdaece6df1526
aa00ca4ce15ae050c3096d7af779de44fc59141e
refs/heads/master
2020-08-03T07:52:29.544528
2020-01-22T14:18:12
2020-01-22T14:18:12
211,673,739
0
3
null
null
null
null
UTF-8
Python
false
false
2,282
py
from WMCore.Configuration import Configuration name = 'WWW' steam_dir = 'xulyu' config = Configuration() config.section_("General") config.General.requestName = 'M4000_R0-6_off' config.General.transferLogs = True config.section_("JobType") config.JobType.pluginName = 'Analysis' config.JobType.inputFiles = ['Fall17...
[ "XXX@cern.ch" ]
XXX@cern.ch
08c5e949442ecbfec52341e878dee28f49e30e0f
6fb8892e0455043b4776e331f8176ab1139f1fd9
/backend/home/migrations/0001_load_initial_data.py
c1927313a664726ec8d191be309891da27b452b7
[]
no_license
crowdbotics-apps/gozle-browser-28537
c5bc1dc800c0b9836f3cd067d1d421fdb447def2
fd0ee4d32ca575df2422506894f9380d11b76533
refs/heads/master
2023-06-07T04:50:52.183276
2021-07-07T15:26:51
2021-07-07T15:26:51
383,841,811
0
0
null
null
null
null
UTF-8
Python
false
false
544
py
from django.db import migrations def create_site(apps, schema_editor): Site = apps.get_model("sites", "Site") custom_domain = "gozle-browser-28537.botics.co" site_params = { "name": "Gozle browser", } if custom_domain: site_params["domain"] = custom_domain Site.objects.update...
[ "team@crowdbotics.com" ]
team@crowdbotics.com
60e0a38ac1246955d613e358f11c89163d652506
15f321878face2af9317363c5f6de1e5ddd9b749
/solutions_python/Problem_54/686.py
4511b8d1827a6633638de3b13f1f24900abf7196
[]
no_license
dr-dos-ok/Code_Jam_Webscraper
c06fd59870842664cd79c41eb460a09553e1c80a
26a35bf114a3aa30fc4c677ef069d95f41665cc0
refs/heads/master
2020-04-06T08:17:40.938460
2018-10-14T10:12:47
2018-10-14T10:12:47
null
0
0
null
null
null
null
UTF-8
Python
false
false
559
py
#!/usr/bin/env python3 #-*- coding: utf-8 -*- def gcd(a,b): if b == 0: return a return gcd(b,a%b) f = open("input.txt","r") T = int(f.readline()) for i in range(T): nums = f.readline().split() nums = [int(x) for x in nums] diff = [abs(nums[k+1] - nums[k]) for k in range(1,len(nums)-1)] d...
[ "miliar1732@gmail.com" ]
miliar1732@gmail.com
bc9c3ebea8a6a5642bd542c11bcc86389e7463ea
f3d38d0e1d50234ce5f17948361a50090ea8cddf
/백준/Bronze/Bronze 4/2530번 ; 인공지능 시계 아직 안품.py
01ea7bdd693da5cd63b5c982f15fcf886091b6d1
[]
no_license
bright-night-sky/algorithm_study
967c512040c183d56c5cd923912a5e8f1c584546
8fd46644129e92137a62db657187b9b707d06985
refs/heads/main
2023-08-01T10:27:33.857897
2021-10-04T14:36:21
2021-10-04T14:36:21
323,322,211
0
0
null
null
null
null
UTF-8
Python
false
false
1,383
py
# https://www.acmicpc.net/problem/2530 # 현재 시각 시 A, 분 B, 초 C 입력 # 0 <= A <= 23 # 0 <= B <= 59 # 0 <= C <= 59 A, B, C = map(int, input().split(' ')) # 요리하는데 필요한 시간 D : 초 단위 입력 # 0 <= D <= 500,000 D = int(input()) # 요리하는 데 필요한 시간은 초 단위로 입력 받으므로 이것을 시, 분, 초 단위로 쪼개준다. plus_hour = D // 3600 D = D - plus_hour * 3600 plus_...
[ "bright_night_sky@naver.com" ]
bright_night_sky@naver.com
4f507e84cd85006b08c0181440aecf1ec59707f3
a8de9d989519cca6a94cc9c77b4de0efd6f2e8e1
/ui/gtk/bases/widgets.py
641cb1c6fce269d4dd6a55f34539b7380ab49948
[]
no_license
nocarryr/nomadic_recording_lib
bde34a30674474473e8402f8309e59fb47b6fabd
9070c75d8a18327565f206d3e5d6b054a207a259
refs/heads/master
2021-01-01T20:10:14.451132
2015-08-10T21:16:42
2015-08-10T21:16:42
23,086,499
0
1
null
null
null
null
UTF-8
Python
false
false
44,251
py
import threading from ui_modules import gtk, gdk, pango from nomadic_recording_lib.Bases import BaseObject from nomadic_recording_lib.Bases.Properties import PropertyConnector from nomadic_recording_lib.ui.bases import widgets as basewidgets import gtksimple get_gtk2_enum = gtksimple.get_gtk2_enum get_gtk3_enum = gt...
[ "matt@nomadic-recording.com" ]
matt@nomadic-recording.com
929aec9c56cc8ca4c570af9cd6043c4d9256e2da
bfe6c95fa8a2aae3c3998bd59555583fed72900a
/smallestRepunitDivByK.py
3071d89089c335e92fa7eb56b3efbec7c1ac437c
[]
no_license
zzz136454872/leetcode
f9534016388a1ba010599f4771c08a55748694b2
b5ea6c21bff317884bdb3d7e873aa159b8c30215
refs/heads/master
2023-09-01T17:26:57.624117
2023-08-29T03:18:56
2023-08-29T03:18:56
240,464,565
0
0
null
null
null
null
UTF-8
Python
false
false
416
py
class Solution: def smallestRepunitDivByK(self, k: int) -> int: if k == 1: return 1 a = [1] seen = set(a) while True: a.append((a[-1] * 10 + 1) % k) if a[-1] == 0: return len(a) if a[-1] in seen: retur...
[ "zzz136454872@163.com" ]
zzz136454872@163.com
fe9981ffe57faaf1b5ac9e27c981810646f19b43
487ce91881032c1de16e35ed8bc187d6034205f7
/codes/CodeJamCrawler/16_0_1_neat/16_0_1_odieatla_sheep.py
8de3f71090aece5636ed89940641042f89fa0783
[]
no_license
DaHuO/Supergraph
9cd26d8c5a081803015d93cf5f2674009e92ef7e
c88059dc66297af577ad2b8afa4e0ac0ad622915
refs/heads/master
2021-06-14T16:07:52.405091
2016-08-21T13:39:13
2016-08-21T13:39:13
49,829,508
2
0
null
2021-03-19T21:55:46
2016-01-17T18:23:00
Python
UTF-8
Python
false
false
743
py
#!/usr/bin/env python t = int(raw_input()) # read a line with a single integer for i in xrange(1, t + 1): #n = [int(s) for s in raw_input().split(" ")] n = int(raw_input()) limit = 100 result = range(0, 10) m = n to_break = False for l in xrange(1, limit+1): num_str = str(n*l) #print "curren...
[ "[dhuo@tcd.ie]" ]
[dhuo@tcd.ie]
f2f1dabe7a5b575b5074614f8cad0c656ff69e8b
982194a86c5a11185bb55a653ba1730807b9f67f
/source-builder/sb/log.py
8e4602311574c32458949df50ebd0837b23593a3
[]
no_license
jeffmurphy/rtems-source-builder
f476ef158d3a4103168e70731bbad6d5ea521d04
539c48a40543193fc088fd8a67b3ab0ef5308c24
refs/heads/master
2020-12-25T13:23:57.017108
2015-02-09T22:37:43
2015-02-09T22:37:43
30,490,786
0
0
null
2015-02-08T12:48:18
2015-02-08T12:48:17
null
UTF-8
Python
false
false
6,078
py
# # RTEMS Tools Project (http://www.rtems.org/) # Copyright 2010-2012 Chris Johns (chrisj@rtems.org) # All rights reserved. # # This file is part of the RTEMS Tools package in 'rtems-testing'. # # Permission to use, copy, modify, and/or distribute this software for any # purpose with or without fee is hereby granted, p...
[ "chrisj@rtems.org" ]
chrisj@rtems.org
60b32cb26774747a827fb99ec828f7caeb007fd8
15f321878face2af9317363c5f6de1e5ddd9b749
/solutions_python/Problem_86/264.py
47c4d9f5b59ad9d3d7dc6bc03f717392097e26ce
[]
no_license
dr-dos-ok/Code_Jam_Webscraper
c06fd59870842664cd79c41eb460a09553e1c80a
26a35bf114a3aa30fc4c677ef069d95f41665cc0
refs/heads/master
2020-04-06T08:17:40.938460
2018-10-14T10:12:47
2018-10-14T10:12:47
null
0
0
null
null
null
null
UTF-8
Python
false
false
574
py
#!/usr/bin/env python def solves(n, freqs): if all(map(lambda a: a%n==0 or n%a==0 or a==1, freqs)): return True else: return False def print_solution(freqs, n, l, h): for i in xrange(l, h+1): if solves(i, freqs): return str(i) return 'NO' def main(): T = i...
[ "miliar1732@gmail.com" ]
miliar1732@gmail.com
e67bf271c819e68a36805a80819c5935dc3a5ec8
946062524e1995a33cc9de01dc1766da27cba16b
/py_ad_3_3.py
f0ed5c35114fb0d58b178c1b4dcdf44ee11d0342
[ "MIT" ]
permissive
seopbo/con-par-python
87f684332d6a72969bb5d1759143d7374c2454b1
e74cb9c30acfdd78c12c9f7aba039d16ed1f7e78
refs/heads/main
2023-05-29T03:27:33.564631
2021-06-16T12:51:44
2021-06-16T12:51:44
372,824,317
1
0
null
null
null
null
UTF-8
Python
false
false
1,174
py
""" Section 3 Concurrency, CPU Bound vs I/O Bound - Multiprocessing vs Threading vs AsyncIO Keyword - CPU Bound, I/O Bound, AsyncIO """ """ CPU Bound vs I/O Bound CPU Bound - 프로세스 진행 -> CPU 속도에 의해 제한(결정) -> 행렬 곱, 고속 연산, 압축 파일, 집합 연산 등 - CPU 연산 위주 작업 I/O Bound - 파일쓰기, 디스크 작업, 네트워크 통신, 시리얼 포트 송수...
[ "bsk0130@gmail.com" ]
bsk0130@gmail.com
14433120dd972d49171446aa029b1e37702465bc
46afa2d7d3c531c898d1ade4f9e8f896661b8db3
/interpolate.py
8ce445555f6323405a6d9072f48bf3612941f121
[ "Apache-2.0" ]
permissive
Guymer/PyGuymer
b07062e9464ec134e1c83122ee1734d8bff6b4ad
7970659645f363788d371d00e2128f0cc3a47362
refs/heads/master
2021-01-19T13:19:39.797501
2020-11-28T08:26:27
2020-11-28T08:26:27
82,384,393
6
0
null
null
null
null
UTF-8
Python
false
false
687
py
# -*- coding: utf-8 -*- ############################################################################################## # This file is deprecated because Python 2.x is deprecated # # A Python 3.x version of this file can be found at: # # ...
[ "t.m.guymer@thomasguymer.co.uk" ]
t.m.guymer@thomasguymer.co.uk
3c9895e85da7219013180c96d2bc112a18efb809
7bededcada9271d92f34da6dae7088f3faf61c02
/pypureclient/flashblade/FB_2_1/models/active_directory_post.py
405133c46235fa042776c926c040402d94c2c59c
[ "BSD-2-Clause" ]
permissive
PureStorage-OpenConnect/py-pure-client
a5348c6a153f8c809d6e3cf734d95d6946c5f659
7e3c3ec1d639fb004627e94d3d63a6fdc141ae1e
refs/heads/master
2023-09-04T10:59:03.009972
2023-08-25T07:40:41
2023-08-25T07:40:41
160,391,444
18
29
BSD-2-Clause
2023-09-08T09:08:30
2018-12-04T17:02:51
Python
UTF-8
Python
false
false
8,543
py
# coding: utf-8 """ FlashBlade REST API A lightweight client for FlashBlade REST API 2.1, developed by Pure Storage, Inc. (http://www.purestorage.com/). OpenAPI spec version: 2.1 Generated by: https://github.com/swagger-api/swagger-codegen.git """ import pprint import re import six import typ...
[ "bcai@purestorage.com" ]
bcai@purestorage.com
6de16e882d54b189cd4432684fe408fb63810100
162e0e4791188bd44f6ce5225ff3b1f0b1aa0b0d
/trex/widgets/variableexplorer/tests/test_utils.py
f441a93f49aee22028a0bd2c3efe39bcbaa31376
[]
no_license
testsleeekGithub/trex
2af21fa95f9372f153dbe91941a93937480f4e2f
9d27a9b44d814ede3996a37365d63814214260ae
refs/heads/master
2020-08-01T11:47:43.926750
2019-11-06T06:47:19
2019-11-06T06:47:19
210,987,245
1
0
null
null
null
null
UTF-8
Python
false
false
676
py
# -*- coding: utf-8 -*- # # Copyright © TRex Project Contributors # Licensed under the terms of the MIT License """ Tests for utils.py """ # Third party imports import pytest # Local imports from trex.widgets.variableexplorer.utils import sort_against # --- Tests # -------------------------------------------------...
[ "shkolanovaya@gmail.com" ]
shkolanovaya@gmail.com
3c41a57cd18183f8d1d971ce71b94d38243f5a85
a6e4a6f0a73d24a6ba957277899adbd9b84bd594
/sdk/python/pulumi_azure_native/cdn/v20161002/get_profile_supported_optimization_types.py
c7c51e915af6ec616d256f41b35028165f4f7fb8
[ "BSD-3-Clause", "Apache-2.0" ]
permissive
MisinformedDNA/pulumi-azure-native
9cbd75306e9c8f92abc25be3f73c113cb93865e9
de974fd984f7e98649951dbe80b4fc0603d03356
refs/heads/master
2023-03-24T22:02:03.842935
2021-03-08T21:16:19
2021-03-08T21:16:19
null
0
0
null
null
null
null
UTF-8
Python
false
false
2,758
py
# coding=utf-8 # *** WARNING: this file was generated by the Pulumi SDK Generator. *** # *** Do not edit by hand unless you're certain you know what you are doing! *** import warnings import pulumi import pulumi.runtime from typing import Any, Mapping, Optional, Sequence, Union from ... import _utilities, _tables __a...
[ "noreply@github.com" ]
MisinformedDNA.noreply@github.com
1134064fddcca0a4808b546e92daff2f17d7533e
bbf025a5f8596e5513bd723dc78aa36c46e2c51b
/recursion + DP/416 partitionEqualSubsetSum.py
2c06293fc187af819729dcf730c357c9850251c7
[]
no_license
AlanFermat/leetcode
6209bb5cf2d1b19e3fe7b619e1230f75bb0152ab
cacba4abaca9c4bad8e8d12526336115067dc6a0
refs/heads/master
2021-07-11T04:00:00.594820
2020-06-22T21:31:02
2020-06-22T21:31:02
142,341,558
0
0
null
null
null
null
UTF-8
Python
false
false
22
py
def partition(): pass
[ "zy19@rice.edu" ]
zy19@rice.edu
fb337d2f93cb7bc1c230ac5ee85b0ae6153d1a2b
673bf701a310f92f2de80b687600cfbe24612259
/misoclib/mem/litesata/test/scrambler_tb.py
20c4045c45769c09a380c0ad879bb473df375f0a
[ "BSD-2-Clause", "LicenseRef-scancode-unknown-license-reference" ]
permissive
mogorman/misoc
d78340a9bf67feaede20e8cac473bcfddbd186a3
4ec49e2aadcff0c3ca34ebd0d35013d88f4d3e1f
refs/heads/master
2021-01-18T05:38:39.670977
2015-03-10T05:37:52
2015-03-10T05:37:52
30,672,191
1
0
null
2015-02-11T22:05:05
2015-02-11T22:05:05
null
UTF-8
Python
false
false
1,291
py
import subprocess from misoclib.mem.litesata.common import * from misoclib.mem.litesata.core.link.scrambler import * from misoclib.mem.litesata.test.common import * class TB(Module): def __init__(self, length): self.submodules.scrambler = InsertReset(Scrambler()) self.length = length def get_c_values(self, le...
[ "florent@enjoy-digital.fr" ]
florent@enjoy-digital.fr
f0d1d5adff2ca0f3f278aaf8ad723ec45be24682
d28a65d23c204a9736b597ae510d9dd54d2ffd0f
/tests/testRF2Namespace.py
9c77dd12cc6eaf93924009005bcb02f414c7cd61
[ "BSD-3-Clause" ]
permissive
cts2/rf2db
99ba327611e620fc5533245064afcc1daff7c164
985cd7ad84c8907306a0d7d309d4a1c0fb422ba4
refs/heads/master
2020-05-17T22:37:25.476553
2015-08-24T22:18:19
2015-08-24T22:18:19
15,264,407
0
0
null
null
null
null
UTF-8
Python
false
false
3,835
py
# -*- coding: utf-8 -*- # Copyright (c) 2014, Mayo Clinic # All rights reserved. # # Redistribution and use in source and binary forms, with or without modification, # are permitted provided that the following conditions are met: # # Redistributions of source code must retain the above copyright notice, this # list of ...
[ "solbrig.harold@mayo.edu" ]
solbrig.harold@mayo.edu
6a2ffbb56766a47705ad8233ad60ec4b258bb9d7
dac7095e7b5ad4dae993871c1ae45cbb7a5ce5f7
/Character/25.Milim/Milim_O.py
8c2045b511085f6a3595ca72e7b3ac72960686d2
[]
no_license
Lastation/RenewalAniChaos
d12a8423f4b83cb019495c59ed059451e67e0483
c3edb29af58925de55c11110ccaf927d2b5d1b39
refs/heads/master
2023-08-24T11:28:35.614844
2023-08-22T21:23:14
2023-08-22T21:23:14
246,617,812
1
0
null
null
null
null
UTF-8
Python
false
false
6,766
py
import Function as f; const s = StringBuffer(); function main(cp) { if (f.count[cp] == 1) { MoveLocation("25.Milim_Bozo", f.heroID[cp], cp, "Anywhere"); } f.HoldPosition(cp); f.BanReturn(cp); if (f.delay[cp] == 0) { if (f.count[cp] == 0) { if (f.loop[cp] == 0) ...
[ "ghtjd000129@naver.com" ]
ghtjd000129@naver.com
80bb3d72b5be850cf02eca31d0d3c0b58fe08313
3d3f629105b0a350c011976cae02cb10b385d873
/keras_180112/klab-10-2-mnist_nn.py
36d1418056f2ff3caacf1143ea13e15413242fbf
[]
no_license
vt0311/acorn_tensor
fbe7a9507db15161f029f297df64bfe0c937764f
eb9d94c5f28d673b82becb31abe6640cbd18cf89
refs/heads/master
2021-09-07T00:32:33.819768
2018-02-14T07:45:06
2018-02-14T07:45:06
114,960,417
0
0
null
null
null
null
UTF-8
Python
false
false
2,238
py
from __future__ import print_function import keras from keras.datasets import mnist from keras.models import Sequential from keras.layers import Dense, Dropout batch_size = 128 num_classes = 10 epochs = 12 # ============================================================================== # prepare data (X_train, y_t...
[ "hsw0311@nate.com" ]
hsw0311@nate.com
fb1758594df68342b967cc1f53b28f8b6252e80c
a2e638cd0c124254e67963bda62c21351881ee75
/Extensions/StructuredProductsDealPackage/FPythonCode/StructuredProductBase.py
a8a4961df7b260465ed6c73acdd4678ac88b1d4c
[]
no_license
webclinic017/fa-absa-py3
1ffa98f2bd72d541166fdaac421d3c84147a4e01
5e7cc7de3495145501ca53deb9efee2233ab7e1c
refs/heads/main
2023-04-19T10:41:21.273030
2021-05-10T08:50:05
2021-05-10T08:50:05
null
0
0
null
null
null
null
UTF-8
Python
false
false
9,371
py
import acm import FUxCore from DealPackageDevKit import DealPackageDefinition, DealPackageException, DealPackageUserException, CalcVal, Object, Str, Action, List, Bool, Float, Int, Date, Text, DatePeriod, DealPackageChoiceListSource, Settings, UXDialogsWrapper, TradeActions, CorrectCommand, NovateCommand, CloseCommand...
[ "nencho.georogiev@absa.africa" ]
nencho.georogiev@absa.africa
e23067ccfea11aa4b0dc25497a2590928d06d6cf
f9d564f1aa83eca45872dab7fbaa26dd48210d08
/huaweicloud-sdk-rocketmq/huaweicloudsdkrocketmq/v2/model/delete_instance_response.py
6180c6e96bbaa0ca0622168580d5acbda4542657
[ "Apache-2.0" ]
permissive
huaweicloud/huaweicloud-sdk-python-v3
cde6d849ce5b1de05ac5ebfd6153f27803837d84
f69344c1dadb79067746ddf9bfde4bddc18d5ecf
refs/heads/master
2023-09-01T19:29:43.013318
2023-08-31T08:28:59
2023-08-31T08:28:59
262,207,814
103
44
NOASSERTION
2023-06-22T14:50:48
2020-05-08T02:28:43
Python
UTF-8
Python
false
false
2,439
py
# coding: utf-8 import six from huaweicloudsdkcore.sdk_response import SdkResponse from huaweicloudsdkcore.utils.http_utils import sanitize_for_serialization class DeleteInstanceResponse(SdkResponse): """ Attributes: openapi_types (dict): The key is attribute name and the ...
[ "hwcloudsdk@huawei.com" ]
hwcloudsdk@huawei.com
f6383dcfc12bffdb2d4511f0276c48052a68612c
bdefc2c85e274114180e18838d7eade7d0fa2479
/OrcLib/LibDatabase.py
df1fa80a13fe98b70c0560fcd38dcd12563dbf7c
[]
no_license
langqy/OrcTestToolsKit
93e88b5baec33d7d7d20f6e4d55754b2aa4b995b
7dae0a4d410b233e0316526b3ff6bc157cbe24e0
refs/heads/master
2021-01-12T07:48:54.544507
2016-12-20T10:13:26
2016-12-20T10:13:26
null
0
0
null
null
null
null
UTF-8
Python
false
false
23,737
py
# -*- coding: utf-8 -*- from datetime import datetime from OrcLib.LibCommon import OrcCover from OrcApi import orc_db def gen_id(p_name): """ 生成 id :param p_name: :return: id """ sequence = orc_db.session \ .query(LibSequence) \ .filter(LibSequence.field_name == p_name) \ ...
[ "orange21cn@126.com" ]
orange21cn@126.com
71589f5d140046f2491dc757b051d502ae0432d8
e4ec5b6cf3cfe2568ef0b5654c019e398b4ecc67
/azure-cli/2.0.18/libexec/lib/python3.6/site-packages/azure/mgmt/network/v2016_09_01/operations/network_watchers_operations.py
e2b172b2409f0f44f218c4f4f638d39ceb50cde1
[]
no_license
EnjoyLifeFund/macHighSierra-cellars
59051e496ed0e68d14e0d5d91367a2c92c95e1fb
49a477d42f081e52f4c5bdd39535156a2df52d09
refs/heads/master
2022-12-25T19:28:29.992466
2017-10-10T13:00:08
2017-10-10T13:00:08
96,081,471
3
1
null
2022-12-17T02:26:21
2017-07-03T07:17:34
null
UTF-8
Python
false
false
53,720
py
# 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 ...
[ "Raliclo@gmail.com" ]
Raliclo@gmail.com
9e4713c9b200c4824571edd9a6992ce2fe3ae3a1
f707303e4dfe383cf82c23a6bb42ccfdc4cfdb67
/pandas-ml-quant-rl/pandas_ml_quant_rl/renderer/wrappers.py
3fb96c84205231b00a6dece0e609e87c5eba87bc
[ "MIT" ]
permissive
jcoffi/pandas-ml-quant
1830ec256f8c09c04f1aa77e2eecfba07d34fe68
650a8e8f77bc4d71136518d1c7ee65c194a99cf0
refs/heads/master
2023-08-31T06:45:38.060737
2021-09-09T04:44:35
2021-09-09T04:44:35
null
0
0
null
null
null
null
UTF-8
Python
false
false
2,233
py
import time from queue import Empty from multiprocessing import Process, Event, Queue from .abstract_renderer import Renderer def render_frame(data_q: Queue, finish_e: Event, renderer_provider): renderer = renderer_provider() while True: try: old_state, action, new_state, reward, done = d...
[ "kic@kic.kic" ]
kic@kic.kic
1c69983d542daa4862fc550a96058d269e269317
d3b77550a40b860970450e702b6bcd28d5f9b3e4
/LeetCode/top_interview_questions/SingleNumber.py
946e7f04b71da2dfe1ffc065803ebed6b32acc7d
[]
no_license
CateGitau/Python_programming
47bc9277544814ad853b44a88f129713f1a40697
6ae42b3190134c4588ad785d62e08b0763cf6b3a
refs/heads/master
2023-07-08T03:08:46.236063
2021-08-12T09:38:03
2021-08-12T09:38:03
228,712,021
1
0
null
null
null
null
UTF-8
Python
false
false
485
py
''' Given a non-empty array of integers nums, every element appears twice except for one. Find that single one. Follow up: Could you implement a solution with a linear runtime complexity and without using extra memory? ''' nums = [2,2,1] def singleNumber(num): countDict = {} for i in nums: if i...
[ "catherinegitau94@gmail.com" ]
catherinegitau94@gmail.com
6fa21b8ade431f7c3d86510e7d9f2ccc1c8b4271
efbe970cb374d4416c2c500a495994397ea18dd5
/utils/db.py
7a8018cd56adb2b0f4ac8c2920dbbc8cbbb04e43
[ "MIT" ]
permissive
void-being/bepis-bot
f7d9fbc7663bb8a28c70e312fa4fb20c53c406c7
491b8de94b94384df6b26fa6a1325ee578020b7e
refs/heads/master
2020-07-11T17:28:10.080879
2018-11-15T23:44:06
2018-11-15T23:44:06
null
0
0
null
null
null
null
UTF-8
Python
false
false
7,845
py
from datetime import datetime, timedelta from logging import getLogger from hashlib import md5 from os import environ from uuid import uuid4 from threading import Thread from queue import Queue from pymongo import mongo_client class EventHandler(Thread): def __init__(self): self.q = Queue() supe...
[ "zwork101@gmail.com" ]
zwork101@gmail.com
386fd37b61525c2096f4a65d5ec83bd686be6528
d68ca034018d66f73024223d4b2266b3c3c901d7
/prev/myworks/lennys/chainxy/spiders/lennys.py
16da51425667364402f6e451a3adb30645e65cd6
[]
no_license
GoodyIT/scrapy
caff30d26660f778008ad50532e364ab36aba4c2
5ae80cf83dc62c4e1bd2bfa11049ca39a3ca3488
refs/heads/master
2021-01-20T10:10:18.365194
2017-07-22T13:09:07
2017-07-22T13:09:07
90,330,210
4
0
null
null
null
null
UTF-8
Python
false
false
2,527
py
import scrapy import json import csv from scrapy.spiders import Spider from scrapy.http import FormRequest from scrapy.http import Request from scrapy.selector import HtmlXPathSelector from chainxy.items import ChainItem import pdb class Lennys(scrapy.Spider): name = "lennys" domain = "http://www.lennys.com/...
[ "johnsondavid489@yahoo.com" ]
johnsondavid489@yahoo.com
52d9885475a54a1a940aad89d53e0ad69b4ede67
3dbc74df3a97ce8254935a08608e8a7966a1bba6
/math/0x00-linear_algebra/12-bracin_the_elements.py
eb3480dcce06fe9737c77707f4fb45cfa3363dd2
[]
no_license
s0m35h1t/holbertonschool-machine_learning
9c0475da64eea87565dd90d70eeb23016ef17600
2eb7965900fd018f4092d2fb1e2055d35ba4899e
refs/heads/master
2023-02-28T21:57:50.558030
2021-02-07T20:44:01
2021-02-07T20:44:01
279,866,501
0
0
null
null
null
null
UTF-8
Python
false
false
348
py
#!/usr/bin/env python3 """Array operations""" def np_elementwise(mat1, mat2): """+. -. *, / operations between matrix. Args: mat1 (numpy.ndarray): M1 matrix. mat2 (numpy.ndarray): M2 matrix. Returns: numpy.ndarray: M1+M2 M1-M2, M1*M2 M1/M2 """ return mat1 + mat2, mat1 - mat...
[ "adib.grouz@gmail.com" ]
adib.grouz@gmail.com
a107f778c6b4a2e7c1e2a0ecaaa9d282162faee0
c0dab4c3f949b09044b8731d19c1c3cb82abc9ae
/airmozilla/new/views.py
5bd534963b12c7f1fe79b85af3368f528c171db9
[]
no_license
mudithkr/airmozilla
274d64464ca24ed9c0f8d805fdf9233cdf2fed22
5e78ebd28c678dabf54d471aab2b31fd742d4205
refs/heads/master
2020-04-05T23:12:44.840465
2016-02-04T19:07:23
2016-02-04T19:07:23
45,274,575
1
0
null
2015-10-30T20:19:54
2015-10-30T20:19:54
null
UTF-8
Python
false
false
31,381
py
# -*- coding: utf-8 -*- import json import os from cStringIO import StringIO from xml.parsers.expat import ExpatError import requests import xmltodict from PIL import Image from slugify import slugify from django import http from django.shortcuts import render, get_object_or_404, redirect from django.db import trans...
[ "mail@peterbe.com" ]
mail@peterbe.com
4d3e7de00e12814dd0c68c0dde2ce72c7722b95b
6aee7149a16a71389e0916de1854f4edea026c2b
/test/download.py
85081f5885c05233a84be7bdecbb5551a69b5b5b
[ "BSD-2-Clause" ]
permissive
orionzhou/maize
d5e3c66af285d5d3a490fe09e85f840bd033240a
605c895c397c9f614955a6df8eed0edc553f543d
refs/heads/main
2022-12-27T02:08:26.747564
2022-11-24T07:57:30
2022-11-24T07:57:30
11,537,821
5
1
null
null
null
null
UTF-8
Python
false
false
1,657
py
#!/usr/bin/env python # -*- coding: utf-8 -*- import os import sys import os.path as op import wget if sys.version_info[0] < 3: int_types = (int, long) urlopen = urllib.urlopen else: int_types = (int,) basestring = str from urllib.request import urlopen def download_file(src_ftp, dst_file, prt=sys...
[ "zhoupenggeni@gmail.com" ]
zhoupenggeni@gmail.com
3f22c1357f42e66a1fb44272dced80b7843cca37
a16d190c16781bf4fde5960673d2897e469e0174
/flink-ai-flow/lib/airflow/airflow/providers/cncf/kubernetes/hooks/kubernetes.py
cf27713a991fd503d74c0d23c9dbaf7409dde42a
[ "Apache-2.0", "BSD-3-Clause", "Python-2.0", "MIT", "BSD-2-Clause" ]
permissive
bgeng777/flink-ai-extended
742a1bb80d07c090c3ecb960394422896b5899d7
f83b5d661240c45c767002767c0cbddc847fff81
refs/heads/master
2023-08-15T00:32:40.260537
2021-07-27T04:20:53
2021-07-27T04:20:53
349,360,984
1
2
Apache-2.0
2021-05-20T03:05:56
2021-03-19T09:03:50
Python
UTF-8
Python
false
false
9,757
py
# Licensed to the Apache Software Foundation (ASF) 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 u...
[ "jiangxin.jiang@alibaba-inc.com" ]
jiangxin.jiang@alibaba-inc.com
b99beec62cc60a55e6c46768b861059a9b5a6843
147648c6b25ecc33e82a36b36de6623df9340e62
/examples/hacker_news_assets/hacker_news_assets_tests/test_sensors/test_slack_on_pipeline_failure_sensor.py
285174018e5397b10ae037b9f992ed283ee06718
[ "Apache-2.0" ]
permissive
asdlei99/dagster
be81009ff00dbad02f7cec974650388a5cc2af59
bbfd1a22e85a10881d7dbbcc888957a487f0c3e5
refs/heads/master
2023-08-28T07:18:23.838943
2021-11-08T23:09:07
2021-11-08T23:09:07
null
0
0
null
null
null
null
UTF-8
Python
false
false
790
py
from dagster import repository from hacker_news_assets.sensors.slack_on_pipeline_failure_sensor import make_pipeline_failure_sensor def test_slack_on_pipeline_failure_def(): @repository def my_repo_local(): return [ make_pipeline_failure_sensor("localhost"), ] @repository ...
[ "noreply@github.com" ]
asdlei99.noreply@github.com
c4c5dc4c7c52ced3d2aac3855ae1ca3b733e6aec
130a98632d2ab4c171503b79e455b7aa27a1dda4
/models/research/delf/delf/python/feature_extractor.py
9545337f18724520e260af4e36ffa6ee35bce4c6
[ "MIT", "Apache-2.0" ]
permissive
aboerzel/German_License_Plate_Recognition
d7fc0314295f5cf0c9d7ae9c93a795e3ef1c5787
6fc53292b1d3ce3c0340ce724c2c11c77e663d27
refs/heads/master
2023-01-30T18:08:37.339542
2023-01-07T07:41:36
2023-01-07T07:41:36
245,586,430
34
12
MIT
2023-01-07T07:41:37
2020-03-07T07:16:51
Python
UTF-8
Python
false
false
6,181
py
# Copyright 2017 The TensorFlow Authors 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 applicab...
[ "andreas.boerzel@gmx.de" ]
andreas.boerzel@gmx.de
c49aed0557e05e299c3be8527df443644b2e2241
a8a2491a21ee53066f42ed3cd8c1d5169858790b
/pizzaria/pizzaria/entrega/fixtures/db-update.py
6bfbb3d7608012395bcf9d9712af49c49baaeb69
[]
no_license
huogerac/acpy_pizzaria
80c7236f7c9d8bf58bcf4a9f45e2bfeacd8e4d38
eec5f88478a424ed3b193c0a6ed4f31d88b1d0e5
refs/heads/master
2016-09-05T18:07:14.555495
2012-04-13T02:04:53
2012-04-13T02:04:53
null
0
0
null
null
null
null
UTF-8
Python
false
false
3,371
py
#!/usr/bin/env python # coding: utf-8 import json import argparse import os """ atualiza estrutura de um arquivo json >>> json = [{'pk': 1, 'model': 'entrega.cliente', 'fields': { 'nome': 'Juca' } }] >>> updater = JsonUpdate( json ) >>> updater.json() [{'pk': 1, 'model': 'entrega.cliente', 'field...
[ "huogerac@gmail.com" ]
huogerac@gmail.com
9aa34dbf85f69d40cc103e7934a8361b0e268c80
39e1e256acae3fe9be4434024d42b9bb47bdd02f
/analysis/submissions/34b1ef17e6625ba2350f6f1c169591a1_task7-2_1595553510/task7-2/main.py
57e71b6a83e9ecb3955d6e56748da540dc53cbbf
[]
no_license
neulab/tranx-study
9fb67b9a2181f0b362e4f97316c502eee4539b19
e2a7089689f7f95e773e19c8f19513abe4fb8b9b
refs/heads/master
2023-06-14T04:46:01.010892
2021-07-08T09:29:05
2021-07-08T09:29:05
250,357,553
2
1
null
null
null
null
UTF-8
Python
false
false
1,872
py
# Example code, write your program here import pandas as pd import matplotlib.pyplot as plt import matplotlib import numpy as np def autolabel(rects, i): for rect in rects: h = rect.get_height() axs[i].text(rect.get_x()+rect.get_width()/2., h+1, '%.2f' % h, ha='center', va='bottom') df = pd.read...
[ "frankxu2004@gmail.com" ]
frankxu2004@gmail.com
496b5d2ed0eedb526dbcbefe24d68668eb530bb8
757132ddc333fdabf4b183ac59a232228f9d3f44
/dict_os_play.py
a9fbc765161e07770a85ba4a0d51353d5fd57eca
[]
no_license
rjcmarkelz/RNAseq_rename_script
d9f6ebebbf80c6b36dd554d2bc5a7e4d731c586e
ebb40f61cbdcefc321aae9f7b2f4ffa489e03705
refs/heads/master
2021-01-19T22:13:50.149084
2013-04-27T05:57:02
2013-04-27T05:57:02
null
0
0
null
null
null
null
UTF-8
Python
false
false
690
py
#!/usr/bin/python import os import re RN_Dict = { 'RIL_360' :'RIL_1.rn', 'RIL_73' :'RIL_1.rn', 'RIL_259' :'RIL_103.rn', 'RIL_251' :'RIL_104.rn', 'RIL_113' :'RIL_113.rn', 'RIL_265' :'RIL_113.rn', } print RN_Dict # Open a file #cody_2 path #path = "/Users/Cody_2/git.repos/RILS/Block1/project.maloof/" #cody_1 path pa...
[ "rjmarkelz@ucdavis.edu" ]
rjmarkelz@ucdavis.edu
be3a8630c86bf4562819caacf591832785f84592
fa93e53a9eee6cb476b8998d62067fce2fbcea13
/devel/.private/pal_navigation_msgs/lib/python2.7/dist-packages/pal_navigation_msgs/msg/__init__.py
d75a255b3ed14cbd6bca1f6eef3c4d8666bc8d6a
[]
no_license
oyetripathi/ROS_conclusion_project
2947ee2f575ddf05480dabc69cf8af3c2df53f73
01e71350437d57d8112b6cec298f89fc8291fb5f
refs/heads/master
2023-06-30T00:38:29.711137
2021-08-05T09:17:54
2021-08-05T09:17:54
392,716,311
0
1
null
null
null
null
UTF-8
Python
false
false
1,644
py
from ._AvailableMaps import * from ._Emergency import * from ._EulerAngles import * from ._EulerAnglesStamped import * from ._GoToAction import * from ._GoToActionFeedback import * from ._GoToActionGoal import * from ._GoToActionResult import * from ._GoToFeedback import * from ._GoToGoal import * from ._GoToPOIAction ...
[ "sandeepan.ghosh.ece20@itbhu.ac.in" ]
sandeepan.ghosh.ece20@itbhu.ac.in
9da351c36861948347a97f559f18e3c7d0507905
3292017df3ff6c7190d5c5a60ecf5f8936cb7b90
/checkio/Elementary/Index Power/index_power.py
e293ee43d262aad903dab773ab170bca99681aeb
[ "MIT" ]
permissive
KenMercusLai/checkio
1e9cdfe70ccaf5315db36391c4710533d99cf9aa
5082ab0c6a7ae2d97963568a6f41589332e88029
refs/heads/master
2022-05-12T18:22:22.604531
2022-05-11T09:00:28
2022-05-11T09:00:28
22,260,056
39
22
NOASSERTION
2022-05-11T08:42:05
2014-07-25T14:40:06
Python
UTF-8
Python
false
false
528
py
def index_power(array, n): # Find Nth power of the element with index N. if n > len(array) - 1: return -1 else: return array[n] ** n if __name__ == '__main__': # pragma: no cover # These "asserts" using only for self-checking and not necessary for # auto-testing assert index_p...
[ "ken.mercus.lai@gmail.com" ]
ken.mercus.lai@gmail.com
93f43ffd58185a4000535c395d163b5c91f6ebdd
d554b1aa8b70fddf81da8988b4aaa43788fede88
/5 - Notebooks e Data/1 - Análises numéricas/Arquivos David/Atualizados/logDicas-master/data/2019-1/223/users/1330/codes/1595_1446.py
ae1ff47705f5df6b8f4503beaa1b154e0044a419
[]
no_license
JosephLevinthal/Research-projects
a3bc3ca3b09faad16f5cce5949a2279cf14742ba
60d5fd6eb864a5181f4321e7a992812f3c2139f9
refs/heads/master
2022-07-31T06:43:02.686109
2020-05-23T00:24:26
2020-05-23T00:24:26
266,199,309
1
0
null
null
null
null
UTF-8
Python
false
false
229
py
# Teste seu codigo aos poucos. # Nao teste tudo no final, pois fica mais dificil de identificar erros. # Nao se intimide com as mensagens de erro. Elas ajudam a corrigir seu codigo. q = float(input()) f = q/3 print(round(f, 3))
[ "jvlo@icomp.ufam.edu.br" ]
jvlo@icomp.ufam.edu.br
a7062d038bf0fc26a95efe6d963427056ee70d87
cd18e8900018afb643c44286a8d4db5d8d1c87c1
/likelihood.py
6bfaac5b749d06bd419e94daf5f6ed584a395940
[]
no_license
pbizimis/score_sde_pytorch
064a0bf9b2f116b2f0a2e9c7e129a8c38f7aa0b6
cb0e019fc7f1262724877730d64f75eb16aab1b0
refs/heads/main
2023-04-18T21:15:31.753968
2021-03-21T22:48:36
2021-03-21T22:48:36
349,578,514
1
0
null
2021-03-19T23:18:21
2021-03-19T23:18:20
null
UTF-8
Python
false
false
4,713
py
# coding=utf-8 # Copyright 2020 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...
[ "yang-song@live.cn" ]
yang-song@live.cn
e5ccbd6b3b4118250785a12ea65dc1d183f177cb
0b6a2c91d458e2e58aa5d732624f9189863e3567
/tests/test_array.py
c6f2bc565035bbd147efab113ed5afa57f331c40
[ "MIT" ]
permissive
SethMMorton/fastnumbers
ef45c5d060fc293397fee682e24e3b026f6355a4
50dee124f232422a66bcc603b43216bf7a94e587
refs/heads/main
2023-08-08T20:21:20.805580
2023-04-19T04:55:58
2023-04-19T04:56:42
22,624,904
103
16
MIT
2023-07-25T21:10:29
2014-08-05T00:44:53
C++
UTF-8
Python
false
false
34,358
py
from __future__ import annotations import array import ctypes from typing import Any, Callable, Dict, Iterator, List, NoReturn, Tuple, Union import numpy as np import pytest from hypothesis import given as hyp_given from hypothesis.strategies import ( binary, floats, integers, lists, text, ) from ...
[ "seth.m.morton@gmail.com" ]
seth.m.morton@gmail.com
2e21c92d54845d183d2aaebd0eee1a77a39208fc
f6bba50fccc6fb0dae2f046193434cfb4b9d32d5
/m-solutions2020/c/main.py
0bc2f50f93f9895ce3d48877d517d39eb5471a3e
[]
no_license
seven320/AtCoder
4c26723d20004fe46ce118b882faabc05066841c
45e301e330e817f1ace4be4088d3babe18588170
refs/heads/master
2021-11-22T22:57:32.290504
2021-10-24T09:15:12
2021-10-24T09:15:12
162,827,473
2
0
null
null
null
null
UTF-8
Python
false
false
745
py
#!/usr/bin/env python3 # encoding:utf-8 import copy import random import bisect #bisect_left これで二部探索の大小検索が行える import fractions #最小公倍数などはこっち import math import sys import collections from decimal import Decimal # 10進数で考慮できる mod = 10**9+7 sys.setrecursionlimit(mod) # 再帰回数上限はでdefault1000 d = collections.deque() def LI()...
[ "yosyuaomenw@yahoo.co.jp" ]
yosyuaomenw@yahoo.co.jp
01b21899501be1f686675a277d7c04a97b49c2a6
9c019fe81794fdecd027c9f3b6d57fb95dc646e7
/waters/dev/pep3d_writer2.py
6c67eadbcf283419d104844264604eb0845ffb4d
[]
no_license
MatteoLacki/waters
e29c3def911d494df5240ead114239082181f149
767d7d45fbe62acf0af75bbefc9bdeb4f65889e6
refs/heads/master
2021-07-07T11:47:25.758922
2020-09-20T11:24:36
2020-09-20T11:24:36
192,311,088
0
0
null
null
null
null
UTF-8
Python
false
false
1,271
py
%load_ext autoreload %autoreload 2 from pathlib import Path import pandas as pd pd.set_option('display.max_columns', 100) pd.set_option('display.max_rows', 5) import numpy as np import numpy as np from platform import system from waters.parsers import XMLparser, iaDBsXMLparser, Pep3Dparser, Apex3Dparser, df2text, col2...
[ "matteo.lacki@gmail.com" ]
matteo.lacki@gmail.com
ce1cbee1c8760bed1f92f6c835a5075202aaff8c
6f8de50a5b51e938aca5ffe9b33bc312d68b2de0
/tests/test_sleeping.py
0014f207b373c6b2f459a14c16295cd8501ed1e6
[ "MIT" ]
permissive
pawelkopka/kopf
0621150d9cdf286a2763c1482082d4868293c6c3
51a3a70e09a17cf3baec2946b64b125a90595cf4
refs/heads/master
2021-02-27T09:42:19.108740
2020-02-20T16:05:16
2020-02-20T16:05:16
245,597,653
0
0
MIT
2020-03-07T08:46:33
2020-03-07T08:46:33
null
UTF-8
Python
false
false
1,222
py
import asyncio from kopf.engines.sleeping import sleep_or_wait async def test_sleep_or_wait_by_delay_reached(timer): event = asyncio.Event() with timer: unslept = await asyncio.wait_for(sleep_or_wait(0.10, event), timeout=1.0) assert 0.10 <= timer.seconds < 0.11 assert unslept is None async...
[ "sergey.vasilyev@zalando.de" ]
sergey.vasilyev@zalando.de
a0277aef821c0c0df03be709cad993832130f137
f4b8c90c1349c8740c1805f7b6b0e15eb5db7f41
/test/test_incident_clery_geography_item.py
a2e42aee295d69416c816a915582b860257990dd
[]
no_license
CalPolyResDev/StarRezAPI
012fb8351159f96a81352d6c7bfa36cd2d7df13c
b184e1863c37ff4fcf7a05509ad8ea8ba825b367
refs/heads/master
2021-01-25T10:29:37.966602
2018-03-15T01:01:35
2018-03-15T01:01:35
123,355,501
2
1
null
null
null
null
UTF-8
Python
false
false
1,134
py
# coding: utf-8 """ StarRez API This is a way to connect with the StarRez API. We are not the developers of the StarRez API, we are just an organization that uses it and wanted a better way to connect to it. # noqa: E501 OpenAPI spec version: 1.0.0 Contact: resdev@calpoly.edu Generated by: https...
[ "fedorareis@gmail.com" ]
fedorareis@gmail.com
bb558e12b38a611e6ef8ebb0b193f6cc9978081e
a74216bf9183c9124b900e2c49aed9c2df324fab
/conversion/hinter_merge_gt_poses.py
c37362ae75e4363c7bab06107b23815c702c6e5c
[ "MIT" ]
permissive
EricCousineau-TRI/sixd_toolkit
1900bef231024ccc1b528202f01c40ac398b96ec
dd610c46ae75d09aa68d21e56505936de05d44bb
refs/heads/master
2020-06-06T03:13:37.924124
2019-06-18T23:01:36
2019-06-18T23:01:36
192,622,561
0
0
MIT
2019-06-18T22:52:22
2019-06-18T22:52:22
null
UTF-8
Python
false
false
1,255
py
# Author: Tomas Hodan (hodantom@cmp.felk.cvut.cz) # Center for Machine Perception, Czech Technical University in Prague # Copies a selected part of a dataset. import os import sys import yaml sys.path.append(os.path.dirname(os.path.dirname(os.path.abspath(__file__)))) gt_poses_1_path = '/local/datasets/tlod/hinters...
[ "tom.hodan@gmail.com" ]
tom.hodan@gmail.com
2ede47e112d7ee53b28b6b8ed26381669043ab46
dddd89637373f455a476431f4fcb7e17b4e9dd57
/py/mymodule.py
7ee8fd4f09f5ecb889c7703003fa5ef98e954cfa
[]
no_license
DhirManish/Python
35304eb47dea61934426fb6fc5094e1a83517cf3
10df7245d0964340d6c8d14cf26a9cf8f93ecf5d
refs/heads/master
2020-06-05T07:09:41.856780
2015-03-07T12:53:10
2015-03-07T12:53:10
20,372,496
1
0
null
null
null
null
UTF-8
Python
false
false
918
py
#!/usr/bin/env python # -*- coding: utf-8 -*- # # mymodule.py # # Copyright 2014 Ajay Bhatia <ajay@dumb-box> # # 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 Li...
[ "prof.ajaybhatia@gmail.com" ]
prof.ajaybhatia@gmail.com
c6db344a0c7800fb1e1c26ef0f5e8dde7f3c93bd
b2e37446c5ef3602f1f4029d16104c397f9c46ae
/troubleshoot_step3.py
1d1549c1de8469684789cc1017feb34d4dfee661
[]
no_license
imapex-training/mod_apic_em
6c7344edd8bf7e816bdba7f1ee7401b9e9e0d1c0
0d53a1e9d4eac74d7958b38144b07e60a85b1055
refs/heads/master
2021-07-16T08:09:41.467208
2017-10-23T16:32:51
2017-10-23T16:32:51
108,008,896
0
0
null
null
null
null
UTF-8
Python
false
false
14,885
py
#! /usr/bin/env python """ Learning Series: Network Programmability Basics Module: Network Controllers Lesson: Program your own DNA with APIC-EM APIs Author: Hank Preston <hapresto@cisco.com> troubleshoot_full.py Illustrate the following concepts: - Automating common information gathering used in troubleshooting - Rep...
[ "kecorbin@cisco.com" ]
kecorbin@cisco.com
a00358f8ab1fa0c2fdc688d9b88603e9d41fb568
95a1f698b1d8b7c2578d5306481f506751b0452e
/dino_history/heritage/views.py
d89f40459cc1c9e5951c7eacf0e1b85138f2b91b
[]
no_license
hyesungoh/dino_history
45130bf8aa984282c90fa2b241401d0c038968e6
e5f50a8b83ff445c627302af2e6ca893ef8a4af2
refs/heads/master
2023-01-07T14:43:28.643160
2020-10-26T12:48:01
2020-10-26T12:48:01
284,934,718
0
0
null
2020-08-24T12:10:33
2020-08-04T09:26:13
Python
UTF-8
Python
false
false
4,231
py
from django.shortcuts import render from .models import Heritage from user.models import Student # from django.contrib.staticfiles.templatetags.staticfiles import static # from django.contrib.staticfiles.storage import staticfiles_storage import os # Create your views here. def main(request): if request.user.is_au...
[ "haesungoh414@gmail.com" ]
haesungoh414@gmail.com
f8bbfce20a767ccc811dab546f25a1739002b4c9
8d4c6f902880f5f6b792c12a78d09afcb3cdd3d7
/KafkaProducer.py
2aea02ccb7d84c882c0fcad279c58b6fb77f3237
[]
no_license
DataMarvel/DataFury
e1ae14a66253a2b67b60de8babf4e6d3fc08ea2d
553023a8bb0a5f1f01f32d463563a39425cff21d
refs/heads/master
2020-04-06T17:30:22.752209
2018-11-26T10:18:57
2018-11-26T10:18:57
157,661,805
0
0
null
null
null
null
UTF-8
Python
false
false
3,550
py
# -*- coding: UTF-8 -*- """ Created on 2018年11月20日 @author: Leo @file: KafkaProducer """ # Python内部库 import json from collections import OrderedDict # Python第三方库 import pykafka # 项目内部库 from DataVision.LoggerHandler.logger import VisionLogger from DataFury.MessagePipe.KafkaPipe import KafkaMessageClient # 日志路径 LOGGER...
[ "379978424@qq.com" ]
379978424@qq.com
865791be0b87e07cdc5e56f2b20f7a15a28bdab7
747f759311d404af31c0f80029e88098193f6269
/addons/newsletter_base_contact/partner.py
8b586562e8642bd853fcf8d68e44717197864037
[]
no_license
sgeerish/sirr_production
9b0d0f7804a928c0c582ddb4ccb7fcc084469a18
1081f3a5ff8864a31b2dcd89406fac076a908e78
refs/heads/master
2020-05-19T07:21:37.047958
2013-09-15T13:03:36
2013-09-15T13:03:36
9,648,444
0
1
null
null
null
null
UTF-8
Python
false
false
72
py
/home/openerp/production/extra-addons/newsletter_base_contact/partner.py
[ "geerish@omerp.net" ]
geerish@omerp.net
a06c079bd1cdb8fbb900392ff3e8152c2958d9e3
ca7aa979e7059467e158830b76673f5b77a0f5a3
/Python_codes/p03549/s890781358.py
607888d01b59816fdc141f2257c87d505e430154
[]
no_license
Aasthaengg/IBMdataset
7abb6cbcc4fb03ef5ca68ac64ba460c4a64f8901
f33f1c5c3b16d0ea8d1f5a7d479ad288bb3f48d8
refs/heads/main
2023-04-22T10:22:44.763102
2021-05-13T17:27:22
2021-05-13T17:27:22
367,112,348
0
0
null
null
null
null
UTF-8
Python
false
false
53
py
n,m=map(int,input().split());print((n+m*18)*100*2**m)
[ "66529651+Aastha2104@users.noreply.github.com" ]
66529651+Aastha2104@users.noreply.github.com
a4225989c567f4133e52a90ae410c30dfee20c2e
1bd2e09ce498c6bbb63e1854471941b777096bdb
/paleomix/tools/zonkey/parts/admixture.py
8df7bd212c985e38798e8df5f83a3e60dfc8a063
[]
no_license
muslih14/paleomix
3f1e6f43178a132b05525b5eb296d8cf1c5d72c4
254fb1c4151e03217c19715a6e989dc79b1edcc5
refs/heads/master
2021-01-21T08:33:04.995061
2016-04-05T14:32:21
2016-04-05T14:32:21
null
0
0
null
null
null
null
UTF-8
Python
false
false
5,712
py
#!/usr/bin/python # # Copyright (c) 2016 Mikkel Schubert <MSchubert@snm.ku.dk> # # 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 #...
[ "MikkelSch@gmail.com" ]
MikkelSch@gmail.com
4a095744e7e81eb74d3e2a32b8d9364eb64bc23f
41608dcb12ce6b16ad70d55bf0f155c1877de3a5
/src/Utils/Valuator/BSM.py
ae17d6a56f9da1e637fd97e0c594cc5dadf048f8
[]
no_license
frankma/Finance
eb68567e827e9045e1f4f3baaead6757aefb5168
c6fe293895e1c295b7625f051625ba0b64efada1
refs/heads/master
2021-01-17T03:21:14.146946
2017-11-25T16:49:39
2017-11-25T16:49:39
33,056,941
0
0
null
null
null
null
UTF-8
Python
false
false
6,669
py
import logging from math import log, exp, sqrt import numpy as np from scipy.stats import norm from src.Utils.Solver.Brent import Brent from src.Utils.Solver.IVariateFunction import IUnivariateFunction from src.Utils.Solver.NewtonRaphson import NewtonRaphson from src.Utils.Types import OptionType __author__ = 'frank...
[ "guang.y.ma@gmail.com" ]
guang.y.ma@gmail.com
fd13356be0081170ae569dea23537c4688c513f0
c77c10d8c6ef24f0dfa64a9824d584d723711f6c
/python/rest-client-samples/image/image_tagging_batch.py
eef3a11ce81454b6c0fc4dfdd5dcde8d206c2c14
[ "Apache-2.0" ]
permissive
zhd/ais-sdk
daf2e3b3e61740e105cbdbd709a24a7ffd48ead8
9976a9595dd72d189b5f63e511e055251ab4e61f
refs/heads/master
2020-04-02T01:59:44.053044
2018-10-20T08:47:24
2018-10-20T08:47:24
153,885,712
1
0
Apache-2.0
2018-10-20T08:34:38
2018-10-20T08:34:37
null
UTF-8
Python
false
false
2,112
py
# -*- coding:utf-8 -*- import sys import urllib2 import json import ssl import base64 from urllib2 import HTTPError, URLError from gettoken import get_token reload(sys) sys.setdefaultencoding('utf8') def download_url_base64(url): try: r = urllib2.urlopen(url) except HTTPError, e: resp = e.rea...
[ "17091412@qq.com" ]
17091412@qq.com
66a0abc924d8b12ab7931ec064ca79c6f391ae16
795df757ef84073c3adaf552d5f4b79fcb111bad
/r8lib/r8_mod.py
658d59050a45420aa01faa0175bd7e9e59f4f220
[]
no_license
tnakaicode/jburkardt-python
02cb2f9ba817abf158fc93203eb17bf1cb3a5008
1a63f7664e47d6b81c07f2261b44f472adc4274d
refs/heads/master
2022-05-21T04:41:37.611658
2022-04-09T03:31:00
2022-04-09T03:31:00
243,854,197
3
0
null
null
null
null
UTF-8
Python
false
false
2,486
py
#! /usr/bin/env python3 # def r8_mod ( x, y ): #*****************************************************************************80 # ## R8_MOD returns the remainder of R8 division. # # Formula: # # If # REM = R8_MOD ( X, Y ) # RMULT = ( X - REM ) / Y # then # X = Y * RMULT + REM # where REM has t...
[ "tnakaicode@gmail.com" ]
tnakaicode@gmail.com
1019622c1a9cba7665d3b14f47a713a3ead043b3
e10a6d844a286db26ef56469e31dc8488a8c6f0e
/supcon/utils_test.py
e218abb01e8712e15a6b7250dd27baff5ee6dc80
[ "Apache-2.0", "CC-BY-4.0" ]
permissive
Jimmy-INL/google-research
54ad5551f97977f01297abddbfc8a99a7900b791
5573d9c5822f4e866b6692769963ae819cb3f10d
refs/heads/master
2023-04-07T19:43:54.483068
2023-03-24T16:27:28
2023-03-24T16:32:17
282,682,170
1
0
Apache-2.0
2020-07-26T15:50:32
2020-07-26T15:50:31
null
UTF-8
Python
false
false
27,833
py
# coding=utf-8 # Copyright 2022 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...
[ "copybara-worker@google.com" ]
copybara-worker@google.com
c45a9cdc1199bbada87416704b20196c0de40f81
bf534da18426b49dbee0a0b1870f5f3a85922855
/ex049tabparaqlqrnumero.py
7a82f9bdfefab90ed265b895293c51a526aed53e
[]
no_license
kcpedrosa/Python-exercises
0d20a72e7e68d9fc9714e3aabf4850fdbeb7d1f8
ae35dfad869ceb3aac186fce5161cef8a77a7579
refs/heads/master
2021-05-20T08:46:29.318242
2020-04-01T15:44:36
2020-04-01T15:44:36
252,205,326
0
0
null
null
null
null
UTF-8
Python
false
false
342
py
tabuada = int(input('Digite o numero da tabuada: ')) n = int(input('Digite o inicio da tabuada: ')) print ("Tabuada de %d" %tabuada) if n <= 10: while n <= 10: print ("%d x %d = %d" %(tabuada, n, tabuada * n)) n = n + 1 else : print ('Você está de brincadeira. Digite um numero m...
[ "kattine.costa@gmail.com" ]
kattine.costa@gmail.com
32f32044f17e55e730595c1e880cbc6ad0dc5ede
c9f9a4efae174ef89071f4e3cdbb4f4bba3b2eac
/test7/test7/settings.py
9859d2eaaa1e565ac1b6b019161a100bc6717fdf
[]
no_license
rj8928/projects
8618bf40392a140bdf6b6264fd86cae3c6321ede
5fe78f839b918a5cf1d0db52c9b6237ffdae08c9
refs/heads/master
2021-01-01T18:40:12.316231
2017-08-06T02:24:08
2017-08-06T02:24:08
98,400,133
0
0
null
null
null
null
UTF-8
Python
false
false
2,864
py
""" Django settings for test7 project. Generated by 'django-admin startproject' using Django 1.8.2. For more information on this file, see https://docs.djangoproject.com/en/1.8/topics/settings/ For the full list of settings and their values, see https://docs.djangoproject.com/en/1.8/ref/settings/ """ # Build paths ...
[ "rj8928@gmail.com" ]
rj8928@gmail.com
4087256ac94244ef67a6445e2c928565d99a813d
368be25e37bafa8cc795f7c9f34e4585e017091f
/.history/app_fav_books/views_20201113172600.py
40f5096e93ababd00b378c44b61e32e0bdd41f54
[]
no_license
steven-halla/fav_books_proj
ebcfbfda0e7f3cdc49d592c86c633b1d331da513
512005deb84ac906c9f24d4ab0939bd0db096716
refs/heads/master
2023-03-30T09:37:38.016063
2021-04-02T20:27:22
2021-04-02T20:27:22
354,125,658
0
0
null
null
null
null
UTF-8
Python
false
false
454
py
from django.shortcuts import render, redirect from .models import * from django.contrib import messages def index(request): return render(request, "index.html") def register_New_User(request): errors = User.objects.basic_validator(request.POST) if len(errors) > 0: for key, value in errors.items(...
[ "69405488+steven-halla@users.noreply.github.com" ]
69405488+steven-halla@users.noreply.github.com
5031fbd2b72ba7e0b98fd3e398eeba981cd8543b
8fcc27160f8700be46296568260fa0017a0b3004
/client/yamlext/bluepy.py
6741b4f1dd254b01051e099a6668754eb6d323ab
[]
no_license
connoryang/dec-eve-serenity
5d867f4eedfa896a4ef60f92556356cafd632c96
b670aec7c8b4514fc47cd52e186d7ccf3aabb69e
refs/heads/master
2021-01-22T06:33:16.303760
2016-03-16T15:15:32
2016-03-16T15:15:32
56,389,750
1
0
null
2016-04-16T15:05:24
2016-04-16T15:05:24
null
UTF-8
Python
false
false
4,483
py
#Embedded file name: e:\jenkins\workspace\client_SERENITY\branches\release\SERENITY\packages\yamlext\bluepy.py from collections import OrderedDict import yaml from . import PyIO cyaml_supported = hasattr(yaml, 'CLoader') def isNumber(string): try: int(string) return True except ValueE...
[ "masaho.shiro@gmail.com" ]
masaho.shiro@gmail.com
dd1efcc51937fbd3a8a07281534017d5801039fb
38efe804f2a070737984b5f4306ef9f09cbdf9c2
/clusterDist.py
1b14885ba62ef3ddc5e7485a39c7ad778ea9cb43
[]
no_license
krm9c/HierarchicalDimensionReduction
0bd59248035159c3d9fb8c9c407a3cecba7635d8
6af1455be32abf2e06667e7c264f52c76329ffee
refs/heads/master
2020-05-27T21:10:03.027472
2018-02-04T22:49:25
2018-02-04T22:49:25
83,605,507
0
0
null
null
null
null
UTF-8
Python
false
false
7,605
py
#!/usr/bin/env python # kmeans.py using any of the 20-odd metrics in scipy.spatial.distance # kmeanssample 2 pass, first sample sqrt(N) from __future__ import division import random import numpy as np from scipy.spatial.distance import cdist # $scipy/spatial/distance.py # http://docs.scipy.org/doc/scipy/reference...
[ "krm9c@mst.edu" ]
krm9c@mst.edu
5a821ae3b4527b4c618c4a37daee6aa675cb2fde
2ee8b831f228791ce5f5bb02298ce399b301e5f5
/virtual/bin/markdown2
26877791374b6c569706f45e02b86bb59f0afe02
[ "MIT" ]
permissive
amoskipz/Blog-App
7865c7cc5e9fcafdbe9593b4a912a8f7663315c2
16c2ac60cd61a1240ec32a00cafb16491be4be3a
refs/heads/master
2023-03-15T03:59:26.140437
2021-03-14T09:38:25
2021-03-14T09:38:25
346,115,985
0
0
null
null
null
null
UTF-8
Python
false
false
510
#!/home/moringa/moringa/Blog-app/virtual/bin/python3 import sys from os.path import join, dirname, exists # Use the local markdown2.py if we are in the source tree. source_tree_markdown2 = join(dirname(__file__), "..", "lib", "markdown2.py") if exists(source_tree_markdown2): sys.path.insert(0, dirname(source_tree...
[ "oduorthomas14@gmail.com" ]
oduorthomas14@gmail.com
17e755c681f2af7c0e9da66f57bca19b8ada049b
2f98aa7e5bfc2fc5ef25e4d5cfa1d7802e3a7fae
/python/python_4898.py
f24d6c7ea8b779aa4a7eadbb0bddac6bd0b5b7e0
[]
no_license
AK-1121/code_extraction
cc812b6832b112e3ffcc2bb7eb4237fd85c88c01
5297a4a3aab3bb37efa24a89636935da04a1f8b6
refs/heads/master
2020-05-23T08:04:11.789141
2015-10-22T19:19:40
2015-10-22T19:19:40
null
0
0
null
null
null
null
UTF-8
Python
false
false
119
py
# Problems with regex matching for tag in soup.findAll('a', href = re.compile('^/l[0-9]+/.*$')): print tag['href']
[ "ubuntu@ip-172-31-7-228.us-west-2.compute.internal" ]
ubuntu@ip-172-31-7-228.us-west-2.compute.internal
4e6f9e02a2bc25af9974e264a2cb211510c04cb5
9d278285f2bc899ac93ec887b1c31880ed39bf56
/ondoc/doctor/migrations/0219_hospitaltiming.py
141550a13b01289578de2f6301c2d453fb57bf04
[]
no_license
ronit29/docprime
945c21f8787387b99e4916cb3ba1618bc2a85034
60d4caf6c52a8b70174a1f654bc792d825ba1054
refs/heads/master
2023-04-01T14:54:10.811765
2020-04-07T18:57:34
2020-04-07T18:57:34
353,953,576
0
0
null
null
null
null
UTF-8
Python
false
false
2,663
py
# Generated by Django 2.0.5 on 2019-03-11 10:54 from django.db import migrations, models import django.db.models.deletion class Migration(migrations.Migration): dependencies = [ ('doctor', '0218_hospitalimage_cover_image'), ] operations = [ migrations.CreateModel( name='Hosp...
[ "shashanks@policybazaar.com" ]
shashanks@policybazaar.com
a01b01cf1ea7a55d51d37206222684274074d0c6
2b42b40ae2e84b438146003bf231532973f1081d
/spec/mgm4458702.3.spec
57e62c125a77bac683f7d31539272f9a92d57009
[]
no_license
MG-RAST/mtf
0ea0ebd0c0eb18ec6711e30de7cc336bdae7215a
e2ddb3b145068f22808ef43e2bbbbaeec7abccff
refs/heads/master
2020-05-20T15:32:04.334532
2012-03-05T09:51:49
2012-03-05T09:51:49
3,625,755
0
1
null
null
null
null
UTF-8
Python
false
false
14,314
spec
{ "id": "mgm4458702.3", "metadata": { "mgm4458702.3.metadata.json": { "format": "json", "provider": "metagenomics.anl.gov" } }, "providers": { "metagenomics.anl.gov": { "files": { "100.preprocess.info": { ...
[ "jared.wilkening@gmail.com" ]
jared.wilkening@gmail.com
b4c92b2d75d4f543d8df6161ea6c2627d29c7cb9
56fd2d92b8327cfb7d8f95b89c52e1700343b726
/odin/utilities/odin_init.py
f1c8be660e7bc9f44f1ebd0eed2725426c4967c8
[ "MIT" ]
permissive
stjordanis/Odin
fecb640ccf4f2e6eb139389d25cbe37da334cdb6
e2e9d638c68947d24f1260d35a3527dd84c2523f
refs/heads/master
2020-04-15T09:13:17.850126
2017-02-09T00:25:55
2017-02-09T00:25:55
null
0
0
null
null
null
null
UTF-8
Python
false
false
1,520
py
import os from .params import IOFiles def odin_init(sname): """This function creates a directory with the necessary substructure for Odin to run a trading algorithm within it. Specifically, it creates a folder with the desired strategy name within the current directory. It then creates a subdirectory ...
[ "jamesbrofos@gmail.com" ]
jamesbrofos@gmail.com
f42664fd88e759076b6aa04fde0d5154ec7fbb09
b05761d771bb5a85d39d370c649567c1ff3eb089
/venv/lib/python3.10/site-packages/jedi/third_party/django-stubs/django-stubs/conf/__init__.pyi
bcec01dd19e6ecc86911379e3ebc0292e61b94e6
[]
no_license
JawshyJ/Coding_Practice
88c49cab955eab04609ec1003b6b8c20f103fc06
eb6b229d41aa49b1545af2120e6bee8e982adb41
refs/heads/master
2023-02-19T10:18:04.818542
2023-02-06T21:22:58
2023-02-06T21:22:58
247,788,631
4
0
null
null
null
null
UTF-8
Python
false
false
96
pyi
/home/runner/.cache/pip/pool/88/3f/d6/3448e831c659c15c3f3acbc8afea93d43f96032561c061d445a546f614
[ "37465112+JawshyJ@users.noreply.github.com" ]
37465112+JawshyJ@users.noreply.github.com
1541f0cc0729432960694e2a393e12af4eeb2c20
f83ef53177180ebfeb5a3e230aa29794f52ce1fc
/opencv/opencv-2.4.13.6/modules/python/test/test_houghcircles.py
32b474fc855db5f85cd7a31f56d2dcec13488b95
[ "BSD-3-Clause", "Apache-2.0" ]
permissive
msrLi/portingSources
fe7528b3fd08eed4a1b41383c88ee5c09c2294ef
57d561730ab27804a3172b33807f2bffbc9e52ae
refs/heads/master
2021-07-08T01:22:29.604203
2019-07-10T13:07:06
2019-07-10T13:07:06
196,183,165
2
1
Apache-2.0
2020-10-13T14:30:53
2019-07-10T10:16:46
null
UTF-8
Python
false
false
2,165
py
#!/usr/bin/python ''' This example illustrates how to use cv2.HoughCircles() function. ''' # Python 2/3 compatibility from __future__ import print_function import cv2 import numpy as np import sys from numpy import pi, sin, cos from tests_common import NewOpenCVTests def circleApproximation(circle): nPoints =...
[ "lihuibin705@163.com" ]
lihuibin705@163.com
dbb633ad70ce2edee54c8cc9d8267977bf5cd330
b23c6c02d9b54c987bca2e36c3506cf80fa28239
/Python GUI samples progs/bind()_3.py
a45558950b7943b21048f81da502bed094207d39
[]
no_license
nishikaverma/Python_progs
21190c88460a79f5ce20bb25d1b35f732fadd642
78f0cadde80b85356b4cb7ba518313094715aaa5
refs/heads/master
2022-06-12T14:54:03.442837
2020-05-08T10:28:58
2020-05-08T10:28:58
262,293,571
0
0
null
null
null
null
UTF-8
Python
false
false
386
py
from tkinter import * def fun(e): key = e.char if key=="r": obj['bg']="red" if key=="b": obj['bg']="blue" if key=="g": obj['bg']="green" obj=Tk() obj.geometry("400x400") obj.bind("<Key>",fun) #obj.bind("r",lambda e:obj.config(bg="red")) #obj.bind("b",lambda e:obj.config(bg="blue...
[ "nishika.verma@live.com" ]
nishika.verma@live.com
fac0664e6843c613d99bfe54a34977ea1d1fb7f6
34599596e145555fde0d4264a1d222f951f49051
/pcat2py/class/20cec02a-5cc5-11e4-af55-00155d01fe08.py
43c152203e7fd04e7a2001b174788fa197d466ee
[ "MIT" ]
permissive
phnomcobra/PCAT2PY
dc2fcbee142ce442e53da08476bfe4e68619346d
937c3b365cdc5ac69b78f59070be0a21bdb53db0
refs/heads/master
2021-01-11T02:23:30.669168
2018-02-13T17:04:03
2018-02-13T17:04:03
70,970,520
0
0
null
null
null
null
UTF-8
Python
false
false
963
py
#!/usr/bin/python ################################################################################ # 20cec02a-5cc5-11e4-af55-00155d01fe08 # # Justin Dierking # justindierking@hardbitsolutions.com # phnomcobra@gmail.com # # 10/24/2014 Original Construction ################################################################...
[ "phnomcobra@gmail.com" ]
phnomcobra@gmail.com
ab812bb7efcb5ea4da28c1482e801a1d9950ffff
d32bc79eb8631d6bc4ab20498631ba516db4d5f7
/654_constructMaximumBinaryTree.py
e748b488968487a50b8649fc0aaa22486be027d1
[]
no_license
Anirban2404/LeetCodePractice
059f382d17f71726ad2d734b9579f5bab2bba93c
786075e0f9f61cf062703bc0b41cc3191d77f033
refs/heads/master
2021-10-08T04:41:36.163328
2021-09-28T02:16:47
2021-09-28T02:16:47
164,513,056
1
0
null
null
null
null
UTF-8
Python
false
false
2,102
py
#!/usr/bin/env python3 # -*- coding: utf-8 -*- """ Created on Sat Apr 20 13:14:08 2019 @author: anirban-mac """ """ 654. Maximum Binary Tree Given an integer array with no duplicates. A maximum tree building on this array is defined as follow: The root is the maximum number in the array. The left subtree is the max...
[ "anirban-mac@Anirbans-MacBook-Pro.local" ]
anirban-mac@Anirbans-MacBook-Pro.local
821a27a6f20fe9d4a2cfabbae9f68ed0bca88dfd
b4972d81804f0095c72da5d08574afecdc4725f1
/config/wsgi.py
94ac6fdcac7ec32ff53473877f00d63276533ccf
[]
no_license
NLPDev/Solar_gentelella
edf2ae9c919ad91603e2661b0d251567d4a44486
b9414990da148687b56fe4564ae933378c22ca5c
refs/heads/master
2022-10-08T19:57:52.268335
2020-06-12T03:02:06
2020-06-12T03:02:06
271,695,336
0
0
null
null
null
null
UTF-8
Python
false
false
1,678
py
""" WSGI config for solar project. This module contains the WSGI application used by Django's development server and any production WSGI deployments. It should expose a module-level variable named ``application``. Django's ``runserver`` and ``runfcgi`` commands discover this application via the ``WSGI_APPLICATION`` se...
[ "vasile123andronic@gmail.com" ]
vasile123andronic@gmail.com
d2cdfeaa05389cfeef257de3aa9711d8a69f9f6f
d7da288db4fd9fc0bb1c60c5074f290b5f70c8ef
/Aulas Python/Conteúdo das Aulas/020/Exercícios/Exercício 2.py
185ddecbe92dcd8251ec5a48a006df70f0350f8b
[]
no_license
luizdefranca/Curso-Python-IgnoranciaZero
dbf4cf342b3f3efea6fb3b8cf27bf39ed92927e9
9fbf2f25e3e6fce1f1582af0bd6bc7dbc5b9f588
refs/heads/master
2020-04-09T07:17:00.735378
2016-09-12T10:51:37
2016-09-12T10:51:37
67,999,169
1
0
null
null
null
null
UTF-8
Python
false
false
802
py
""" Faça um programa que calcule as raízes de uma equação do segundo grau, na forma ax2 + bx + c. O programa deverá pedir os valores de a, b e c e fazer as consistências, informando ao usuário nas seguintes situações: a. Se o usuário informar o valor de A igual a zero, a equação não é do segundo grau e o progr...
[ "luizramospe@hotmail.com" ]
luizramospe@hotmail.com
bb87629628ed14fb42b26c5249d5785feefed7b6
8d3fd439c6d5a52eda578847545234b2ebdc4f3b
/机器学习百科/pycode/ML-NLP/MachineLearning/Linear Regression/housing_price.py
44536b78d7158b6ca2a4262ab10c88fedf26ab6e
[]
no_license
gm-p/practice_demo
d1530dcdb3de95832f1fa5b6e30c75e7ca6acc05
7eaa825fc634ad21aea48713133c0266a44ac54a
refs/heads/main
2023-03-31T23:01:02.302579
2021-04-04T13:29:50
2021-04-04T13:29:50
354,193,496
0
0
null
null
null
null
UTF-8
Python
false
false
1,723
py
import os import numpy as np import pandas as pd np.random.seed(36) import matplotlib import seaborn import matplotlib.pyplot as plt from sklearn import datasets housing = pd.read_csv('kc_train.csv', header=None) target = housing.iloc[:, 1] housing.drop([1], inplace=True, axis=1) housing.columns = range(housing.sh...
[ "abc" ]
abc
926bf1581f5a2e5ac346eaa2f9f98bdf3d9c79b8
cd850c0544004a15ae1a59cbc4dc0f953db80cb3
/ALLCools/integration/cca.py
fdee0c491d747243934639b7cb446b9e87835557
[ "MIT" ]
permissive
lhqing/ALLCools
94508537be4f3620c8a9f230a4f077c6a43b996b
7c88363aec3e2010d6bb8619e015747a2ec552e8
refs/heads/master
2023-08-30T19:52:35.254611
2023-08-18T15:29:27
2023-08-18T15:29:27
189,878,706
22
14
MIT
2023-08-15T22:58:12
2019-06-02T18:02:35
Python
UTF-8
Python
false
false
12,534
py
import numpy as np from scipy.sparse import issparse from sklearn.decomposition import TruncatedSVD from sklearn.preprocessing import StandardScaler from sklearn.utils.extmath import safe_sparse_dot from ..clustering.lsi import tf_idf def top_features_idx(data, n_features): """ Select top features with the h...
[ "liuhq@ucsd.edu" ]
liuhq@ucsd.edu
c2236f0a5c489fbc77733aa9bdf7e1b571321af5
7bead245354e233f76fff4608938bf956abb84cf
/cloudmersive_convert_api_client/api/zip_archive_api.py
4e99bf138536d64956368d48ecf32da4f89c60be
[ "Apache-2.0" ]
permissive
Cloudmersive/Cloudmersive.APIClient.Python.Convert
5ba499937b9664f37cb2700509a4ba93952e9d6c
dba2fe7257229ebdacd266531b3724552c651009
refs/heads/master
2021-10-28T23:12:42.698951
2021-10-18T03:44:49
2021-10-18T03:44:49
138,449,321
3
2
null
null
null
null
UTF-8
Python
false
false
39,152
py
# coding: utf-8 """ convertapi Convert API lets you effortlessly convert file formats and types. # noqa: E501 OpenAPI spec version: v1 Generated by: https://github.com/swagger-api/swagger-codegen.git """ from __future__ import absolute_import import re # noqa: F401 # python 2 and python 3 ...
[ "35204726+Cloudmersive@users.noreply.github.com" ]
35204726+Cloudmersive@users.noreply.github.com
f64ef5be1cb2296e37c32480044b9712039ba234
7bf82ee19c480e86b904c36dc96bf1fc907c4022
/app/carpool/views.py
6ef14c182e8deece303a53b476f55ff89d8e1f31
[]
no_license
tangphillip/nomad
edf09beaa84d43c1064580f10d81ddfe3e1875e8
5757ee9499716fb5ab4844cb49d4fab6a49351f8
refs/heads/master
2021-05-16T17:59:16.690193
2017-09-11T01:44:24
2017-09-11T01:45:17
103,076,925
0
0
null
2017-09-11T01:44:13
2017-09-11T01:44:13
null
UTF-8
Python
false
false
10,469
py
import datetime from flask import ( abort, current_app, flash, jsonify, redirect, render_template, request, session, url_for, ) from flask_login import current_user, login_required from flask_mail import Message from geoalchemy2 import func from geoalchemy2.shape import to_shape, fro...
[ "ian.dees@gmail.com" ]
ian.dees@gmail.com
e5a016a9d7842de12cf1230ba542c4a962e9c79d
10b3f8b1bb2d43a053558e2974b1190ec5af9ab3
/test/functional/rpc_bind.py
5add6e40b9cff94c7002a194b59a6b71906076cc
[ "MIT" ]
permissive
Satoex/Sato
ff4683226c2cedb14203a86af68ae168e3c45400
fda51ccc241ca426e838e1ba833c7eea26f1aedd
refs/heads/master
2022-07-27T23:30:32.734477
2022-01-29T17:44:00
2022-01-29T17:44:00
346,001,467
6
8
null
null
null
null
UTF-8
Python
false
false
5,058
py
#!/usr/bin/env python3 # Copyright (c) 2014-2016 The Bitcoin Core developers # Copyright (c) 2017-2020 The Sato Core developers # Distributed under the MIT software license, see the accompanying # file COPYING or http://www.opensource.org/licenses/mit-license.php. """Test running satod with the -rpcbind and -rpcallowi...
[ "78755872+Satoex@users.noreply.github.com" ]
78755872+Satoex@users.noreply.github.com
990e8157dbaa6f55997fe8deb4a9f13dc4544538
0061e0c95b8068568a4cfe575748bb188296ccc1
/backend/users/migrations/0002_auto_20210219_1532.py
e86be94450eb2a079af956aaa4949e1d756b8d34
[]
no_license
crowdbotics-apps/dimelo-24619
cd7f1fb3693a8f48ae09f3815478723853d34dab
e17433535325b344128c7dfec7f3b79ae44d9db6
refs/heads/master
2023-03-07T00:05:14.598992
2021-02-19T15:33:15
2021-02-19T15:33:15
340,406,342
0
0
null
null
null
null
UTF-8
Python
false
false
1,275
py
# Generated by Django 2.2.19 on 2021-02-19 15:32 from django.db import migrations, models class Migration(migrations.Migration): dependencies = [ ('users', '0001_initial'), ] operations = [ migrations.AddField( model_name='user', name='last_updated', ...
[ "team@crowdbotics.com" ]
team@crowdbotics.com
708d0a15a49ca80a634e116056ef0ecf75446bac
71012df2815a4666203a2d574f1c1745d5a9c6dd
/4 Django/solutions/blogproj/users/views.py
d1bf844a9039d17be4df416bcd6fbf344ced543f
[]
no_license
PdxCodeGuild/class_mouse
6c3b85ccf5ed4d0c867aee70c46af1b22d20a9e8
40c229947260134a1f9da6fe3d7073bee3ebb3f7
refs/heads/main
2023-03-23T14:54:39.288754
2021-03-20T01:48:21
2021-03-20T01:48:21
321,429,925
1
7
null
null
null
null
UTF-8
Python
false
false
1,900
py
from django.contrib.auth.models import User from django.contrib.auth import login, authenticate, logout from django.http.response import HttpResponseRedirect from django.shortcuts import render from django.urls.base import reverse from blog.models import BlogPost # Create your views here. def signup_user(request): ...
[ "anthony@Anthonys-MBP.lan" ]
anthony@Anthonys-MBP.lan
cde534676dd6318d6ae9af23e4e2b32ca28795e1
fa93e53a9eee6cb476b8998d62067fce2fbcea13
/devel/lib/python2.7/dist-packages/temperature_sensor_controller/msg/__init__.py
bb3e963efd2e84de669939e5e72a708b27f82edd
[]
no_license
oyetripathi/ROS_conclusion_project
2947ee2f575ddf05480dabc69cf8af3c2df53f73
01e71350437d57d8112b6cec298f89fc8291fb5f
refs/heads/master
2023-06-30T00:38:29.711137
2021-08-05T09:17:54
2021-08-05T09:17:54
392,716,311
0
1
null
null
null
null
UTF-8
Python
false
false
150
py
/home/sandeepan/tiago_public_ws/devel/.private/temperature_sensor_controller/lib/python2.7/dist-packages/temperature_sensor_controller/msg/__init__.py
[ "sandeepan.ghosh.ece20@itbhu.ac.in" ]
sandeepan.ghosh.ece20@itbhu.ac.in
67c6b316084571aebd7e1c3631b369677521f80d
070b8536813d977167dd6305a4707fb381ceb9f0
/virtual/bin/pip3.7
278b3573aed2d6096f05c996cacee477cad21234
[ "MIT" ]
permissive
Wakarende/NewsBits
7b986191674a4d6efa4db21fcaa2b838e740ef98
27dc8110f4af73300e95d17afb4101d1ed30a49a
refs/heads/master
2023-04-15T22:48:13.701347
2021-04-20T17:35:58
2021-04-20T17:35:58
358,610,779
0
0
null
null
null
null
UTF-8
Python
false
false
262
7
#!/Users/joykirii/Desktop/M-IPS/NewsBits/virtual/bin/python # -*- coding: utf-8 -*- import re import sys from pip._internal.cli.main import main if __name__ == '__main__': sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0]) sys.exit(main())
[ "joykirii@gmail.com" ]
joykirii@gmail.com
37088948ab97d7b4ad95cae9fe4ab71c0642f49b
10d98fecb882d4c84595364f715f4e8b8309a66f
/hal/experiment_config/__init__.py
7e2101a9f156beed9225c586e2942ebe94a987af
[ "CC-BY-4.0", "Apache-2.0" ]
permissive
afcarl/google-research
51c7b70d176c0d70a5ee31ea1d87590f3d6c6f42
320a49f768cea27200044c0d12f394aa6c795feb
refs/heads/master
2021-12-02T18:36:03.760434
2021-09-30T20:59:01
2021-09-30T21:07:02
156,725,548
1
0
Apache-2.0
2018-11-08T15:13:53
2018-11-08T15:13:52
null
UTF-8
Python
false
false
985
py
# 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...
[ "copybara-worker@google.com" ]
copybara-worker@google.com
e057bda25b33a7f25156d496ddf7aa29c3c7caf3
6782a4d4c4406982a66d98466d448b5b8ea2d366
/tensorflow/compiler/mlir/quantization/tensorflow/python/representative_dataset.py
f7aceee1484d7f21224427847ada64eccd1b1b91
[ "LicenseRef-scancode-generic-cla", "Apache-2.0", "BSD-2-Clause" ]
permissive
MaiKuraki/tensorflow
7afc33f4bc505c794f51dd6cbbfc44a3233ea986
46c4751f554e5e7f249cbe6642f5f874ad7614a4
refs/heads/master
2022-07-31T20:48:39.704555
2022-06-29T18:01:02
2022-06-29T18:06:10
183,984,120
0
0
Apache-2.0
2019-04-29T02:11:07
2019-04-29T02:11:07
null
UTF-8
Python
false
false
1,261
py
# Copyright 2022 The TensorFlow Authors. 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 applica...
[ "gardener@tensorflow.org" ]
gardener@tensorflow.org
66f7a3f8de66cba4398c75fddb4dd631c1d28890
888f65551bb3fe1b8e84c205796b24678669a649
/venv/lib/python3.7/site-packages/series/db.py
19240d5a1c920be0fd897e64a552f1e28e07b4c9
[]
no_license
chunharrison/NBA-Predictor
e6514c70f2cf26d6db4c14aee225cfbd9d5984a7
967951ba34debee012385af63f2bf8031dee51ca
refs/heads/master
2022-05-04T22:02:03.374496
2019-05-15T05:55:34
2019-05-15T05:55:34
null
0
0
null
null
null
null
UTF-8
Python
false
false
4,675
py
import os import threading from pkg_resources import resource_filename from sqlpharmacy.core import Database as SPDatabase from sqlalchemy import Column, Integer, Boolean, String, Float import alembic from alembic.config import Config from series.logging import Logging from series.errors import InvalidDBError cl...
[ "wjsdntjr@hotmail.com" ]
wjsdntjr@hotmail.com
991b6836fb9e29cd210ef5db268f2febb4e34bbb
41ede4fd3bfba1bff0166bca7aee80dcf21434c6
/vedat/dist/python-egenix-mx-base/actions.py
c1faa95bac5817768dc6a725b7a2096051d0a330
[]
no_license
pisilinux/playground
a7db4b42559a21cc72fd4c8649e0231ab6a3eb3c
e4e12fff8a847ba210befc8db7e2af8556c3adf7
refs/heads/master
2022-08-12T23:03:27.609506
2022-08-11T18:28:19
2022-08-11T18:28:19
8,429,459
16
22
null
2022-08-11T18:28:20
2013-02-26T09:37:11
Python
UTF-8
Python
false
false
1,153
py
#!/usr/bin/python # -*- coding: utf-8 -*- # # Licensed under the GNU General Public License, version 3. # See the file http://www.gnu.org/licenses/gpl.txt from pisi.actionsapi import pisitools from pisi.actionsapi import pythonmodules from pisi.actionsapi import get MX_DIR = "/usr/lib/%s/site-packages/mx" % get.curPY...
[ "vedat@pisi_linux1.0" ]
vedat@pisi_linux1.0
05ac92fd75c1c83a14ea3cd112e50e0ddf78225e
34111dffa8598cd1baf84ecad87248d3b2c62269
/beartype_test/a00_unit/data/data_type.py
151e16884dc565252e4bbf85291c1bbb2ee37886
[ "MIT" ]
permissive
mbeacom/beartype
e6b7dc4490d19e446288a5bea2396204c67d51b1
ad20c2c3bd2590331ee3f3de702371d86ec8cb55
refs/heads/main
2023-07-30T00:14:05.275537
2021-09-17T07:21:39
2021-09-17T07:21:39
null
0
0
null
null
null
null
UTF-8
Python
false
false
11,428
py
#!/usr/bin/env python3 # --------------------( LICENSE )-------------------- # Copyright (c) 2014-2021 Beartype authors. # See "LICENSE" for further details. ''' Project-wide **generic types data** submodule. This submodule predefines low-level class constants exercising known edge cases on ...
[ "leycec@gmail.com" ]
leycec@gmail.com
8d69b25e44042226f07ebb909716a8ce394a4844
91e810849c5680311ce51c9e66289afb0a76336c
/docs/source/conf.py
2241ae833fcd4f0e8d257f2c255164791026f69e
[ "MIT" ]
permissive
zhanglixixi/pytool
307b0505dfa6312223239d34c0dc6a03904e1df3
35fb633149b663e6a0fe69c666e5883172223b45
refs/heads/master
2022-03-13T08:43:27.572958
2019-12-16T07:54:13
2019-12-16T07:54:13
null
0
0
null
null
null
null
UTF-8
Python
false
false
5,947
py
# -*- coding: utf-8 -*- # # Configuration file for the Sphinx documentation builder. # # This file does only contain a selection of the most common options. For a # full list see the documentation: # http://www.sphinx-doc.org/en/master/config # -- Path setup ------------------------------------------------------------...
[ "zhiliu.mind@gmail.com" ]
zhiliu.mind@gmail.com