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
cd9080a31750fd6fb0f6169f6b3a521c68c2b600
501615c82801733e69c7447ab9fd68d3883ed947
/hotfix/.svn/pristine/cd/cd9080a31750fd6fb0f6169f6b3a521c68c2b600.svn-base
3edb65fecab8efada344d05e730544d8fd6e0929
[]
no_license
az0ne/python
b2e1cc1e925d1fcdb269e7dd4c48e24665deeeee
aec5d23bb412f7dfca374fb5c5b9988c1b817347
refs/heads/master
2021-07-18T02:08:46.314972
2017-10-27T06:23:36
2017-10-27T06:23:36
null
0
0
null
null
null
null
UTF-8
Python
false
false
361
#!/usr/bin/env python # -*- coding: utf8 -*- from django.db import models class RecommendKeywords(models.Model): name = models.CharField(u'推荐搜索关键词', max_length=50) class Meta: verbose_name = u'推荐搜索关键词' verbose_name_plural = verbose_name def __unicode__(self): retur...
[ "1461847795@qq.com" ]
1461847795@qq.com
fed1270ad3e023a09ad4a6c34adf894036258543
9848a719ddfdd21b5fe1fa2f55da290c0f6952dc
/lib/RollHash.py
256aaff82909156e295b6cb35458d089751d67f4
[]
no_license
maomao905/algo
725f7fe27bb13e08049693765e4814b98fb0065a
84b35ec9a4e4319b29eb5f0f226543c9f3f47630
refs/heads/master
2023-03-13T12:38:55.401373
2021-03-25T01:55:48
2021-03-25T01:55:48
351,278,248
0
0
null
null
null
null
UTF-8
Python
false
false
353
py
A = 'abcd' B = 'dacbabcdaacd' W, MOD = 26, 2**32 L = len(A) h = 0 for i in range(len(A)): h = (h * W + ord(A[i])) % MOD b_h = 0 WL = pow(W,L,MOD) for i in range(len(B)): if i < len(A): b_h = (b_h * W + ord(B[i])) % MOD else: b_h = (b_h * W - ord(B[i-L]) * WL + ord(B[i])) % MOD if b_h ...
[ "maoya.sato@gmail.com" ]
maoya.sato@gmail.com
c22c92dfe26cffb6193e8818d239bc2767418d4f
e755453c853ae400d94f562ad215b59166b63782
/tests/splay_tests/test_prev.py
68c2817fe7eda9dc6a0bce3cc6dcdd77fe0ba5d6
[ "MIT" ]
permissive
lycantropos/dendroid
0cb3e276dd9c476b82b0b7a17c25c2e05616a993
fd11c74a395eb791caf803c848805569869080f6
refs/heads/master
2023-04-07T11:07:55.550796
2023-03-27T00:46:03
2023-03-27T00:46:03
215,369,321
0
1
MIT
2020-09-24T05:02:02
2019-10-15T18:29:36
Python
UTF-8
Python
false
false
547
py
from typing import Tuple from hypothesis import given from dendroid.hints import Value from tests.utils import (BaseSet, are_keys_equal, set_value_to_key) from . import strategies @given(strategies.non_empty_sets_with_their_non_min_values) def test_properties(set_wi...
[ "azatibrakov@gmail.com" ]
azatibrakov@gmail.com
1d51d837e727c28b3f81bbbc0c956636983839e0
b28300f3af1517e149baeadd9f87d92e56e23ba0
/pages/forms.py
65907867023b70c0f348bf0a17bbf9029e3fe93f
[]
no_license
xarala221/myportfolio
f39ea13fe493d4d3a7525774d568daa099a51cd0
a62be57414b0971157a9923c17ec8bf5c9524823
refs/heads/master
2022-12-14T23:00:42.540391
2018-06-29T01:27:39
2018-06-29T01:27:39
138,381,453
2
0
null
2022-12-08T02:14:30
2018-06-23T07:39:53
JavaScript
UTF-8
Python
false
false
781
py
from django import forms from .models import Contact class ContactForm(forms.ModelForm): email = forms.EmailField(label='Email :', widget=forms.EmailInput(attrs={'placeholder': 'Your Email', 'class': 'form-control ', 'required': 'True'})) name = forms.CharField(label='Name :', widget=forms.TextInput(attrs={'placeh...
[ "xaralaxarala@gmail.com" ]
xaralaxarala@gmail.com
c340916b2367f30fe565bb515bbbbf87eb4445e3
acad4e69e68354311e6b82f70d713e5c47d30cf8
/User_version/Chapter1_Pre-requisit/Section1_math/01_solution.py
c1513df4d29e7b25e65b9fd7de36fa04bd169bf1
[ "MIT" ]
permissive
MacHu-GWU/Data-Science-in-Python
fabe7232349cec78a4cded4d930a66fc5e362a2c
a3042864fae6c764d031817c7d7f5ef4ee7251cb
refs/heads/master
2020-04-06T07:02:54.415759
2018-08-04T16:56:27
2018-08-04T16:56:27
22,156,078
2
1
null
null
null
null
UTF-8
Python
false
false
1,846
py
##coding=utf8 ##author=Sanhe ##date=07-13-2014 ''' Let's take a look at how long your codes takes. Please copy your codes to the function "combination(n,k)", and run. Usually the solution is 4-10 times faster than naive implementation. WHY? Time complexity c(n,k) = n! / (k! * (n-k)! ) ...
[ "husanhe@gmail.com" ]
husanhe@gmail.com
d7c70f9ad07e408f22db366edf4d3645a22ed5d4
3f7d819c918fe185bfb2c96bdd85b394e3b3b42c
/12-4-15.py
fffc1d210b97cd33177e4c8571206576d5467b74
[]
no_license
daxaxelrod/notes-from-3rd-semester
1b04a1c8bba458c9af226d190ebdfa6bb31cef62
171f272bd57c7989f999dc799f1fa1b3ca88f5d9
refs/heads/master
2021-01-10T12:49:05.632358
2015-12-14T22:19:40
2015-12-14T22:19:40
47,573,932
0
0
null
null
null
null
UTF-8
Python
false
false
2,642
py
12-4-15 class notes quick thing on zeroth law of thermodynamics validates idea of tempertature 2 objects in thermal equalirium with a 3rd object are equal to eachother Chapter 19 Kinetic Theory of gasses def review(): look over the first two setions of chater 19 pressure volume equals N R temp...
[ "daxaxelrod@gmail.com" ]
daxaxelrod@gmail.com
7f34e8fac9c89052bcd5c9d0ab669942016c0277
a3ed36806067cecb5c7aaa5dcfe4a0e4163a0742
/tests/unit/test_base.py
ca8ad6a430909b83a6a161825458f6c183d37108
[ "MIT" ]
permissive
gabrielfalcao/plant
02f14055439947fa4c56f58c8b9f539b8eb7f559
6d9122470fd6ad3b89957f0dcbc6bdeedb46ca9b
refs/heads/master
2021-08-28T16:00:45.533014
2017-09-08T17:55:39
2017-09-08T17:55:39
11,139,306
6
4
NOASSERTION
2019-12-20T17:39:56
2013-07-03T01:37:50
Python
UTF-8
Python
false
false
1,435
py
# -*- coding: utf-8 -*- # <plant - filesystem for humans> # Copyright (C) <2013> Gabriel Falcão <gabriel@nacaolivre.org> # # 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 th...
[ "gabriel@nacaolivre.org" ]
gabriel@nacaolivre.org
bf8ca3cf4733a29992a93f9a401b418c5c3aeb68
b6699361cea596afbafcff40056e12a3ccadb590
/complexconfig_python/complexconfig-0.2/complexconfig/parser/dict_parser.py
5605448e1ff53b86678150ab5608dcb74eec378e
[ "Apache-2.0" ]
permissive
benhe119/python_lib
4c6ba3468ef380eadc5ab65401052aba224801db
e2d4052de04c82cb7bccd08042f28db824cab442
refs/heads/master
2020-08-09T10:09:59.368521
2019-03-29T02:21:55
2019-03-29T02:21:55
null
0
0
null
null
null
null
UTF-8
Python
false
false
374
py
# -*- coding: utf8 -*- from __future__ import print_function, unicode_literals from . import BaseParser class DictParser(BaseParser): """ Parse config from dictionary. This is a specific parser which parse code from python dictionary instead of text """ def parse(self, data): return da...
[ "zengjinping@threathunter.cn" ]
zengjinping@threathunter.cn
1002ed5925c93eea4d3464b1096616a44537c652
9fbaed9e3ff1bf237b2a75ecaa717951051f4115
/virtual/bin/wheel
fd1b9a8dd61e0f3d199ef018086988e48d0c7c1c
[]
no_license
DK-denno/dubiez-jumia
f269f9eacba1bc67d234047f36920aba21afa340
0e5b4562959c10429fbfaed862c064eb02e692a1
refs/heads/master
2023-05-21T23:25:15.782401
2021-06-08T21:41:15
2021-06-08T21:41:15
375,151,695
2
0
null
null
null
null
UTF-8
Python
false
false
246
#!/root/Documents/jumia/dkJumia/virtual/bin/python3.7 # -*- coding: utf-8 -*- import re import sys from wheel.cli import main if __name__ == '__main__': sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0]) sys.exit(main())
[ "dennisveer27@gmail.com" ]
dennisveer27@gmail.com
2b930935afffa61c5d4c9f30f27866be050a73e7
bc9f66258575dd5c8f36f5ad3d9dfdcb3670897d
/lib/googlecloudsdk/generated_clients/apis/servicedirectory/v1beta1/servicedirectory_v1beta1_messages.py
6be6c2e2c043d9279ed1ec3977358239b639fea2
[ "Apache-2.0", "LicenseRef-scancode-unknown-license-reference" ]
permissive
google-cloud-sdk-unofficial/google-cloud-sdk
05fbb473d629195f25887fc5bfaa712f2cbc0a24
392abf004b16203030e6efd2f0af24db7c8d669e
refs/heads/master
2023-08-31T05:40:41.317697
2023-08-23T18:23:16
2023-08-23T18:23:16
335,182,594
9
2
NOASSERTION
2022-10-29T20:49:13
2021-02-02T05:47:30
Python
UTF-8
Python
false
false
97,877
py
"""Generated message classes for servicedirectory version v1beta1. Service Directory is a platform for discovering, publishing, and connecting services. """ # NOTE: This file is autogenerated and should not be edited by hand. from __future__ import absolute_import from apitools.base.protorpclite import messages as _...
[ "cloudsdk.mirror@gmail.com" ]
cloudsdk.mirror@gmail.com
db4a5b1057320eaf972ba83b5616f4e54d71cc19
99ed889f5d679f0712a9578435819ff9fe1038e9
/baselines_tactile/ppo2/test_microbatches.py
c758fb8f5ba3adf9123d5c59631875cee4554f44
[]
no_license
WMViolet/baselines_tactile
7e7800c44167d6e29f4f4a187e49d92462f49100
761193122ff8c914d8b983d93620a7ffc63ea917
refs/heads/main
2023-02-24T00:30:04.616016
2021-02-01T23:45:53
2021-02-01T23:45:53
322,393,115
2
0
null
null
null
null
UTF-8
Python
false
false
1,194
py
from envs import gym import tensorflow as tf import numpy as np from functools import partial from tactile_baselines.common.vec_env.dummy_vec_env import DummyVecEnv from tactile_baselines.common.tf_util import make_session from tactile_baselines.ppo2.ppo2 import learn from tactile_baselines.ppo2.microbatched_model im...
[ "violetfuyao@berkeley.edu" ]
violetfuyao@berkeley.edu
6eaff47ed53d499b32e238b5a7097c89a1bc0175
f6641c552622e1446d913d50f561ff14c524e885
/data/box_data_bidirect.py
76bae58334dd110d98ed895f37fc04711a480921
[]
no_license
yangyi02/video_motion_synthetic3
939d1ddd3a4caada87e0e2ef3ed430dae9b2447e
e732d3641c555422b977648211683cb21186bcdb
refs/heads/master
2021-01-01T06:46:55.553125
2017-08-04T00:19:28
2017-08-04T00:19:28
97,509,008
0
0
null
null
null
null
UTF-8
Python
false
false
2,168
py
import numpy from synthetic_data_bidirect import SyntheticDataBidirect import learning_args import logging logging.basicConfig(format='[%(levelname)s %(asctime)s %(filename)s:%(lineno)s] %(message)s', level=logging.INFO) class BoxDataBidirect(SyntheticDataBidirect): def __init__(self,...
[ "yangyi02@gmail.com" ]
yangyi02@gmail.com
adb66b38b38c519f92faf97c07eefe21491c1f8b
bf0c13d412a7021b299c5e0622e63e72172cf725
/week4/todolist/api/migrations/0002_task_created_by.py
c072e72d50a61591cd796376074211e17682bbbe
[]
no_license
Alibek120699/BFDjango
765e734e925041947f607a1d15228309dfa3e647
eac06c317551c561ffccb44750862972ae11dea3
refs/heads/master
2022-12-01T15:49:39.402815
2020-04-19T21:09:39
2020-04-19T21:09:39
233,657,360
0
0
null
2022-11-22T05:49:56
2020-01-13T17:50:13
Python
UTF-8
Python
false
false
593
py
# Generated by Django 2.2 on 2020-02-16 13:07 from django.conf import settings from django.db import migrations, models import django.db.models.deletion class Migration(migrations.Migration): initial = True dependencies = [ ('api', '0001_initial'), migrations.swappable_dependency(settings.A...
[ "sayakalibek1@gmail.com" ]
sayakalibek1@gmail.com
8a56d384d8f53a7a0624ccda96ddcebda8177931
acf8ce66cc5335b7a1ce98887949bee724d98d9e
/stu_and_extend/extend_info/views.py
e751667727978882e693199a847ea95679efd8f4
[]
no_license
iversongit/20180426
eec4f56612cd775be179783932fee19cd9f59096
b5af588eff11940fff9222e9662ca3f49442ab10
refs/heads/master
2020-03-13T10:15:20.061654
2018-04-27T02:19:00
2018-04-27T02:19:00
131,079,939
0
0
null
null
null
null
UTF-8
Python
false
false
1,060
py
from django.http import HttpResponse from django.shortcuts import render from django.http import HttpResponseRedirect from django.core.urlresolvers import reverse # Create your views here. from extend_info.models import Extend from student.models import Student def addExtendInfo(request,s_id): if request.method ...
[ "1564329410@qq.com" ]
1564329410@qq.com
d4fba6a899bdae2ae0774c15e23236244c0e3ec1
b22588340d7925b614a735bbbde1b351ad657ffc
/athena/LArCalorimeter/LArExample/LArCalibProcessing/share/LArCalib_Example_HVCorr.py
e4330dd17032ade9800b69f61ce3b19e7ff0e949
[]
no_license
rushioda/PIXELVALID_athena
90befe12042c1249cbb3655dde1428bb9b9a42ce
22df23187ef85e9c3120122c8375ea0e7d8ea440
refs/heads/master
2020-12-14T22:01:15.365949
2020-01-19T03:59:35
2020-01-19T03:59:35
234,836,993
1
0
null
null
null
null
UTF-8
Python
false
false
7,059
py
################################################################# # # example jobOptions to read HV from Cool/DCS in athena # and compute cell level correction factors to store in conditions # database # ################################################################## from time import strptime,time from calendar...
[ "rushioda@lxplus754.cern.ch" ]
rushioda@lxplus754.cern.ch
411ce7dd706c852ab886e83eaf557fd6b63de064
f22cc86b1454d996d42a400904f5dd11cd21341e
/tensorflow_estimator/python/estimator/run_config_test.py
85dd81ae9a3e2aacc51f0d07093d7eec5f9eea5f
[ "Apache-2.0" ]
permissive
ziky90/estimator
0006fb7ef59f89948613e184c3778dc2b03ab78f
825c02ce244ce21ec4f01360dfdf90cbf92f6bde
refs/heads/master
2020-04-21T02:39:22.223173
2019-02-04T22:07:19
2019-02-04T22:07:45
169,260,730
0
0
Apache-2.0
2019-02-05T15:12:27
2019-02-05T15:12:26
null
UTF-8
Python
false
false
46,363
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 applica...
[ "gardener@tensorflow.org" ]
gardener@tensorflow.org
58310eb70b1d56186ab82bb5923708c9a6cfd67d
b3f22f69401f57e29ea7b3fe7fd921d328abfdb2
/autohome/items.py
98d04c298d38af7dedc356a9e5352544c08f6325
[]
no_license
ivancoacher/autohome
1f148b4ab6738f226bb2c6683aeafd4e37cde358
ebf0d213e08a8386b436e03b65a6747aa0de4d43
refs/heads/master
2021-05-31T02:27:54.979715
2015-11-24T05:18:13
2015-11-24T05:18:13
null
0
0
null
null
null
null
UTF-8
Python
false
false
310
py
# -*- coding: utf-8 -*- # Define here the models for your scraped items # # See documentation in: # http://doc.scrapy.org/en/latest/topics/items.html from scrapy import Item, Field class AutohomeItem(Item): # define the fields for your item here like: # name = scrapy.Field() content = Field()
[ "heshang1203@sina.com" ]
heshang1203@sina.com
5cc795f76bf1ca525800c7786bef520c5fc96657
32e716570ab33a201e7581bfa497bfa820729cd8
/web_3/class_write/server.py
cbfbef35c11da618ca6b434626347f6b6b01a4c6
[]
no_license
Coder-Chandler/Web
b21bf9213432d1bfe949c00e9c0e507883574d1e
bb1e403ae194aec01896f374607135d24d2cb16f
refs/heads/master
2021-09-07T11:16:49.516177
2018-02-22T05:33:31
2018-02-22T05:33:31
112,816,855
1
0
null
null
null
null
UTF-8
Python
false
false
3,973
py
# coding: utf-8 """ url 的规范 第一个 ? 之前的是 path ? 之后的是 query http://c.cc/search?a=b&c=d&e=1 PATH /search QUERY a=b&c=d&e=1 """ import socket import urllib.parse from utils import log from routes import route_static from routes import route_dict # 定义一个 class 用于保存请求的数据 class Request(object): def __init__(self): ...
[ "ysiwgtus@gmail.com" ]
ysiwgtus@gmail.com
b39454d27ebf63469af6273933ebd071722291de
abafb3ca13f96972aa1e8fb5bcad61d1c17a02bd
/src/__init__.py
17dc9efa59dddf02d8ebe478e23ce97a31cb2acb
[]
no_license
rfaulkner/chip_8_emulator
3bddef0eb483becdfe4d72ed4398166fe73a3cb7
bf3f9e61e52f50ff559a3e0cf6d7ae3dab703004
refs/heads/master
2020-04-06T16:35:22.930728
2012-11-25T23:36:41
2012-11-25T23:36:41
null
0
0
null
null
null
null
UTF-8
Python
false
false
25
py
__author__ = 'rfaulkner'
[ "rfaulkner@wikimedia.org" ]
rfaulkner@wikimedia.org
16e2293557987bc61281e413c7f76f928c35e362
8e3b02a45afe51980cdb9081178b8d22192c9000
/purbeurre_web/dbmanage/tests/mockapi.py
21e82501784074d34e02eb3bf29459dd1810d566
[]
no_license
pythonmentor/PurBeurre-p11
6af863c78bfc1011aa49ea6b7373f64f6cc5630f
8c6c1caeae13199001989c499327b272a81c082a
refs/heads/master
2020-04-29T17:01:05.523609
2019-03-18T12:45:59
2019-03-18T12:45:59
176,283,413
0
0
null
2019-03-18T12:44:32
2019-03-18T12:44:32
null
UTF-8
Python
false
false
253,690
py
mock_api_return = { "count": 1076, "skip": 0, "products": [ { "ingredients_n_tags": [ "9", "1-10" ], "product_name_fr": "Nutella", "nova_group_debug": " -- ingredients/en:vegetable-oil : 3 -- ingredients/en:milk-powder :...
[ "tchappui@gmail.com" ]
tchappui@gmail.com
dccaabaea2ce82f404be9435d198c09cebb12357
e01842bbd6fa4ec5df69e9dc3feda23f0085367c
/blog/posts/urls.py
9e9f930a79c1eb0d80c0c12fe9aef76893311746
[]
no_license
Greh/pyladies-gswd
cae38aa9f60e9d0307401e18f97390a3388d32d2
a6c0cf555068fd4bc7cf8eaead8237e2d04d0f46
refs/heads/master
2021-01-20T22:51:08.683674
2013-08-24T08:53:39
2013-08-24T08:53:39
null
0
0
null
null
null
null
UTF-8
Python
false
false
222
py
from django.conf.urls import patterns, url from . import views urlpatterns = patterns('', url(r'^$', views.post_list_view, name='list'), url(r'^read/(?P<slug>[-\w]+)/$', views.post_detail_view, name='detail'), )
[ "kenneth@gigantuan.net" ]
kenneth@gigantuan.net
fec6355a19a54de67434605bd6c36ffc7fd76909
8633ec7985ffd7f849210b93bc20e632f8ae8707
/tree/CMSSW_4_2_8_patch7/src/Validation/RecoTrack/python/PostProcessorTracker_cfi.py
9d4bd7efb05784788385b3074371e74ca53102c8
[]
no_license
liis/el_track
2ed5b3b7a64d57473328df0e5faf28808bab6166
cd7978e5fa95d653bab5825b940911b465172c1a
refs/heads/master
2016-09-10T20:09:07.882261
2015-01-08T14:41:59
2015-01-08T14:41:59
14,494,773
0
0
null
null
null
null
UTF-8
Python
false
false
4,530
py
import FWCore.ParameterSet.Config as cms postProcessorTrack = cms.EDAnalyzer("DQMGenericClient", subDirs = cms.untracked.vstring("Tracking/Track/*"), efficiency = cms.vstring( "effic 'Efficiency vs #eta' num_assoc(simToReco)_eta num_simul_eta", "efficPt 'Efficiency vs p_{T}' num_assoc(simToReco)_pT num...
[ "polaarrebane@gmail.com" ]
polaarrebane@gmail.com
b4d5b5ebd165f661378a8add290298b1ad8bac5c
36c00fe2afff4818c937e312ce0c6a79f35e2a77
/7-kyu/dictionary-from-two-lists/python/solution.py
4a710029d9177cbb5e6dccb8e00376800102be0b
[]
no_license
p-lots/codewars
0a67b6ee4c91180ff78c648421b9d2d64463ddc3
535faeee475c6b398124d6f5002b0e111406e8bb
refs/heads/master
2023-08-23T22:14:33.635011
2023-08-23T13:30:37
2023-08-23T13:30:37
195,320,309
0
0
null
2023-05-09T19:25:50
2019-07-05T01:40:15
Python
UTF-8
Python
false
false
132
py
def createDict(keys, values): while len(values) < len(keys): values.append(None) return dict(zip(keys, values))
[ "paul.calotta@gmail.com" ]
paul.calotta@gmail.com
a39e9bab1aa016cf4f51db6b1ddcf7edd3ba6b25
4d9bdc1444ab73858a123b8273b72e1d74a9233d
/funNLearn/src/main/java/dsAlgo/sort/BucketSort.py
cddef4a09f7d8aba57c892f73c9bfb70035b2b75
[]
no_license
vishalpmittal/practice-fun
f7ca1389d758f93ddf2ddc3a58f2592b7caabab4
727dec2e23e765925a5e7e003fc99aeaf25111e9
refs/heads/master
2022-07-11T18:31:49.574410
2022-02-26T23:05:12
2022-02-26T23:05:12
51,132,794
0
1
null
2022-06-29T19:34:05
2016-02-05T07:34:32
JavaScript
UTF-8
Python
false
false
1,184
py
""" Tag: sort """ from typing import List class Solution: def insertionSort(self, B: List[int]) -> List[int]: for i in range(1, len(B)): up = B[i] j = i - 1 while j >= 0 and B[j] > up: B[j + 1] = B[j] j -= 1 B[j + 1] = up ...
[ "vishalm@vmware.com" ]
vishalm@vmware.com
10b1c8f6d365f2b3cdbf5aba30dd342bfdf97743
a8ca62991d552367831daf302833053dec847d1b
/data_structures/python/tree.py
f4b902f99075ec6af63bc84c56e5f2a913b9792c
[]
no_license
krinj/tech-interview-kit
fec0d6e192ee4c3226602c840fcf650e7e10e726
86967a9237dd465dbeb9f6ada896eeceae6d553c
refs/heads/master
2022-01-10T02:57:22.632021
2019-05-31T14:02:02
2019-05-31T14:02:02
185,377,297
0
0
null
null
null
null
UTF-8
Python
false
false
420
py
# -*- coding: utf-8 -*- """ Python binary tree. """ from typing import Union __author__ = "Jakrin Juangbhanich" __email__ = "juangbhanich.k@gmail.com" class TNode: def __init__(self, key: Union[str, int, float], data=None): self.left: TNode = None self.right: TNode = None self.key: Union...
[ "juangbhanich.k@gmail.com" ]
juangbhanich.k@gmail.com
019239c764dc2fe2ed066beb136ef05b5afe9741
3d37f595a8aaaa7c5723ddbd6758ecac5147dce2
/evaluate-reverse-polish-notation/evaluate-reverse-polish-notation.py
b2e0ca728623d1edf0e18e6502be0e0b436af60b
[]
no_license
baggy2797/Leetcode
ec218b155ebb972cd793253f25c3e18117216703
469c1541579401768f7a1da55d504a9e8656b21e
refs/heads/main
2023-06-24T17:03:42.708935
2021-07-16T22:31:24
2021-07-16T22:31:24
342,979,700
1
0
null
null
null
null
UTF-8
Python
false
false
766
py
class Solution: def evalRPN(self, tokens: List[str]) -> int: stack = [] # operators = {"+","-","*","/"} for token in tokens: if token[-1].isdigit(): stack.append(int(token)) # elif token in operators: else: second = stack.po...
[ "bhagwataditya226@gmail.com" ]
bhagwataditya226@gmail.com
86b48d312e17d3cac282ad980fb749a93edd134f
9209fd8190d0d8a00fadaead164340739a61353a
/tests/test_plugins.py
2e8d52f821c6f1586c0891882e0b7419f0709888
[ "Apache-2.0", "LicenseRef-scancode-warranty-disclaimer" ]
permissive
adamwight/coveragepy
6add3ae9b1bef53aa6a2322c03b2e4bb6927fc3f
820cb6b9a93595e94e4519e7d54003504ab64814
refs/heads/master
2021-09-06T00:04:12.380411
2018-01-23T18:29:59
2018-01-23T18:29:59
119,743,780
0
0
null
2018-01-31T21:10:35
2018-01-31T21:10:35
null
UTF-8
Python
false
false
31,806
py
# Licensed under the Apache License: http://www.apache.org/licenses/LICENSE-2.0 # For details: https://bitbucket.org/ned/coveragepy/src/default/NOTICE.txt """Tests for plugins.""" import os.path import coverage from coverage import env from coverage.backward import StringIO from coverage.control import Plugins from ...
[ "ned@nedbatchelder.com" ]
ned@nedbatchelder.com
2b3452773a594169640f1364f39a01c29f048d9b
34b55781ae90e1f268ce74ee27ecd4909663b728
/freqlearn/images/draw_impulses.py
2c1aa223d0c864e568b0e4078afc6057ad1863ba
[]
no_license
fbcotter/thesis
28ecac0d84f1a5ff9ea104e8e1ac7753beba1c51
e1a4032ffd6d241694fc173d67051798db22f20d
refs/heads/master
2023-03-28T14:02:09.835895
2020-06-12T09:56:04
2020-06-12T09:56:04
269,305,306
3
0
null
null
null
null
UTF-8
Python
false
false
847
py
# coding: utf-8 import matplotlib.pyplot as plt import numpy as np from math import * import dtcwt xfm = dtcwt.Transform2d('near_sym_b', 'qshift_b') x = np.zeros((128,64)) p = xfm.forward(x, nlevels=2) m = p.highpasses[1].shape[0] // 2 r = int(.8 * m) fig, ax = plt.subplots() w = np.array([-1j, 1j, -1j, -1, 1, -1], 'co...
[ "fbcotter90@gmail.com" ]
fbcotter90@gmail.com
9c473691dcc0f4e2dc4c0c3a0135eb5eca24fded
a46d135ba8fd7bd40f0b7d7a96c72be446025719
/packages/python/plotly/plotly/validators/layout/scene/yaxis/_dtick.py
508da58d48cdfe7cca997d9b666a67c6367abde3
[ "MIT" ]
permissive
hugovk/plotly.py
5e763fe96f225d964c4fcd1dea79dbefa50b4692
cfad7862594b35965c0e000813bd7805e8494a5b
refs/heads/master
2022-05-10T12:17:38.797994
2021-12-21T03:49:19
2021-12-21T03:49:19
234,146,634
0
0
MIT
2020-01-15T18:33:43
2020-01-15T18:33:41
null
UTF-8
Python
false
false
477
py
import _plotly_utils.basevalidators class DtickValidator(_plotly_utils.basevalidators.AnyValidator): def __init__(self, plotly_name="dtick", parent_name="layout.scene.yaxis", **kwargs): super(DtickValidator, self).__init__( plotly_name=plotly_name, parent_name=parent_name, ...
[ "noreply@github.com" ]
hugovk.noreply@github.com
809fd116ee34ba89dc9e99b031eb996a76bab7db
ee9840398bec5750aed10f6ac0095a9238f243f6
/paypal/request.py
c4f738f2a76716f51909276489792190718f9f34
[]
no_license
fortable1999/paypal-preapproval-payment
85881f5cd1307e05b20e1a9421b7b3c7a516c907
4a10a5a9909d55822279138ef998f1d601005101
refs/heads/master
2021-01-06T20:37:40.708487
2014-07-13T08:58:21
2014-07-13T08:58:21
null
0
0
null
null
null
null
UTF-8
Python
false
false
27
py
""" Paypal API Wrapper """
[ "fortable1999@gmail.com" ]
fortable1999@gmail.com
be9dbe69c82f3c7fcfb4be1760bb03d41e845213
f121695e2dff353607fa47fb42482470e03bbf8a
/capitulo_19-Contas_de_usuario/learning_log/learning_logs/migrations/0003_topic_owner.py
9b0e4de5a7cad3f304adda9c7ccdd8dc8ebadeb9
[]
no_license
ranog/python_work
76cbcf784c86fae4482be5383223e4b0a34f4130
47c442a90dcf32d5aef70858693a772a3c76a7ac
refs/heads/master
2022-12-22T11:02:26.482059
2021-04-17T01:12:22
2021-04-17T01:12:22
233,634,221
2
1
null
2022-12-08T07:38:43
2020-01-13T15:58:46
Python
UTF-8
Python
false
false
602
py
# Generated by Django 3.1.4 on 2021-01-23 15:03 from django.conf import settings from django.db import migrations, models import django.db.models.deletion class Migration(migrations.Migration): dependencies = [ migrations.swappable_dependency(settings.AUTH_USER_MODEL), ('learning_logs', '0002_en...
[ "jprnogueira@yahoo.com.br" ]
jprnogueira@yahoo.com.br
0cedadd55b1e6d9d6b10d6d76f215c3480001304
c2636c8bb8964ed2d6c8eca6c922dea27ef597e8
/main.py
26767768b29e108b2f1cd7bd3429822c71ab9629
[]
no_license
rafaeltorrese/webscrapperplatzi
97db94c5db5f919d198a4aa266aba4ed42a08d73
f692f18ad17740d4a506a9d560a61180bad1b8ea
refs/heads/master
2022-12-14T08:37:24.353294
2020-09-04T22:53:05
2020-09-04T22:53:05
292,951,310
0
0
null
null
null
null
UTF-8
Python
false
false
1,942
py
import argparse import logging import re from requests.exceptions import HTTPError from urllib3.exceptions import MaxRetryError from common import config import news_page_object as news logging.basicConfig(level=logging.INFO) logger = logging.getLogger(__name__) is_well_formed_link = re.compile(r'^https?://.+/.+$') ...
[ "torresc.rafael@gmail.com" ]
torresc.rafael@gmail.com
12c9a312ab2ce470cc22f2e9db120ed67d6bfd2f
e1dd0997239951d4d459b1ba0229493512b0b331
/mds_py/mds-env/lib/python3.11/site-packages/redis/commands/search/commands.py
f02805ee2b2340b3039d8d19e0cf6c788605ab0e
[]
no_license
alexmy21/Octopus
bd17777cf66654c1e7959654f63ca82b716865b5
7844ec616376ec6cd9c1a8b73dbcad9c729557ae
refs/heads/master
2022-12-22T22:42:29.473433
2022-12-21T16:52:09
2022-12-21T16:52:09
61,543,002
0
0
null
null
null
null
UTF-8
Python
false
false
35,600
py
import itertools import time from typing import Dict, Optional, Union from redis.client import Pipeline from redis.utils import deprecated_function from ..helpers import parse_to_dict from ._util import to_string from .aggregation import AggregateRequest, AggregateResult, Cursor from .document import Document from .q...
[ "alex.mylnikov@hitachivantara.com" ]
alex.mylnikov@hitachivantara.com
e3bed94cd6c673192d0065f770c84ddcc55c6d0f
1287ad54942fd2020a217ab12004a541abb62558
/pythonexercicios/Ex069.py
3e115b129e95eaefc77d1cfc0493628117d9168a
[]
no_license
LuPessoa/exerciciospy-
637f24581722e547a62380973ca645b55ff65d90
b5faad818f978bb13a65922edceb17888b73a407
refs/heads/master
2023-05-12T04:16:39.847184
2021-06-04T03:02:24
2021-06-04T03:02:24
374,410,212
0
0
null
null
null
null
UTF-8
Python
false
false
621
py
tot18 = toth = totm20 = 0 while True: idade = int(input('Idade: ')) sexo = ' ' while sexo not in 'MF': sexo = str(input('Sexo:[M/F]')).strip().upper()[0] if idade >= 18: tot18 += 1 if sexo == 'M': toth += 1 if sexo == 'F'and idade < 20: totm20 += 1 resp = ' ...
[ "lulenemacedo29@gmail.com" ]
lulenemacedo29@gmail.com
86e3018dfa70529dc368c2fd8577eea8b8c9b37b
b22588340d7925b614a735bbbde1b351ad657ffc
/athena/Reconstruction/RecExample/RecExCommission/share/RecExCommissionCommonFlags_jobOptions.py
28d3249054bcee974759a24c6adda8d0d21b089f
[]
no_license
rushioda/PIXELVALID_athena
90befe12042c1249cbb3655dde1428bb9b9a42ce
22df23187ef85e9c3120122c8375ea0e7d8ea440
refs/heads/master
2020-12-14T22:01:15.365949
2020-01-19T03:59:35
2020-01-19T03:59:35
234,836,993
1
0
null
null
null
null
UTF-8
Python
false
false
7,532
py
# --------------------------------------------------------------------------- # RecExCommon flags # --------------------------------------------------------------------------- include.block("RecExCommission/RecExCommissionCommonFlags_jobOptions.py") # -----------------------------------------------------------------...
[ "rushioda@lxplus754.cern.ch" ]
rushioda@lxplus754.cern.ch
912f205c750470d91a847ee210f182d2c0cb001a
40ac1c3f3dc024e2cdb5e7939abf408cde1b59ee
/webscraper/application/airquality/app_air_quality_scraper.py
71cc8dafa1476eb9dbe385cb727aab56a7da302c
[]
no_license
plutoese/webscraper
5319fbdcd2baf7392b2f9fb623eddef8f9c0bbcf
f360a10e0e6da2c250a2c7e5c64ceb74e6919ac6
refs/heads/master
2020-04-15T12:43:23.740908
2017-12-24T14:22:07
2017-12-24T14:22:07
61,554,075
0
0
null
null
null
null
UTF-8
Python
false
false
1,194
py
# coding=UTF-8 # -------------------------------------------------------------- # application_air_quality文件 # @introduction: 抓取空气质量的数据 # @source:天气后报,http://www.tianqihoubao.com/aqi/ # @dependency: requests,bs4及re包 # @author: plutoese # @date: 2016.06.26 # --------------------------------------------------------------...
[ "glen.zhang7@gmail.com" ]
glen.zhang7@gmail.com
8de8074878d9a6ef66cf4b622dd96bda62582f72
d2c4934325f5ddd567963e7bd2bdc0673f92bc40
/tests/model_control/detailed/transf_Integration/model_control_one_enabled_Integration_ConstantTrend_NoCycle_MLP.py
8dc04c8230edaa12adfba6c5a152dc044fc81b45
[ "BSD-3-Clause", "LicenseRef-scancode-unknown-license-reference" ]
permissive
jmabry/pyaf
797acdd585842474ff4ae1d9db5606877252d9b8
afbc15a851a2445a7824bf255af612dc429265af
refs/heads/master
2020-03-20T02:14:12.597970
2018-12-17T22:08:11
2018-12-17T22:08:11
137,104,552
0
0
BSD-3-Clause
2018-12-17T22:08:12
2018-06-12T17:15:43
Python
UTF-8
Python
false
false
161
py
import pyaf.tests.model_control.test_ozone_custom_models_enabled as testmod testmod.build_model( ['Integration'] , ['ConstantTrend'] , ['NoCycle'] , ['MLP'] );
[ "antoine.carme@laposte.net" ]
antoine.carme@laposte.net
c02bc04d08e242df89b646f0c2694bc21b9c6238
a1c6fea0703d7d813a88aae91a7fbb17e06785ea
/seller_app/serializers.py
49eceb707a8ae0b33dcd8f72f96ac9dadaa7de4c
[]
no_license
warm200/SpokesTribe
bea676b2868272ceab17176d7eb5d98ae7747543
8c3671214e317987645aeef4451e590bcb772f7e
refs/heads/master
2022-01-11T18:12:40.847007
2019-02-08T13:08:38
2019-02-08T13:08:38
null
0
0
null
null
null
null
UTF-8
Python
false
false
50,611
py
# coding:utf-8 from django.utils import timezone from drf_extra_fields.fields import Base64ImageField from rest_framework import serializers import decimal import re import datetime from MyAbstract.exceptions import ValidationDict211Error from MyAbstract.fields import CompressBase64ImageField from MyAbstract.funtions ...
[ "zhengyufei19999@163.com" ]
zhengyufei19999@163.com
a0a845781242f0d615c2c12534ebf5759c6cfebc
297497957c531d81ba286bc91253fbbb78b4d8be
/testing/web-platform/tests/tools/third_party/pytest/testing/test_terminal.py
80f7d558b4c4e1e57bb77e65cd89fec3ebf68c1f
[ "MIT", "LicenseRef-scancode-unknown-license-reference", "BSD-3-Clause" ]
permissive
marco-c/gecko-dev-comments-removed
7a9dd34045b07e6b22f0c636c0a836b9e639f9d3
61942784fb157763e65608e5a29b3729b0aa66fa
refs/heads/master
2023-08-09T18:55:25.895853
2023-08-01T00:40:39
2023-08-01T00:40:39
211,297,481
0
0
NOASSERTION
2019-09-29T01:27:49
2019-09-27T10:44:24
C++
UTF-8
Python
false
false
81,311
py
"""Terminal reporting of the full testing process.""" import collections import os import sys import textwrap from io import StringIO from pathlib import Path from types import SimpleNamespace from typing import cast from typing import Dict from typing import List from typing import Tuple import pluggy import _pytest...
[ "mcastelluccio@mozilla.com" ]
mcastelluccio@mozilla.com
388f86bda5afb381925eaa8c9ed9cfb68cbc1a51
fe63dd13e412b2d988da6163fea2dc16cb98b5b5
/uconf/converter.py
51ad25b1cc0615920b347f772870ef1384e0cb3a
[ "BSD-2-Clause" ]
permissive
rbarrois/uconf
223b22874d47175f85eaea16f6a05778454dd425
41e8d2384ff3bf900c372e371ff8b40990ff4322
refs/heads/master
2023-06-12T14:14:28.894990
2020-07-17T09:30:03
2020-07-17T09:30:03
15,620,174
0
1
null
null
null
null
UTF-8
Python
false
false
15,978
py
# -*- coding: utf-8 -*- # Copyright (c) 2010-2013 Raphaël Barrois # This software is distributed under the two-clause BSD license. import difflib import re from uconf import rule_parser class CommandError(Exception): pass class FileProcessor: """Handles 'standard' processing of a file. Attributes: ...
[ "raphael.barrois@polytechnique.org" ]
raphael.barrois@polytechnique.org
c49da5ff1522e716b2caa15068e8c33c06ee613b
119b6105b4efead8b88d8881d916b0a8b3d28237
/ThriftAPI/gen_py_tmp/Deploy/ttypes.py
33db186159e7839b849744a1a84fdd1d0c59f9fd
[]
no_license
GWenPeng/Webui_framework
04ce4eafc9d1126ff9148347d80e926d295c7457
a487fdc7f1e4c1c738ec9bc71cef7209da9be7f2
refs/heads/master
2022-11-30T00:27:05.513490
2020-08-06T01:49:58
2020-08-06T01:49:58
null
0
0
null
null
null
null
UTF-8
Python
false
true
37,673
py
# # Autogenerated by Thrift Compiler (0.13.0) # # DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING # # options string: py # from thrift.Thrift import TType, TMessageType, TFrozenDict, TException, TApplicationException from thrift.protocol.TProtocol import TProtocolException from thrift.TRecursive impo...
[ "gu.wenpeng@eisoo.com" ]
gu.wenpeng@eisoo.com
10ffed599ac0d1038847cb9bd88e3bb7cfa7baa5
245381ad175dcc03ee0710964340eed4daa2ef85
/shagroup/asgi.py
68a2f8abe49c2e7dc7b2c96529a21083cda0f947
[]
no_license
musabansari-1/Shagroup-erp-backend
2c1f56f7ce5763dae668d160cdcc1a26dbc2e8d7
87845f11faae50301d5bb73ffa0c3ee0bed38256
refs/heads/main
2023-04-13T02:25:36.808755
2021-04-15T16:28:19
2021-04-15T16:28:19
358,324,699
0
0
null
null
null
null
UTF-8
Python
false
false
393
py
""" ASGI config for shagroup project. It exposes the ASGI callable as a module-level variable named ``application``. For more information on this file, see https://docs.djangoproject.com/en/3.1/howto/deployment/asgi/ """ import os from django.core.asgi import get_asgi_application os.environ.setdefault('DJANGO_SETT...
[ "musabzahida@gmail.com" ]
musabzahida@gmail.com
a5e95a78db593a7a838f3c05604b0d18e3f5e2b0
6af6c7158609f889fa1f53c99b63c435113d496e
/RLTutorial/modelFreeValue.py
c57ba1bad60aeb8faff7827ff764ece01fdbbfe2
[ "MIT" ]
permissive
fyabc/MSRAPaperProject
170752a5b8bfdecbab876841762d8fd2f9732f08
2d7974acfe8065523d0c56da695807e94acd0b34
refs/heads/master
2020-04-06T08:03:08.211020
2016-09-07T10:28:11
2016-09-07T10:28:11
64,015,907
1
0
null
null
null
null
UTF-8
Python
false
false
2,089
py
#! /usr/bin/python3 # -*- encoding: utf-8 -*- from __future__ import print_function, unicode_literals from MDP import MDP import version23 __author__ = 'fyabc' def MonteCarlo(mdp, stateSamples, actionSamples, rewardSamples): vFunc = { state: 0.0 for state in mdp.states } nFunc = { ...
[ "fyabc@mail.ustc.edu.cn" ]
fyabc@mail.ustc.edu.cn
7c1155cf96173f5b9655062ea7bac26a067474ff
a192078ebd74d54db64d02d815d805b4e8d9a0c6
/GeneratePAMLChemopartitions.py
4396e3399c57c88109daaa45fc7437cb7a69175c
[]
no_license
rjovelin/CRM_POPVAR
ae1fe4b55345dd41b6c8ed4566a4ebce8b1ac437
9fe6d475f834b1bf9cfad26248d16dadb9c4f2ae
refs/heads/master
2021-01-21T14:23:53.028058
2016-07-04T18:08:33
2016-07-04T18:08:33
57,171,739
1
0
null
null
null
null
UTF-8
Python
false
false
6,729
py
# -*- coding: utf-8 -*- """ Created on Mon May 30 18:38:26 2016 @author: Richard """ # use this script to generate PAML alignment files for chemoreceptor gene membrane partitions from manipulate_sequences import * from chemoreceptors import * import os # set number of minimum codons of each partition MinimumCodo...
[ "richard.jovelin@oicr.on.ca" ]
richard.jovelin@oicr.on.ca
05e0c4be9187c69e133664eedd04e6dc36798554
d3b77550a40b860970450e702b6bcd28d5f9b3e4
/Hackerrank/problem_solving/implementation/Break_the_records.py
b150aeec27614733888d1b3cafb916de5e67b008
[]
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
800
py
#!/usr/bin/env python3 # -*- coding: utf-8 -*- """ Created on Tue Jan 28 09:07:41 2020 @author: aims """ scores = [17,45,41,60,17,41,76,43,51,40,89,92,34,6,64,7,37,81,32,50] def breakingRecords(scores): high = [] high.append(scores[0]) low = [] low.append(scores[0]) count_max = 0 count_m...
[ "catherinegitau94@gmail.com" ]
catherinegitau94@gmail.com
7b98411d65809d3254ba52dfd4f00395db75f254
a5a4cee972e487512275c34f308251e6cc38c2fa
/pypospack/pyposmat/visualization/plot_2d_density_new.py
06a52f350768e1a703822139dcea4ad5249f251b
[ "MIT" ]
permissive
eragasa/pypospack
4f54983b33dcd2dce5b602bc243ea8ef22fee86b
21cdecaf3b05c87acc532d992be2c04d85bfbc22
refs/heads/master
2021-06-16T09:24:11.633693
2019-12-06T16:54:02
2019-12-06T16:54:02
99,282,824
4
1
null
null
null
null
UTF-8
Python
false
false
4,650
py
import numpy as np import pandas as pd import matplotlib.pyplot as plt from scipy import stats from pypospack.pyposmat.visualization import PyposmatAbstractPlot class Pyposmat2DDensityPlot(PyposmatAbstractPlot): kde_bandwidth_types = ['silverman','silverman1986','chiu1999'] def __init__(self,config=None,data...
[ "eragasa@ufl.edu" ]
eragasa@ufl.edu
9b6a8004b396ffea385ddfe4ebf79d7c40d5a1d2
1d8a4659d4a13cd8b0244918484990bb000687ea
/OpenPROD/openprod-addons/tracker/__openerp__.py
4ea0f630e42a6909f66a9cb9ad244b53b60136b7
[]
no_license
kazacube-mziouadi/ceci
d8218ede129186c26eb36f251ef42f07c7a74883
eb394e1f79ba1995da2dcd81adfdd511c22caff9
refs/heads/master
2020-03-23T00:22:51.501409
2018-07-13T14:58:32
2018-07-13T14:58:32
140,859,855
0
0
null
null
null
null
UTF-8
Python
false
false
494
py
# -*- coding: utf-8 -*- { 'name': 'Issue tracker', 'version': '1.1', 'category': 'Hidden/Dependency', 'license': 'LGPL', 'description': """""", 'author': 'Objectif-PI', 'website': '', 'depends': ['base_openprod'], 'data': [ 'tracker_view.xml', 'data/sequence.xml', ...
[ "mziouadi@kazacube.com" ]
mziouadi@kazacube.com
6a3f39ab36ccefaa00d25665ca1727ee346b7edb
564d6a4d305a8ac6a7e01c761831fb2081c02d0f
/sdk/network/azure-mgmt-network/azure/mgmt/network/v2020_06_01/operations/_vpn_site_links_operations.py
265aa7a78b25683f6dc3911e16d959120a02b052
[ "LicenseRef-scancode-generic-cla", "LGPL-2.1-or-later", "MIT" ]
permissive
paultaiton/azure-sdk-for-python
69af4d889bac8012b38f5b7e8108707be679b472
d435a1a25fd6097454b7fdfbbdefd53e05029160
refs/heads/master
2023-01-30T16:15:10.647335
2020-11-14T01:09:50
2020-11-14T01:09:50
283,343,691
0
0
MIT
2020-07-28T22:43:43
2020-07-28T22:43:43
null
UTF-8
Python
false
false
8,668
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 may ...
[ "noreply@github.com" ]
paultaiton.noreply@github.com
023134c6be263efb76d2c2ab006b16a5f881e11f
b251224f132b505f7c549f1fdca6b945cec4d7eb
/rotkehlchen/tests/test_poloniex.py
0820785d556ffcde426b8137235f0db398bf87f6
[ "BSD-3-Clause" ]
permissive
ltfschoen/rotkehlchen
75a6ce58e484aeff87e335a6815cdae7fecd7eeb
70b5cb79796718e86451ca4ef7116e26bfc19063
refs/heads/master
2020-07-02T09:20:36.118146
2019-08-08T21:12:37
2019-08-08T21:37:36
null
0
0
null
null
null
null
UTF-8
Python
false
false
14,322
py
import os from unittest.mock import patch import pytest from rotkehlchen.assets.asset import Asset from rotkehlchen.assets.converters import UNSUPPORTED_POLONIEX_ASSETS, asset_from_poloniex from rotkehlchen.constants.assets import A_BTC, A_ETH from rotkehlchen.errors import DeserializationError, UnsupportedAsset from...
[ "lefteris@refu.co" ]
lefteris@refu.co
6a8b9e4ede272b664d0f795040983a39b0abec0f
d7016f69993570a1c55974582cda899ff70907ec
/sdk/monitor/azure-mgmt-monitor/azure/mgmt/monitor/v2022_06_01/aio/_configuration.py
432effa58c39c7f1021a6c274d2906adcb47ac1b
[ "LicenseRef-scancode-generic-cla", "MIT", "LGPL-2.1-or-later" ]
permissive
kurtzeborn/azure-sdk-for-python
51ca636ad26ca51bc0c9e6865332781787e6f882
b23e71b289c71f179b9cf9b8c75b1922833a542a
refs/heads/main
2023-03-21T14:19:50.299852
2023-02-15T13:30:47
2023-02-15T13:30:47
157,927,277
0
0
MIT
2022-07-19T08:05:23
2018-11-16T22:15:30
Python
UTF-8
Python
false
false
3,545
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 may ...
[ "noreply@github.com" ]
kurtzeborn.noreply@github.com
c26f65a8b4765d23a71a577bf9fdc2a895991866
f411c70d2951f1744b7c5c47433593c5a1288f4d
/old_version_mysite (wegen bilder)-1a566232fd31fbf4038539de112513e859373364/blog/migrations/0009_auto_20200107_2049.py
f5e7596ffe53a3763b471b0fadf11444bb79f228
[]
no_license
nevergofullretard/technikmax-website
b239c6cd378c196ab97c6141dd345434db795888
57c0ab44fc73bccc097df5d7003aaa38125e5413
refs/heads/master
2023-01-05T04:49:02.600988
2020-11-06T22:26:53
2020-11-06T22:26:53
249,065,473
0
0
null
null
null
null
UTF-8
Python
false
false
870
py
# Generated by Django 2.1.2 on 2020-01-07 19:49 from django.db import migrations, models class Migration(migrations.Migration): dependencies = [ ('blog', '0008_auto_20200107_2040'), ] operations = [ migrations.AlterField( model_name='project', name='description',...
[ "jagermaxi1@gmail.com" ]
jagermaxi1@gmail.com
5b70f0ee6f386b9458baaa5b140f0b18bed0f90b
7bededcada9271d92f34da6dae7088f3faf61c02
/pypureclient/flashblade/FB_2_6/models/file_info.py
23b64849799a5104d64bb70df45f389369dbffa6
[ "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
3,301
py
# coding: utf-8 """ FlashBlade REST API A lightweight client for FlashBlade REST API 2.6, developed by Pure Storage, Inc. (http://www.purestorage.com/). OpenAPI spec version: 2.6 Generated by: https://github.com/swagger-api/swagger-codegen.git """ import pprint import re import six import typ...
[ "tlewis@purestorage.com" ]
tlewis@purestorage.com
cbe0e65929a0840a5b46f3c6711671225d2c19c2
58dcd83b6af6e947328519e3e8e43e7e07dce1da
/tasks/ptf.py
ec7bac864be4098bec8c90868c7c6594d2265149
[ "MIT" ]
permissive
astrocatalogs/kilonovae
ad10ba93b5c9676edb0ccf983d8ff770d4de7808
887742fdfc26a291c61056bbb3a420370c377584
refs/heads/master
2021-01-21T22:25:39.526071
2018-06-29T00:36:58
2018-06-29T00:36:58
102,157,542
2
1
null
null
null
null
UTF-8
Python
false
false
3,887
py
"""Import tasks for the Palomar Transient Factory (PTF). """ import os from astrocats.catalog.utils import is_number, pbar from bs4 import BeautifulSoup from ..kilonova import KILONOVA def do_ptf(catalog): # response = # urllib.request.urlopen('http://wiserep.weizmann.ac.il/objects/list') # bs = Beautif...
[ "guillochon@gmail.com" ]
guillochon@gmail.com
443af4141f7802b5d3e978997b9dac8822173592
892dd32ee0be7135cd33c875b06dcc66307dcc99
/automation/MPTS/backup/Accounts.py
6fe7e7d76954193b0d4e99c8c2a8a0ba288108da
[]
no_license
cloudbytestorage/devops
6d21ed0afd752bdde8cefa448d4433b435493ffa
b18193b08ba3d6538277ba48253c29d6a96b0b4a
refs/heads/master
2020-05-29T08:48:34.489204
2018-01-03T09:28:53
2018-01-03T09:28:53
68,889,307
4
8
null
2017-11-30T08:11:39
2016-09-22T05:53:44
Python
UTF-8
Python
false
false
1,866
py
import json import sys import time from cbrequest import sendrequest, filesave, timetrack, queryAsyncJobResult, configFile config = configFile(sys.argv); stdurl = 'https://%s/client/api?apikey=%s&response=%s&' %(config['host'], config['apikey'], config['response']) ######## To Add an Account for TSM -- Begins print...
[ "karthik.s@cloudbyte.com" ]
karthik.s@cloudbyte.com
1a543e20fb95abcd577d9003d76182a50bd8bce2
f5ab9e3d4119bee183bf8f8bd8fb2f3fea755fc5
/backend/home/migrations/0002_load_initial_data.py
d4bb919a45ea61c2c8b90e58cf799aa726e7d3a9
[]
no_license
crowdbotics-apps/nyayo-wallet-18168
ac0ad9e481a81055ef499b41eb86f88448675bd7
6b9c874b3176713c800dc623b3cb366cc504c585
refs/heads/master
2022-11-05T23:37:52.818433
2020-06-17T19:52:20
2020-06-17T19:52:20
273,065,455
0
0
null
null
null
null
UTF-8
Python
false
false
1,302
py
from django.db import migrations def create_customtext(apps, schema_editor): CustomText = apps.get_model("home", "CustomText") customtext_title = "Nyayo Wallet" CustomText.objects.create(title=customtext_title) def create_homepage(apps, schema_editor): HomePage = apps.get_model("home", "HomePage") ...
[ "team@crowdbotics.com" ]
team@crowdbotics.com
2fc4d12557de8db0b15da6c67806ef018129e119
6271171cbfab3e2b195b73cb936428adc6a1ca96
/virtual/bin/pip3
8033ed37aafbc34b36d8141d1db9b65fd90cd886
[]
no_license
UmuhireAnuarithe/Neighborhood
7592f24d0f11ec77d7f46a92cdb9dced5e66dd11
60072d868433e38145b74cbe1cee06e16bf58266
refs/heads/master
2020-09-04T11:34:29.819137
2019-11-07T19:19:30
2019-11-07T19:19:30
218,758,680
0
0
null
null
null
null
UTF-8
Python
false
false
261
#!/home/wecode/Desktop/Umuhire/Neighborhood/virtual/bin/python # -*- coding: utf-8 -*- import re import sys from pip._internal.main import main if __name__ == '__main__': sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0]) sys.exit(main())
[ "you@example.com" ]
you@example.com
a0323ac561a7a50abb306f498d8afa48cd00566e
d7fb8743b6faa4d948b2b08ca0dbdd3b0f11379b
/测试代码/theano/LSTMVRAE-master/VRAE.py
c61d81f248ad9a86b1b74adf9f6bfaf207556f16
[]
no_license
bancheng/Stock-market
219e9882858e6d10edad1d13fba67dadbedc27ba
142ea0eaed0fdccd8e79a51c34d66d1be1c336ed
refs/heads/master
2021-01-20T15:13:14.667022
2017-09-10T06:31:10
2017-09-10T06:31:10
90,737,452
0
0
null
null
null
null
UTF-8
Python
false
false
3,947
py
import numpy as np from chainer import Variable, Chain from chainer import functions as F class LSTMVRAE(Chain): """ Class: LSTMVRAE =============== Implements Variational Recurrent Autoencoders, described here: http://arxiv.org/pdf/1412.6581.pdf This specific architecture uses a single-layer LSTM ...
[ "tangdongge@buaa.edu.cn" ]
tangdongge@buaa.edu.cn
28c55dd0c36cd14490b30996420bde8006459891
4577d8169613b1620d70e3c2f50b6f36e6c46993
/students/1809541/homework02/program02.py
219171cdc7d415d3f2ab468fa1f3b181bae13566
[]
no_license
Fondamenti18/fondamenti-di-programmazione
cbaf31810a17b5bd2afaa430c4bf85d05b597bf0
031ec9761acb1a425fcc4a18b07884b45154516b
refs/heads/master
2020-03-24T03:25:58.222060
2018-08-01T17:52:06
2018-08-01T17:52:06
142,419,241
0
0
null
null
null
null
UTF-8
Python
false
false
4,022
py
''' Un file di compiti contiene informazioni su un insieme di compiti da eseguire. Esistono due tipologie di compiti: - compiti che possono essere eseguiti indipendentemente dagli altri. - compiti da svolgere solo al termine di un compito preliminare. I compiti del primo tipo sono codificati nel file mediante una ...
[ "a.sterbini@gmail.com" ]
a.sterbini@gmail.com
bd207e42fac6fcf7bc3bd69478759816700352a8
0c35b8b69fe899bf510826c52ab3171443acdaf3
/sportshack/predictor/migrations/0001_initial.py
d15192eb788edc952ded02a54ed439eeb4969c95
[ "MIT" ]
permissive
vaastav/SportsHack
c37c8e9b315142091ad9dbe6b50268880421a69d
6d20d1abcb1d72659607c08e4a9aafc291162c58
refs/heads/master
2020-02-26T17:12:24.526099
2016-03-12T21:50:54
2016-03-12T21:50:54
47,007,457
0
0
null
2016-03-12T21:50:55
2015-11-28T02:44:14
null
UTF-8
Python
false
false
3,843
py
# -*- coding: utf-8 -*- from __future__ import unicode_literals from django.db import migrations, models import datetime from django.conf import settings class Migration(migrations.Migration): dependencies = [ migrations.swappable_dependency(settings.AUTH_USER_MODEL), ] operations = [ m...
[ "vaastav.anand05@gmail.com" ]
vaastav.anand05@gmail.com
7191f92baf553381ff048a6940f844b83fc097a7
ca064338a35104cc94c60b330fc9b60efee6a089
/cabunicrisis/comparativegenomics/FastANI/FastANI_output_to_distance_matrix.py
733ec67fa6482e409befb0df111fba5a6c1b4022
[]
no_license
compgenomics2020/Team2-WebServer
76d9c5e9ac01be84da2b19ee8c7cfcb088e24911
0e550cc523e93afd4417af688a1e9ada79ae489f
refs/heads/master
2022-06-23T08:16:11.751133
2020-05-02T14:00:43
2020-05-02T14:00:43
263,474,920
0
0
null
null
null
null
UTF-8
Python
false
false
2,910
py
#!/usr/bin/env python3 """ Copyright 2019 by Jianshu Zhao (jansuechao@hotmail.com) This script uses FastANI output to generate a PHYLIP distance matrix suitable for tree/headmap et.al. """ import argparse import sys def get_arguments(): parser = argparse.ArgumentParser(description='Distance matrix from pairwise ...
[ "github-noreply@oit.gatech.edu" ]
github-noreply@oit.gatech.edu
5090607a5ef39fea84b21da06b8f38aeeea43fb4
13d013cd5481ad47d48cf87750647f08a9c630ed
/melons.py
b5545fdc3526f8ce157ea918c5c488daa28dd367
[]
no_license
marjanasarker/oo-melons
7878de32f9ead132770c77570ae1410a7fe29ed3
a75fcce861b1e4ea47896921f2fbc221d875764f
refs/heads/master
2023-03-21T11:01:13.996561
2021-03-12T21:00:08
2021-03-12T21:00:08
null
0
0
null
null
null
null
UTF-8
Python
false
false
2,021
py
"""Classes for melon orders.""" class AbstractMelonOrder(): """An abstract base class that other Melon Orders inherit from.""" def __init__(self, species, qty): self.species = species self.qty = qty def get_total(self): """Calculate price, including tax.""" ba...
[ "vagrant@vagrant.vm" ]
vagrant@vagrant.vm
87b129553779da9bda36a4a63c210538154e7ef6
2fa4007849c1ec0f9c009ba536887001217b7f9f
/sgkit_plink/tests/test_pysnptools.py
ac5df4ddbc65a1abad0d9c88df7aa98d4361d3b7
[ "Apache-2.0" ]
permissive
eric-czech/sgkit-plink
219195318836dcfbfbb6de9b720ef6f3e183f7be
4f10c1b0b260fa80fe18c31d28a434c175e558cd
refs/heads/master
2022-12-08T18:28:09.111583
2020-08-04T13:49:56
2020-08-04T13:49:56
276,471,757
0
0
null
2020-07-01T20:06:50
2020-07-01T20:06:50
null
UTF-8
Python
false
false
3,100
py
import numpy as np import pytest import xarray as xr from sgkit_plink.pysnptools import read_plink example_dataset_1 = "plink_sim_10s_100v_10pmiss" @pytest.fixture(params=[dict()]) def ds1(shared_datadir, request): path = shared_datadir / example_dataset_1 return read_plink(path=path, bim_sep="\t", fam_sep="...
[ "eric.allen.czech@gmail.com" ]
eric.allen.czech@gmail.com
46b4d533b36599eb8e094a265a17059b93efaa3b
acb8e84e3b9c987fcab341f799f41d5a5ec4d587
/langs/1/dwd.py
503f139a6ae2d1ae779cbfb84e9ff0c633842534
[]
no_license
G4te-Keep3r/HowdyHackers
46bfad63eafe5ac515da363e1c75fa6f4b9bca32
fb6d391aaecb60ab5c4650d4ae2ddd599fd85db2
refs/heads/master
2020-08-01T12:08:10.782018
2016-11-13T20:45:50
2016-11-13T20:45:50
73,624,224
0
1
null
null
null
null
UTF-8
Python
false
false
486
py
import sys def printFunction(lineRemaining): if lineRemaining[0] == '"' and lineRemaining[-1] == '"': if len(lineRemaining) > 2: #data to print lineRemaining = lineRemaining[1:-1] print ' '.join(lineRemaining) else: print def main(fileName): with open(fileName) as f: for line in f: ...
[ "juliettaylorswift@gmail.com" ]
juliettaylorswift@gmail.com
7ef1801849d89765bd4444252fe2be738977662f
fe9d6ff3d7a39bb57a6ed7a973c0318d3a7aa189
/chapters5/exe5_14.py
30417bf07dc5fd973a3261b80db35c60467c31c2
[]
no_license
yiguming/python_core_progreamming
12cfca8b44b187a706c7dd7e1bb73ab3ef1f7552
9b7790938f33523c0cd4172b0d508e49bbddf17a
refs/heads/master
2020-03-29T16:27:55.888601
2015-04-19T03:09:39
2015-04-19T03:09:39
31,845,862
0
0
null
null
null
null
UTF-8
Python
false
false
318
py
#!/usr/bin/env python def huibao(basemoney,rate): totalmoney = basemoney*(1+rate)*365 huibao = totalmoney / float(basemoney) print "The basemoney %.2f ,after a year it will be change %.2f ,and the huibaolv is %f"%(basemoney,totalmoney,huibao) if __name__ == "__main__": huibao(100.00,0.25)
[ "439309415@qq.com" ]
439309415@qq.com
1067841ff7b2255d7deb7766bb7e37d66f3416ec
0fccee4c738449f5e0a8f52ea5acabf51db0e910
/genfragments/ThirteenTeV/Wprime/Wprime_WZ_WlepZhad_narrow_M3000_13TeV-madgraph_cff.py
5ea1fd9178d90686f424118336088b009a602725
[]
no_license
cms-sw/genproductions
f308ffaf3586c19b29853db40e6d662e937940ff
dd3d3a3826343d4f75ec36b4662b6e9ff1f270f4
refs/heads/master
2023-08-30T17:26:02.581596
2023-08-29T14:53:43
2023-08-29T14:53:43
11,424,867
69
987
null
2023-09-14T12:41:28
2013-07-15T14:18:33
Python
UTF-8
Python
false
false
769
py
import FWCore.ParameterSet.Config as cms # link to cards: # https://github.com/cms-sw/genproductions/tree/91ab3ea30e3c2280e4c31fdd7072a47eb2e5bdaa/bin/MadGraph5_aMCatNLO/cards/production/13TeV/exo_diboson/Spin-1/Wprime_WZ_WlepZhad/Wprime_WZ_WlepZhad_narrow_M3000 externalLHEProducer = cms.EDProducer("ExternalLHEProdu...
[ "sheffield@physics.rutgers.edu" ]
sheffield@physics.rutgers.edu
323a93c9c5d16e668db2cef2445cd7fe25a23394
91ac6c1be33810c98cb49a18318603bcab1ff37d
/temp.py
3d64b4e0a5fcfbe0c0c16eb54fdfc8bd8eb7b5bd
[]
no_license
antonylu/serial
492a1e61cc65e9c32f7e49ff1cf1a2281b6c8045
141986c3c8a911d9560ab133e1e7488627094f71
refs/heads/master
2022-11-13T00:07:18.333268
2020-06-30T12:53:33
2020-06-30T12:53:33
275,778,117
0
0
null
null
null
null
UTF-8
Python
false
false
2,181
py
import serial import pygame import json BG_L_IMG = "bg.jpg" BG_P_IMG = "bgp.jpg" OPTION_JSON = "options.json" class Temp(): def __init__(self): pygame.init() pygame.display.set_mode((0, 0), pygame.FULLSCREEN) self._surface = pygame.display.get_surface() options = json.load(op...
[ "w3back@gmail.com" ]
w3back@gmail.com
2f69b6682d0e02c84f16d9a1392c5798407925f3
9743d5fd24822f79c156ad112229e25adb9ed6f6
/xai/brain/wordbase/otherforms/_desisted.py
dc89e70ec3bbf682ce15215f48ef5b72a515f1d5
[ "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
224
py
#calss header class _DESISTED(): def __init__(self,): self.name = "DESISTED" self.definitions = desist self.parents = [] self.childen = [] self.properties = [] self.jsondata = {} self.basic = ['desist']
[ "xingwang1991@gmail.com" ]
xingwang1991@gmail.com
11bec3b555107fc73d0e2a16654cd5dc9d63550a
7e4460c85790fae2d470182732289bcd1b8777b2
/Process/process_skins.py
3a30a41c954eafa1f3fe1ae717d05245e99ec506
[]
no_license
khamukkamu/swconquest-msys
5b23654c8dd2e8b2f25bc7914252eedc05a5cc1e
71337a4ae9c507b9440e84cf49d31fc67a781978
refs/heads/master
2021-04-29T19:00:10.389224
2019-05-01T15:11:11
2019-05-01T15:11:11
121,704,753
1
1
null
2018-02-16T01:40:58
2018-02-16T01:40:58
null
UTF-8
Python
false
false
3,719
py
import string from process_common import * from module_info import * from module_skins import * from module_info import wb_compile_switch as is_wb_skin import string from process__swyhelper import * # WARNING: The following should be the same as the number in face_generator.h num_voice_types = 2 ##########...
[ "swyterzone@gmail.com" ]
swyterzone@gmail.com
417b7c78684e01503bc3ad7a901d8c6be1916817
d554b1aa8b70fddf81da8988b4aaa43788fede88
/5 - Notebooks e Data/1 - Análises numéricas/Arquivos David/Atualizados/logDicas-master/data/2019-1/224/users/4379/codes/1649_2446.py
ef3d63fb97cf206c3f0439f899c69140cd7791fa
[]
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
225
py
num=float(input("senha (6 digitos): ")) n1=num//100000 n2=(num//10000)%10 n3=(num//1000)%10 n4=(num//100)%10 n5=(num//10)%10 n6=num%10 if ((n2+n4+n6)%(n1+n3+n5)==0): print("acesso liberado") else: print("senha invalida")
[ "jvlo@icomp.ufam.edu.br" ]
jvlo@icomp.ufam.edu.br
cccc38104fcdd3214cf991fab273dde1f1d0454d
53fab060fa262e5d5026e0807d93c75fb81e67b9
/backup/user_088/ch35_2020_09_16_23_12_26_483631.py
9df7bf2f9250ad03afdea874bfc0681b95417cdd
[]
no_license
gabriellaec/desoft-analise-exercicios
b77c6999424c5ce7e44086a12589a0ad43d6adca
01940ab0897aa6005764fc220b900e4d6161d36b
refs/heads/main
2023-01-31T17:19:42.050628
2020-12-16T05:21:31
2020-12-16T05:21:31
306,735,108
0
0
null
null
null
null
UTF-8
Python
false
false
150
py
continua=True soma=0 while(continua): numero=int(input("digite o numero")) soma+=numero if(numero==0): continua =False print(soma)
[ "you@example.com" ]
you@example.com
9aa5e52832cf35b3e5921015b4c55e33c4e5b7dd
b44a984ac8cfd183e218d56e1ec5d0d3e72d20fd
/High_Frequency/Dynamic Programming/Course Schedule IV/dfs+memo.py
de84bcc80eaf5dd410518179c7f1e887dc08076f
[]
no_license
atomextranova/leetcode-python
61381949f2e78805dfdd0fb221f8497b94b7f12b
5fce59e6b9c4079b49e2cfb2a6d2a61a0d729c56
refs/heads/master
2021-07-15T20:32:12.592607
2020-09-21T00:10:27
2020-09-21T00:10:27
207,622,038
1
0
null
null
null
null
UTF-8
Python
false
false
1,487
py
class Solution: """ @param n: an integer, denote the number of courses @param p: a list of prerequisite pairs @return: return an integer,denote the number of topologicalsort """ def topologicalSortNumber(self, n, p): post_to_pres = [] cur_list = [str(i) for i in range(n)] ...
[ "atomextranova@gmail.com" ]
atomextranova@gmail.com
fd24ce8e6ab3237a43786af7a37372084eb42eb7
de4aa86038fb75778b4e6d0e7bb07fc78cf28a0e
/__init__.py
ca2ddad9a898b8b1ae13ba3007b43eafaef53bfb
[ "BSD-3-Clause", "BSD-2-Clause" ]
permissive
radaniba/jcvi
718d8b87fc5a5e748841a37f5e100cfa2c232347
04d457ea7231897d547ea0bd51b011fe7412f171
refs/heads/master
2020-12-31T06:22:16.125846
2014-09-18T16:58:43
2014-09-18T16:58:43
null
0
0
null
null
null
null
UTF-8
Python
false
false
238
py
__author__ = ("Haibao Tang", "Vivek Krishnakumar", "Jingping Li", "Maria Kim") __copyright__ = "Copyright (c) 2010-2014, Haibao Tang" __email__ = "tanghaibao@gmail.com" __license__ = "BSD" __status__ = "Development" __version__ = "0.4.9"
[ "tanghaibao@gmail.com" ]
tanghaibao@gmail.com
c25e501bc52ff5180701dcea6403201d44cce97f
747f759311d404af31c0f80029e88098193f6269
/addons/analytic_multicurrency/__init__.py
0e6e6997632a278ae3ef25b661e98b49709bee8e
[]
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/analytic_multicurrency/__init__.py
[ "geerish@omerp.net" ]
geerish@omerp.net
66477801ae526dcb4fcbcda849c5be6f6bcbe983
46dbafdf6608f5c92b0a821a6f6e68c1de64c5bb
/knowledge/global_utils.py
be48a45db958bb2f295384e3bbdbd06e2cee203b
[]
no_license
lcwy220/knowledge_revised
b89db6dc6ec9a713e057930ee63405db4b284534
d53f47ec27bd452a77ade2c0e2a03b8c3136b937
refs/heads/master
2021-01-22T17:52:39.539096
2017-03-18T06:27:46
2017-03-18T06:27:46
85,040,924
0
0
null
2017-03-15T07:13:37
2017-03-15T07:13:37
null
UTF-8
Python
false
false
16,661
py
# -*-coding:utf-8-*- import redis from py2neo import Graph from elasticsearch import Elasticsearch from global_config import * # user profile info es_user_profile = Elasticsearch(user_profile_host, timeout=600) profile_index_name = "weibo_user" profile_index_type = "user" # user portrait system es_user_portrait = El...
[ "1257819385@qq.com" ]
1257819385@qq.com
fbec9c53646965e194c6b50aab16bc86dd1e842c
727f1bc2205c88577b419cf0036c029b8c6f7766
/out-bin/py/google/fhir/models/model_test.runfiles/com_google_fhir/external/pypi__tensorboard_1_12_1/tensorboard/_vendor/bleach/callbacks.py
2abfbc730279ddbb38613aacfa75e49d7aea49ac
[ "Apache-2.0" ]
permissive
rasalt/fhir
55cf78feed3596a3101b86f9e9bbf6652c6ed4ad
d49883cc4d4986e11ca66058d5a327691e6e048a
refs/heads/master
2020-04-13T00:16:54.050913
2019-01-15T14:22:15
2019-01-15T14:22:15
160,260,223
0
0
Apache-2.0
2018-12-03T22:07:01
2018-12-03T22:07:01
null
UTF-8
Python
false
false
150
py
/home/rkharwar/.cache/bazel/_bazel_rkharwar/c4bcd65252c8f8250f091ba96375f9a5/external/pypi__tensorboard_1_12_1/tensorboard/_vendor/bleach/callbacks.py
[ "ruchika.kharwar@gmail.com" ]
ruchika.kharwar@gmail.com
b116d249bb6b8d8d11168a3c5583bf091dcdc466
4e13248d569f3d2ba30519e45d7479d8764f84a2
/lib/plot.py
c68d5a227c947ff42198e2c4592f12990837bf71
[]
no_license
SunnerLi/Cup2
84df0b07df5875f20e0480b7032fe982bb8b4a79
8c8c8c0864a4f4b02f1496bb8e91970a04d5c6d0
refs/heads/master
2021-06-24T10:07:35.597057
2017-09-12T03:08:22
2017-09-12T03:08:22
93,631,639
4
1
null
null
null
null
UTF-8
Python
false
false
6,753
py
from collections import Counter, defaultdict from config import * import numpy as np import time import cv2 # Mapping object (Auto-generated) obj_index_2_name = {index: name for name, index in obj_name_2_index.iteritems()} # Other variable (Auto-generated) kind = len(obj_name_2_index) grid_height = None grid_width = ...
[ "a6214123@gmail.com" ]
a6214123@gmail.com
4046b3d62d1ce23666ab43c8a41a59234f840fd4
2850d9adba96bc4e73185de5d6adebf363a5c534
/tce/tcloud/cvm/RebootInstances.py
6b68f7510fb20afa20eecb430276d6bf55bdddb3
[ "Apache-2.0" ]
permissive
FatAnker/tencentcloud-sdk-python
d8f757b12ad336e78a06b68a789ecc3c86d1d331
d6f75a41dc7053cb51f9091f4d41b8cb7a837559
refs/heads/master
2020-04-30T22:34:16.740484
2019-04-28T11:14:11
2019-04-28T11:14:11
177,122,691
0
1
null
2019-03-22T10:46:01
2019-03-22T10:46:01
null
UTF-8
Python
false
false
2,131
py
# -*- coding: utf-8 -*- import os from tencentcloud.common import credential from tencentcloud.common.exception.tencent_cloud_sdk_exception import TencentCloudSDKException # 导入对应产品模块的client models。 from tencentcloud.cvm.v20170312 import cvm_client, models import json # 导入可选配置类 from tencentcloud.common.profile.client_p...
[ "1113452717@qq.com" ]
1113452717@qq.com
fefac9fb3ef1ecc86facfe365495ab0f28693881
87b006149b16a3028385fc58cf781f5a12c94ad9
/PyFunceble/checker/syntax/second_lvl_domain.py
e01845520774e59a1dd0e96aa7033158eb539543
[ "Apache-2.0" ]
permissive
spirillen/PyFunceble
04d03b2678ad46ec81c520a32df5397832414451
3c8f62062bffa0e16d465c150a853af8bf2f2205
refs/heads/master
2023-05-12T04:32:04.587521
2022-11-20T11:19:06
2022-11-20T11:19:06
237,827,167
2
0
Apache-2.0
2021-01-27T10:09:59
2020-02-02T19:50:47
Python
UTF-8
Python
false
false
4,696
py
""" The tool to check the availability or syntax of domain, IP or URL. :: ██████╗ ██╗ ██╗███████╗██╗ ██╗███╗ ██╗ ██████╗███████╗██████╗ ██╗ ███████╗ ██╔══██╗╚██╗ ██╔╝██╔════╝██║ ██║████╗ ██║██╔════╝██╔════╝██╔══██╗██║ ██╔════╝ ██████╔╝ ╚████╔╝ █████╗ ██║ ██║██╔██╗ ██║██║ █████╗ █...
[ "contact@funilrys.com" ]
contact@funilrys.com
9634edfec32f0f9cfa846e90a764fa87057766cf
a20f9643cc79d2ce4fe69176b4439ce5855fdab4
/backend/songbird_18676/urls.py
db249b68d533e4dd80a645b2e807acbfe92cbca3
[]
no_license
crowdbotics-apps/songbird-18676
bde32b1206d3f045403e2ef9e609254e33761994
09490a0d9438df7219164cf0c84437a69596c5a6
refs/heads/master
2022-11-14T19:46:35.980627
2020-07-07T20:58:39
2020-07-07T20:58:39
277,920,633
0
0
null
null
null
null
UTF-8
Python
false
false
1,914
py
"""songbird_18676 URL Configuration The `urlpatterns` list routes URLs to views. For more information please see: https://docs.djangoproject.com/en/2.2/topics/http/urls/ Examples: Function views 1. Add an import: from my_app import views 2. Add a URL to urlpatterns: path('', views.home, name='home') Clas...
[ "team@crowdbotics.com" ]
team@crowdbotics.com
99ac83b99ddb015a8af7fe01b944afb27dfa0dd2
84226827016bf833e843ebce91d856e74963e3ed
/tests/integration/modules/boto_sns.py
8bff3a65f280a9b4b69437e07f0a875772f21f3b
[ "Apache-2.0" ]
permissive
jbq/pkg-salt
ad31610bf1868ebd5deae8f4b7cd6e69090f84e0
b6742e03cbbfb82f4ce7db2e21a3ff31b270cdb3
refs/heads/master
2021-01-10T08:55:33.946693
2015-05-21T13:41:01
2015-05-21T13:41:01
36,014,487
1
0
null
null
null
null
UTF-8
Python
false
false
1,929
py
# -*- coding: utf-8 -*- ''' Validate the boto_sns module ''' from salttesting import skipIf from salttesting.helpers import ensure_in_syspath ensure_in_syspath('../../') import integration NO_BOTO_MODULE = True BOTO_NOT_CONFIGURED = True try: import boto NO_BOTO_MODULE = False try: boto.connect_ia...
[ "joehealy@gmail.com" ]
joehealy@gmail.com
2ae43110afb9d1103a7ace2557660dbaa671a972
58df224689ab08c99359b1a6077d2fba3728dc61
/lamda-ocr/merge-files/borb/pdf/canvas/event/begin_text_event.py
edadfc51f9880306c13f85e943a3463f2f3669f3
[]
no_license
LIT-Midas/LITHackathon
2b286728c156d79d3f426f6d19b160a2a04690db
7b990483dd48b91cf3ec3452b78ab67770da71af
refs/heads/main
2023-08-13T05:22:59.373965
2021-08-16T01:09:49
2021-08-16T01:09:49
395,024,729
0
1
null
null
null
null
UTF-8
Python
false
false
345
py
#!/usr/bin/env python # -*- coding: utf-8 -*- """ This implementation of Event is triggered when an BT instruction is being processed. """ from borb.pdf.canvas.event.event_listener import Event class BeginTextEvent(Event): """ This implementation of Event is triggered when an BT instruction is being proc...
[ "trevordino@gmail.com" ]
trevordino@gmail.com
5feb3012f0d839b4153bd825a19ad07f4b45e4f4
36b75aac4236e928e22552e8812abd45d32aecf1
/modules/dbnd/src/dbnd/_core/task_ctrl/task_dag_describe.py
a9c956e79acc37da5af6f130546fa1f05224cdb3
[ "Apache-2.0" ]
permissive
reloadbrain/dbnd
7793aa1864f678005de626068b0ac9361d637d65
ec0076f9a142b20e2f7afd886ed1a18683c553ec
refs/heads/master
2023-09-01T08:04:09.486666
2021-10-14T16:43:00
2021-10-14T16:43:00
null
0
0
null
null
null
null
UTF-8
Python
false
false
4,355
py
from __future__ import print_function import logging from dbnd._core.constants import DescribeFormat from dbnd._core.errors import DatabandSystemError from dbnd._core.settings import DescribeConfig from dbnd._core.task_ctrl.task_ctrl import TaskSubCtrl from dbnd._core.utils.basics.helpers import indent from dbnd._ven...
[ "roman.slipchenko@databand.ai" ]
roman.slipchenko@databand.ai
95565b6038b246017520d2f8a8fd5549545a9860
acd41dc7e684eb2e58b6bef2b3e86950b8064945
/res/packages/scripts/scripts/client/account_helpers/__init__.py
c17ac8288f39b7019429fc00e8831b5f8f10f203
[]
no_license
webiumsk/WoT-0.9.18.0
e07acd08b33bfe7c73c910f5cb2a054a58a9beea
89979c1ad547f1a1bbb2189f5ee3b10685e9a216
refs/heads/master
2021-01-20T09:37:10.323406
2017-05-04T13:51:43
2017-05-04T13:51:43
90,268,530
0
0
null
null
null
null
WINDOWS-1250
Python
false
false
2,047
py
# 2017.05.04 15:20:20 Střední Evropa (letní čas) # Embedded file name: scripts/client/account_helpers/__init__.py import datetime import BigWorld from constants import ACCOUNT_ATTR from account_helpers.AccountSettings import AccountSettings, GOLD_FISH_LAST_SHOW_TIME from shared_utils.account_helpers import BattleResult...
[ "info@webium.sk" ]
info@webium.sk
ca486408ec1dad11aa30a35e2c012cbbef64c774
aaa762ce46fa0347cdff67464f56678ea932066d
/AppServer/lib/django-1.2/tests/regressiontests/forms/localflavor/id.py
cb346ef7213c8b9f9b3ac7246e6189dda91db151
[ "Apache-2.0", "BSD-3-Clause", "LGPL-2.1-or-later", "MIT", "GPL-2.0-or-later", "MPL-1.1" ]
permissive
obino/appscale
3c8a9d8b45a6c889f7f44ef307a627c9a79794f8
be17e5f658d7b42b5aa7eeb7a5ddd4962f3ea82f
refs/heads/master
2022-10-01T05:23:00.836840
2019-10-15T18:19:38
2019-10-15T18:19:38
16,622,826
1
0
Apache-2.0
2022-09-23T22:56:17
2014-02-07T18:04:12
Python
UTF-8
Python
false
false
6,972
py
from django.contrib.localflavor.id.forms import (IDPhoneNumberField, IDPostCodeField, IDNationalIdentityNumberField, IDLicensePlateField, IDProvinceSelect, IDLicensePlatePrefixSelect) from utils import LocalFlavorTestCase class IDLocalFlavorTests(LocalFlavorTestCase): def test_IDProvinceSelect(self): ...
[ "root@lucid64.hsd1.ca.comcast.net" ]
root@lucid64.hsd1.ca.comcast.net
3cb085700726c9c2db2df74c836ba5909727f8b0
fdb9bdc6c4ab2f14ba71e544493706d5e275899f
/fhir/resources/parameters.py
9a9ccb1bbdb7e5fb404d489eef37604a6f157d26
[ "BSD-3-Clause" ]
permissive
nazrulworld/fhir.resources
6ae8aea8180c611b0c5050759c6dcdf63e4cb061
1fd6ea476b27b3fcb8c4ef8f23bc51cf161e69e3
refs/heads/main
2023-08-30T18:27:27.277249
2023-07-03T19:57:06
2023-07-03T19:57:06
165,297,877
256
83
NOASSERTION
2023-08-24T15:34:05
2019-01-11T19:26:41
Python
UTF-8
Python
false
false
37,058
py
# -*- coding: utf-8 -*- """ Profile: http://hl7.org/fhir/StructureDefinition/Parameters Release: R5 Version: 5.0.0 Build ID: 2aecd53 Last updated: 2023-03-26T15:21:02.749+11:00 """ import typing from pydantic import Field, root_validator from pydantic.error_wrappers import ErrorWrapper, ValidationError from pydantic.e...
[ "connect2nazrul@gmail.com" ]
connect2nazrul@gmail.com
2332fc6eb75e911cda4ac674a691601b23144c56
cdb7bb6215cc2f362f2e93a040c7d8c5efe97fde
/N/NumberofSubsequencesThatSatisfytheGivenSumCondition.py
2b3ac4e3f31a679a7d7875712e7e3752b79dbc87
[]
no_license
bssrdf/pyleet
8861bbac06dfe0f0f06f6ad1010d99f8def19b27
810575368ecffa97677bdb51744d1f716140bbb1
refs/heads/master
2023-08-20T05:44:30.130517
2023-08-19T21:54:34
2023-08-19T21:54:34
91,913,009
2
0
null
null
null
null
UTF-8
Python
false
false
2,195
py
''' -Medium- You are given an array of integers nums and an integer target. Return the number of non-empty subsequences of nums such that the sum of the minimum and maximum element on it is less or equal to target. Since the answer may be too large, return it modulo 109 + 7. Example 1: Input: nums = [3,5,6,7], ...
[ "merlintiger@hotmail.com" ]
merlintiger@hotmail.com
f3cd108c4ee31b5498859b931cd6bc67e4d4b418
e91f477713556f14b288b89ecce89754d4bd93f7
/alpha-clipping/main.py
8206fd8738006ed2f687e69b36b9dbbd85e3e019
[ "MIT" ]
permissive
PepSalehi/algorithms
715603ad16c320c0f1d32c544062b71b11814263
1c20f57185e6324aa840ccff98e69764b4213131
refs/heads/master
2020-12-28T23:24:39.542742
2019-02-01T05:17:56
2019-02-01T05:17:56
14,173,271
0
0
MIT
2019-02-01T05:17:57
2013-11-06T13:27:34
Python
UTF-8
Python
false
false
5,195
py
#!/usr/bin/env python """Example of the alpha clipping algorithm.""" def main(): """Test some simple examples.""" pl = Point(0.0, 0.0) pr = Point(10.0, 6.0) p0 = Point(-3.0, 4.0) p1 = Point(6.0, -2.0) p3 = Point(-1.0, -1.0) p4 = Point(4.0, 4.0) p5 = Point(1.0, 100.0) rectangle = R...
[ "info@martin-thoma.de" ]
info@martin-thoma.de
bda61239f575bbe29c60da4f3ed441365a6650ae
24fe1f54fee3a3df952ca26cce839cc18124357a
/servicegraph/lib/python2.7/site-packages/acimodel-4.0_3d-py2.7.egg/cobra/modelimpl/ep/ipagingp.py
24fe0ca702d011aa284b1fef708a92a52ea68b21
[]
no_license
aperiyed/servicegraph-cloudcenter
4b8dc9e776f6814cf07fe966fbd4a3481d0f45ff
9eb7975f2f6835e1c0528563a771526896306392
refs/heads/master
2023-05-10T17:27:18.022381
2020-01-20T09:18:28
2020-01-20T09:18:28
235,065,676
0
0
null
2023-05-01T21:19:14
2020-01-20T09:36:37
Python
UTF-8
Python
false
false
7,228
py
# coding=UTF-8 # ********************************************************************** # Copyright (c) 2013-2019 Cisco Systems, Inc. All rights reserved # written by zen warriors, do not modify! # ********************************************************************** from cobra.mit.meta import ClassMeta from cobra.m...
[ "rrishike@cisco.com" ]
rrishike@cisco.com
f4715eb58fdf816dd11aecfe15e38cb0f67c343e
f2ed44ff6a8e4f163680f53bd34845e3cac3d91c
/summarize/data/dataset_readers/sds/abstractive.py
017d53831a96c5b3503813c07cadd9b1ba44f658
[ "Apache-2.0" ]
permissive
CogComp/summary-cloze
1a2b76ba2e19a8ca0a98e1b95e036dc1dfba17ad
b38e3e8c7755903477fd92a4cff27125cbf5553d
refs/heads/master
2020-09-01T17:09:10.312107
2019-11-05T20:43:47
2019-11-05T20:43:47
219,012,685
6
0
null
null
null
null
UTF-8
Python
false
false
4,880
py
from allennlp.common.file_utils import cached_path from allennlp.data import DatasetReader, Instance from allennlp.data.fields import MetadataField, TextField from allennlp.data.token_indexers import SingleIdTokenIndexer, TokenIndexer from overrides import overrides from typing import Dict, Iterable, List, Optional fr...
[ "danfdeutsch@gmail.com" ]
danfdeutsch@gmail.com
2568d6aa8b661c8dae6a0f85ab197fa18cd31c95
7f66c9818b2a22e6dbfa832a6bb4f9f21fbd15da
/semester_2/graph/lab_03/main.py
5147ef29678cf898ae10c2835d540e0b4f05cb83
[]
no_license
caprapaul/assignments
cc3992833d4f23f74286c1800ac38dc2d9a874da
206b049700d8a3e03b52e57960cd44f85c415fe8
refs/heads/master
2023-05-24T03:46:42.858147
2022-05-03T16:26:58
2022-05-03T16:26:58
248,552,522
0
0
null
2023-05-09T01:49:04
2020-03-19T16:31:37
C
UTF-8
Python
false
false
1,744
py
import random from directed_graph import DirectedGraph from ui import UI from service import Service def random_graph(graph, vertex_count, edge_count): current_edge_count = 0 for i in range(vertex_count): graph.add_vertex(i) while current_edge_count < edge_count: from_vertex = random.ran...
[ "c.paulica@gmail.com" ]
c.paulica@gmail.com
c9c8afe833e1dc94693f45f0a75d7f2677ea1bf0
aa73e301f658b45a9674df4b619b288945dd0669
/branches/sal4_new_test_framework/examples/lts2graph.py
a0436c68a964f4d2e7727d7f517de6f605cb99bb
[ "MIT" ]
permissive
svn2github/python-graph2
e1c37f77cc0a27ac9099208876c63693bffbc929
f19039d7f3fc1f04977c3f1d1d6128e8545ebef1
refs/heads/master
2020-04-30T04:11:38.475209
2013-04-19T01:06:14
2013-04-19T01:06:14
9,714,375
0
0
null
null
null
null
UTF-8
Python
false
false
3,623
py
#!/usr/bin/env python # Copyright (c) Pedro Matiello <pmatiello@gmail.com> # # 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...
[ "salimfadhley@70df0079-b534-0410-988b-a5721c0f2d16" ]
salimfadhley@70df0079-b534-0410-988b-a5721c0f2d16
037de8db65e09ddb945a0032a8f52a6e11056bfc
5a52ccea88f90dd4f1acc2819997fce0dd5ffb7d
/alipay/aop/api/domain/AlipayOpenBpaasContractQueryModel.py
aafa6e6f87c71ca0f87f9405737db7a130bcbd87
[ "Apache-2.0" ]
permissive
alipay/alipay-sdk-python-all
8bd20882852ffeb70a6e929038bf88ff1d1eff1c
1fad300587c9e7e099747305ba9077d4cd7afde9
refs/heads/master
2023-08-27T21:35:01.778771
2023-08-23T07:12:26
2023-08-23T07:12:26
133,338,689
247
70
Apache-2.0
2023-04-25T04:54:02
2018-05-14T09:40:54
Python
UTF-8
Python
false
false
1,452
py
#!/usr/bin/env python # -*- coding: utf-8 -*- import json from alipay.aop.api.constant.ParamConstants import * class AlipayOpenBpaasContractQueryModel(object): def __init__(self): self._bpaas_app_id = None self._service_id = None @property def bpaas_app_id(self): return self._bp...
[ "jiandong.jd@antfin.com" ]
jiandong.jd@antfin.com
28b16eba0d922a9a936d56ec71c8ab5c31fcb179
0515fdb187aeea949d7d9d7b6b5fc167a1a463f9
/manage.py
4a04ca27bb245df22947e878f36e298c3065a70e
[]
no_license
alimahdiyar/django-sql
692541808cb3b768aa6836cb78eac60389e959aa
59e19bbd9d40a530933e8c692c749ea20c2f19a0
refs/heads/master
2021-06-25T01:21:39.965678
2019-12-11T09:26:15
2019-12-11T09:26:15
227,322,014
0
1
null
2021-06-10T22:23:11
2019-12-11T09:08:10
Python
UTF-8
Python
false
false
629
py
#!/usr/bin/env python """Django's command-line utility for administrative tasks.""" import os import sys def main(): os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'djangosql.settings') try: from django.core.management import execute_from_command_line except ImportError as exc: raise Impo...
[ "alimahdiyar77@gmail.com" ]
alimahdiyar77@gmail.com
c4e8e69cf70a352f0113b54e9d57008ae864bf9b
1d892928c70ee9ddf66f2a37a8e083d2632c6e38
/smoketests/__init__.py
dbc926f1e38eba7021e4aac46cf302bf4a47fb84
[ "Apache-2.0" ]
permissive
usc-isi/essex-baremetal-support
74196c3f1332ee3cdeba9c263faff0ac0567d3cf
a77daf8ef56cf41e38de36621eda25ed3f180156
refs/heads/master
2021-05-19T03:12:11.929550
2020-07-24T14:15:26
2020-07-24T14:15:26
4,702,421
0
1
Apache-2.0
2020-07-24T14:15:27
2012-06-18T15:19:41
null
UTF-8
Python
false
false
1,262
py
# vim: tabstop=4 shiftwidth=4 softtabstop=4 # Copyright 2010 United States Government as represented by the # Administrator of the National Aeronautics and Space Administration. # All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compli...
[ "dkang@isi.edu" ]
dkang@isi.edu
53a41e841c6260418bd1e7ae9a20c99f0b338dbc
50008b3b7fb7e14f793e92f5b27bf302112a3cb4
/recipes/Python/578164_Find_line_text_another/recipe-578164.py
fb286a488650b18fb2f8b998295941577af9201d
[ "MIT" ]
permissive
betty29/code-1
db56807e19ac9cfe711b41d475a322c168cfdca6
d097ca0ad6a6aee2180d32dce6a3322621f655fd
refs/heads/master
2023-03-14T08:15:47.492844
2021-02-24T15:39:59
2021-02-24T15:39:59
341,878,663
0
0
MIT
2021-02-24T15:40:00
2021-02-24T11:31:15
Python
UTF-8
Python
false
false
975
py
import sys import argparse parser = argparse.ArgumentParser() parser.add_argument("file1", help="First file whose lines you want to check") parser.add_argument("file2", help="Second file, in which you want to search for lines from first file") args = parser.parse_args() file1 = open(args.file1) file2 = open(args.file...
[ "betty@qburst.com" ]
betty@qburst.com
23dedd75381b9f1fe064efe634f7f8771b9ed2c0
565ae8473c545c43341f5511b9633e97f0e4da8b
/course2_python_fundamentals/10-Exams/1-MID-EXAM/PREPARATION/other-exams-for-exam-preparation/Mid_Exam_10_dec_2019/_2_Archery_Tournament.py
c801675c69580bc08321f897a5c16914079ec32a
[]
no_license
andriiburka/Web-Development-with-Python
3934c1a3945bd983ab39d38b97f1af16fe784207
b6927653a2c6a9cc10a8768395233e347624c49a
refs/heads/master
2022-11-21T21:42:04.898254
2020-07-29T22:59:56
2020-07-29T22:59:56
null
0
0
null
null
null
null
UTF-8
Python
false
false
811
py
integers = list(map(int, input().split('|'))) second_integers = [] while True: judge_command = list(map(str, input().split('@'))) if judge_command[0] == 'Game over': break else: index = int(judge_command[1]) length = int(judge_command[2]) if judge_command[0] == 'Shoot Left'...
[ "andriiburka@gmail.com" ]
andriiburka@gmail.com
7c5d43f43b42b60f2b4114b30bbe086c274ce47d
2af6a5c2d33e2046a1d25ae9dd66d349d3833940
/res/scripts/client/messenger/proto/shared_errors.py
967a966ccf6f0da8b65759b6db45d2cedde60407
[]
no_license
webiumsk/WOT-0.9.12-CT
e6c8b5bb106fad71b5c3056ada59fb1aebc5f2b2
2506e34bd6634ad500b6501f4ed4f04af3f43fa0
refs/heads/master
2021-01-10T01:38:38.080814
2015-11-11T00:08:04
2015-11-11T00:08:04
45,803,240
0
0
null
null
null
null
WINDOWS-1250
Python
false
false
4,826
py
# 2015.11.10 21:30:27 Střední Evropa (běžný čas) # Embedded file name: scripts/client/messenger/proto/shared_errors.py import BigWorld from gui.Scaleform.locale.MESSENGER import MESSENGER as I18N_MESSENGER from helpers import i18n from messenger.m_constants import CLIENT_ERROR_NAMES, CLIENT_ACTION_NAMES, CLIENT_ERROR_I...
[ "info@webium.sk" ]
info@webium.sk
b14a6a992a76e45e9bff3f37e5aee488de432395
66b504cac41d9e02ef605613ef86911e647b7584
/mergify_engine/tests/functional/actions/test_request_reviews.py
5aa49cf05b92501795632c8df178d32ab52849e3
[ "Apache-2.0" ]
permissive
Nytelife26/mergify-engine
894217f88b93ed48df6f8700cf955826dad3173a
98c2119e26021a39c7985baccf4f3e35500e7ab2
refs/heads/master
2023-04-04T09:48:06.904066
2021-04-08T18:29:40
2021-04-09T16:21:04
356,945,975
0
0
Apache-2.0
2021-04-11T18:21:27
2021-04-11T18:21:27
null
UTF-8
Python
false
false
6,561
py
# -*- encoding: utf-8 -*- # # Copyright © 2018–2020 Mergify SAS # # 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 appl...
[ "37929162+mergify[bot]@users.noreply.github.com" ]
37929162+mergify[bot]@users.noreply.github.com
194e207bc958493908fac766954695e21e84316a
7b65a38aca6fc4fb6f39bc5de1e0f352f3ab7e25
/s9/9.1_espacios.py
b37d38a4121ed466d8d9f17a99e7eb815f8d0ca6
[]
no_license
camohe90/-mision_tic_G1
96b10e4ae14278cf53f0a87638643112e2f81709
f083c8a0a133b9be1a8d6e8f61cde46cd1aa75e5
refs/heads/master
2023-05-26T03:53:25.660868
2021-06-09T12:44:48
2021-06-09T12:44:48
371,374,334
0
0
null
null
null
null
UTF-8
Python
false
false
141
py
# Usando 4 espacios def es_par(num): if num % 2 == 0: print("par") return True else: return False
[ "camohe90@gmail.com" ]
camohe90@gmail.com
dc227e7b0d70151dd193d560dc8cd7da9835d83e
41d9b92ef2a74a4ba05d27ffbe3beb87884c4ce7
/math/0x03-probability/normal.py
5db0c14284738923b0e7d0984afd2984ea74f577
[]
no_license
JosephK89/holbertonschool-machine_learning
3f96d886c61d8de99a23e4348fb045b9c930740e
aa5c500f7d8ebeec951f9ab5ec017cae64007c25
refs/heads/main
2023-08-14T18:42:53.481354
2021-10-10T19:53:40
2021-10-10T19:53:40
386,248,140
0
0
null
null
null
null
UTF-8
Python
false
false
1,529
py
#!/usr/bin/env python3 """normal distribution module""" class Normal: """"Noraml class""" def __init__(self, data=None, mean=0., stddev=1.): """initialization""" if data is None: if stddev <= 0: raise ValueError("stddev must be a positive value") else: ...
[ "josephkamel262@gmail.com" ]
josephkamel262@gmail.com