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
f30face88618b2e53b4b5aed2c70c8cffcfda98a
e2b2d81d1ea5beeb79d498dd4962fb5ed40e4678
/settings.py
322bb0ae98666366fece731a9d367f8abb04e868
[]
no_license
palewire/dorling-cartogram-example
ddd70d3c310d323f3c896a473d032ccf67da182c
4892546b9a97aa6de0c1f3f0fe6e130319ce8378
refs/heads/master
2021-01-19T20:16:26.152106
2011-10-04T04:26:30
2011-10-04T04:26:30
2,502,718
1
0
null
null
null
null
UTF-8
Python
false
false
4,923
py
# Django settings for project project. import os ROOT_PATH = os.path.dirname(__file__) DEBUG = True TEMPLATE_DEBUG = DEBUG ADMINS = ( # ('Your Name', 'your_email@example.com'), ) MANAGERS = ADMINS DATABASES = { 'default': { 'ENGINE': 'django.contrib.gis.db.backends.postgis', # Add 'postgresql_psycop...
[ "ben.welsh@gmail.com" ]
ben.welsh@gmail.com
3f2965e0c1071535736a0f8cee0a336628ca67e0
1385cf00f550ad38378227f62c49bb0cd05e1b04
/leecode/easy/207/1365.py
18f68a18946e06d936942586dac1d72c48b110fa
[]
no_license
liucheng2912/py
4a09652fa52a1f92e8d8dd1239f9c128248fc10e
d40f73450fa65b8dd4d59d8d92088382fc573d2a
refs/heads/master
2023-03-15T21:07:03.456017
2021-03-11T09:15:30
2021-03-11T09:15:30
334,900,352
0
0
null
null
null
null
UTF-8
Python
false
false
275
py
''' 思路: 双重遍历 ''' def f(nums): a=[] for x in nums: temp=0 nums1=nums[:] nums1.remove(x) for y in nums1: if x>y: temp+=1 a.append(temp) return a nums = [6,5,4,8] print(f(nums))
[ "liucheng@fanruan.com" ]
liucheng@fanruan.com
2bb29f3a8f5b1b7fbebbe190a039627e34f71d57
53fab060fa262e5d5026e0807d93c75fb81e67b9
/backup/user_325/ch30_2019_08_26_19_33_38_456658.py
856f9fb13cced922caa07303d99b2963d8c3cf61
[]
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
243
py
import math def jaca(v, o): d = (((v**2.0)*math.sin(2.0*o))/9.8) if d < 98.0: return ("Muito perto") elif d >= 98.0 and d <= 102.0: return ("Acertou!") else: return ("Muito longe") print(jaca(5.0, 45.0))
[ "you@example.com" ]
you@example.com
bd3c614d453ba44555d79e289a0d4d923e611a74
9dba277eeb0d5e9d2ac75e2e17ab5b5eda100612
/exercises/1901050013/d11/main.py
62fffbca9611008650d6ac289947ccf42f4a8d45
[]
no_license
shen-huang/selfteaching-python-camp
e8410bfc06eca24ee2866c5d890fd063e9d4be89
459f90c9f09bd3a3df9e776fc64dfd64ac65f976
refs/heads/master
2022-05-02T05:39:08.932008
2022-03-17T07:56:30
2022-03-17T07:56:30
201,287,222
9
6
null
2019-08-08T15:34:26
2019-08-08T15:34:25
null
UTF-8
Python
false
false
718
py
import yagmail import requests import getpass from pyquery import PyQuery from mymodule.stats_word import stats_text_cn response = requests.get('https://mp.weixin.qq.com/s/pLmuGoc4bZrMNl7MSoWgiA') # acquire the article link. document = PyQuery(response.text) content = document('#js_content').text() #acquire the articl...
[ "40155646+seven-tears@users.noreply.github.com" ]
40155646+seven-tears@users.noreply.github.com
2db42dee1688750e9f9b5361e4af2c9f36d228c3
5785d7ed431b024dd910b642f10a6781df50e4aa
/revise-daily/june_2021/walmart/10_triplet_sum_to_zero.py
e4e1d155945f4f6d79319f6ba48f01df9e967c5b
[]
no_license
kashyapa/interview-prep
45d77324446da34d99bf8efedb3544b367b5523e
7060c090c40602fb9c4778eace2078e1b51e235b
refs/heads/master
2023-07-28T13:12:49.515299
2021-09-06T14:33:25
2021-09-06T14:33:25
403,706,510
0
0
null
null
null
null
UTF-8
Python
false
false
798
py
def triplet_sum_to_zero(nums, target): def find_target_pair_sum(t, left): first = left - 1 right = len(nums)-1 while left < right: if nums[left] + nums[right] == t: res.append((nums[first], nums[left], nums[right])) left += 1 right...
[ "schandra2@godaddy.com" ]
schandra2@godaddy.com
5e5c4e2de7fe0b92d59fe49e8ed41262a8b5854a
56f5b2ea36a2258b8ca21e2a3af9a5c7a9df3c6e
/CMGTools/H2TauTau/prod/22Jul/down/emb/DoubleMuParked/StoreResults-Run2012B_22Jan2013_v1_PFembedded_trans1_tau132_pthad1_30had2_30_v1-5ef1c0fd428eb740081f19333520fdc8/USER/V5_B/PAT_CMG_V5_16_0_1374500587/HTT_22Jul_manzoni_Down_Jobs/Job_104/run_cfg.py
af465597ac04797342d557667927aeff1a2019b3
[]
no_license
rmanzoni/HTT
18e6b583f04c0a6ca10142d9da3dd4c850cddabc
a03b227073b2d4d8a2abe95367c014694588bf98
refs/heads/master
2016-09-06T05:55:52.602604
2014-02-20T16:35:34
2014-02-20T16:35:34
null
0
0
null
null
null
null
UTF-8
Python
false
false
69,041
py
import FWCore.ParameterSet.Config as cms import os,sys sys.path.append('/afs/cern.ch/user/m/manzoni/summer13/CMGTools/CMSSW_5_3_9/src/CMGTools/H2TauTau/prod/22Jul/down/emb/DoubleMuParked/StoreResults-Run2012B_22Jan2013_v1_PFembedded_trans1_tau132_pthad1_30had2_30_v1-5ef1c0fd428eb740081f19333520fdc8/USER/V5_B/PAT_CMG_V...
[ "riccardo.manzoni@cern.ch" ]
riccardo.manzoni@cern.ch
537ff5660a06711e1738ebf1b6cfdb1f3c9ea47d
87bf8ea26f6c28bce82ccdd9515c68d6341bd8c5
/trading/celery.py
6b455e28d01b1dde8036483d661a75eddc8dd195
[]
no_license
aisamuel/real-time-forex-api
e9ac21f28f77aadae526df9a275487737d8d1155
08b1d0d129659a3b8735b21d7195cb756fdd6b47
refs/heads/master
2022-04-06T08:13:51.749351
2020-03-04T12:12:55
2020-03-04T12:12:55
null
0
0
null
null
null
null
UTF-8
Python
false
false
222
py
import os from celery import Celery os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'trading.settings') app = Celery('trading') app.config_from_object('django.conf:settings', namespace='CELERY') app.autodiscover_tasks()
[ "charliescene512@gmail.com" ]
charliescene512@gmail.com
53411dfa34e5dcffe4e75154fc53a3b3114f157b
11f4dd74872c73781a8975698e7cf1e3df2a40af
/Chapter 9 - Organizing Files/findLargeFile.py
dab52b3722813fce1035f9413997e88737ddd764
[]
no_license
lonewolfcub/Automate-the-Boring-Stuff-with-Python
ca65e9fcbd61c94776ac1a0346b5372e975569db
da90ead498a0597ae5a4f88449a9774887c7d5e6
refs/heads/master
2021-01-18T17:03:17.600375
2017-03-31T05:58:56
2017-03-31T05:58:56
86,783,143
0
0
null
null
null
null
UTF-8
Python
false
false
552
py
#! /usr/bin/env python3 import os def findLargeFiles(folder): # iterate over search folder for dirpath, dirnames, filenames in os.walk(folder): # check each file to see if over 100mb for file in filenames: filepath = os.path.join(dirpath, file) filesize = os.path.getsiz...
[ "lonewolfcub020@gmail.com" ]
lonewolfcub020@gmail.com
af6b3f137d875061e788546266ab073b1b555f47
80d50ea48e10674b1b7d3f583a1c4b7d0b01200f
/examples/v1/synthetics/DeletePrivateLocation.py
e1445b48a8b1ceaab7b068d50ef37b6e45fd3c5f
[ "Apache-2.0", "BSD-3-Clause", "MIT", "MPL-2.0" ]
permissive
DataDog/datadog-api-client-python
3e01fa630278ad0b5c7005f08b7f61d07aa87345
392de360e7de659ee25e4a6753706820ca7c6a92
refs/heads/master
2023-09-01T20:32:37.718187
2023-09-01T14:42:04
2023-09-01T14:42:04
193,793,657
82
36
Apache-2.0
2023-09-14T18:22:39
2019-06-25T22:52:04
Python
UTF-8
Python
false
false
386
py
""" Delete a private location returns "OK" response """ from datadog_api_client import ApiClient, Configuration from datadog_api_client.v1.api.synthetics_api import SyntheticsApi configuration = Configuration() with ApiClient(configuration) as api_client: api_instance = SyntheticsApi(api_client) api_instance....
[ "noreply@github.com" ]
DataDog.noreply@github.com
7af77bd8017df4a03b730d463efae17dd0d9ffb0
447914f0f7a6e1b432f6811aacb0f274fbdbe3c5
/Jerry_Padilla_Py2Assignments-master/assignments/practice_models/apps/ninjaDojo/migrations/0001_initial.py
af5ff3d138e5e38072d2a746df99076ec1ab3a08
[]
no_license
jsterling23/Python_Prac
965ab83e6f34191a1ebbc2e3605f71ace07a0b6d
dc41030be125337099ddbc8af8e2598b844e11a4
refs/heads/master
2020-03-18T10:49:23.521218
2018-05-23T23:19:22
2018-05-23T23:19:22
134,635,256
0
0
null
null
null
null
UTF-8
Python
false
false
1,186
py
# -*- coding: utf-8 -*- # Generated by Django 1.11.5 on 2018-02-20 21:52 from __future__ import unicode_literals from django.db import migrations, models import django.db.models.deletion class Migration(migrations.Migration): initial = True dependencies = [ ] operations = [ migrations.Crea...
[ "jerrypadilla23@gmail.com" ]
jerrypadilla23@gmail.com
71b257d53cfa0b1ff1ea40c6dbceb81a4faab0c1
d9d7f841e1a7c53344000634320db78c5743eba5
/lib/python/make-csv.py
8d60b40f8633289728adc8229a567ec4aa777534
[]
no_license
hellais/ooni-analyst
5bb7030734319ad0bafec267ec30a7c8d0696b03
7e81b812581e36e26951bbfa48fea770ec09c061
refs/heads/master
2020-03-22T10:05:37.383835
2018-07-09T11:07:10
2018-07-09T11:07:10
139,880,420
0
0
null
null
null
null
UTF-8
Python
false
false
2,995
py
import os import sys import argparse from datetime import datetime import pandas as pd import psycopg2 def query(q, params, pg_dsn): # XXX this is useful for debugging """ import yaml from sshtunnel import SSHTunnelForwarder with open('private/secrets.yml') as in_file: secrets = yaml.load(...
[ "arturo@filasto.net" ]
arturo@filasto.net
089d2fbd735e86518961b5f6f385cd22e1d8c136
7345f03494fa8b06ea8215770305718618af1d41
/nenv/bin/wheel
1519777ccc4cf6bd72d97e5bd0f7a51fe7d8902d
[]
no_license
mr-kaveh/simplerestapi
328fd839b74afcfa2a41ff71d4bb556457535519
a5c68c55018c938211c2f25e19bf4e43b5d99f36
refs/heads/master
2022-10-29T11:55:56.033385
2022-10-18T15:39:56
2022-10-18T15:39:56
169,194,555
1
0
null
null
null
null
UTF-8
Python
false
false
243
#!/home/hossein/myScripts/apiRepo/nenv/bin/python # -*- 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())
[ "mr.hdavoodi@gmail.com" ]
mr.hdavoodi@gmail.com
b068a33104b190dfe987923899df18b4fb43123f
9743d5fd24822f79c156ad112229e25adb9ed6f6
/xai/brain/wordbase/otherforms/_ports.py
0fffb49ed97cda99bbb0989d662e80ae11e7425e
[ "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
214
py
#calss header class _PORTS(): def __init__(self,): self.name = "PORTS" self.definitions = port self.parents = [] self.childen = [] self.properties = [] self.jsondata = {} self.basic = ['port']
[ "xingwang1991@gmail.com" ]
xingwang1991@gmail.com
6afe8571e5efb5c4c6ebcec6460e3eff20f3c450
163bbb4e0920dedd5941e3edfb2d8706ba75627d
/Code/CodeRecords/2939/60688/289152.py
06318fcf6a295848bf438a55ad0e226977a27ba4
[]
no_license
AdamZhouSE/pythonHomework
a25c120b03a158d60aaa9fdc5fb203b1bb377a19
ffc5606817a666aa6241cfab27364326f5c066ff
refs/heads/master
2022-11-24T08:05:22.122011
2020-07-28T16:21:24
2020-07-28T16:21:24
259,576,640
2
1
null
null
null
null
UTF-8
Python
false
false
1,016
py
strings=input() numslist = (strings.split(" ")); if "5 4" in strings: print(numslist) numslist=list(int(x) for x in numslist); times=numslist[0]; delnums=numslist[1]; mynumlist=[1]; finalnums=[]; for i in range(times): num=mynumlist.pop(0); mynumlist.append(2*num+1) mynumlist.append(4*num+5) fin...
[ "1069583789@qq.com" ]
1069583789@qq.com
66293c35631b9c820a51f20977c34a270203973b
85b6f7782108bede2838c95adc89067e0ead70c7
/PythonAssignment5/dividebyzero.py
bd096464b2bc3a4182a160f0f5d585bdb5faa151
[]
no_license
RaunakJalan/iNeuronDLCVNLP
2fa005df34a712e078a8736578ad2808cd28826c
58e440f906530c8834df0a030c155fa480a6400a
refs/heads/main
2023-02-09T19:32:22.901752
2021-01-09T20:13:58
2021-01-09T20:13:58
314,672,689
0
0
null
null
null
null
UTF-8
Python
false
false
113
py
a=5 b=0 test=0 try: test = a/b print(test) except Exception as e: print(e) finally: print("Done Execution.")
[ "ronakjalan98@gmail.com" ]
ronakjalan98@gmail.com
d6101a03676385d1cab0549536ac13e065be7204
40043e5a5daf7817cbac766dfaede265a8b9a29c
/setup.py
d65b78460c756943bd495ead90e175877bb9f82c
[]
no_license
juniuszhou/substrate-python-api
166246266aa9f96954125cbb600caf854774a6da
98d538aa3e13f57f02758656ffa7977463977e5a
refs/heads/master
2022-12-16T07:13:11.767383
2020-09-17T14:07:37
2020-09-17T14:07:37
197,921,346
6
3
null
2020-05-25T01:26:51
2019-07-20T11:29:55
Python
UTF-8
Python
false
false
748
py
#!/usr/bin/env python #-*- coding:utf-8 -*- ############################################# # File Name: setup.py # Author: junius # Mail: junius.zhou@gmail.com # Created Time: 2019-07-20 19:17:34 ############################################# from setuptools import setup, find_packages setup( name="substrate-pyt...
[ "junius.zhou@gmail.com" ]
junius.zhou@gmail.com
74c2347b9150e15dbbe69fe6dce4493a8258841f
b424c3262c9eacf8dd4230019eba7e05a9b95461
/.history/ndn_hello_sender_20200530012537.py
a9866ad3bbc9dcd7f10b5fa74fed00e9084ad214
[]
no_license
leonerii/aer_tp
30e47f29bcda69512718a6279a7cad32e9a01b14
d8f46b188b5be9f315dd155ed147880ce7dce169
refs/heads/master
2022-09-30T03:27:24.375971
2020-06-04T14:23:16
2020-06-04T14:23:16
245,219,806
2
1
null
null
null
null
UTF-8
Python
false
false
1,802
py
from threading import Thread, RLock from time import sleep from json import dumps from uuid import uuid4 import socket class HelloSender(Thread): def __init__(self, lock, hello_interval, fib, cs, localhost, mcast_group, mcast_port): Thread.__init__(self) self.lock = lock self.hel...
[ "aseie@Adrianos-MBP.lan" ]
aseie@Adrianos-MBP.lan
9974261abc74319703ef35628bb1f321b6e39c26
84eaaa07532efbde535a52d29e8180dad357fbdd
/util.py
60f219c5bbae0c0e7adf694df70663c56ce13229
[]
no_license
jangwoopark/pacman-search
3ade9823f2d21b70513d64993f4ce008931b6f4a
7f88ba9c322b4af81979fef61cead4f19e9b9fdc
refs/heads/master
2021-08-07T21:19:43.753609
2017-11-09T01:12:23
2017-11-09T01:12:23
110,048,514
0
0
null
null
null
null
UTF-8
Python
false
false
13,222
py
# util.py # ------- # Licensing Information: Please do not distribute or publish solutions to this # project. You are free to use and extend these projects for educational # purposes. The Pacman AI projects were developed at UC Berkeley, primarily by # John DeNero (denero@cs.berkeley.edu) and Dan Klein (klein@cs.berkel...
[ "noreply@github.com" ]
jangwoopark.noreply@github.com
3691083811d7321c87cdbb05e8c670f027fec3f9
5167f77d96d1dc5412a8a0a91c95e3086acd05dc
/test/functional/p2p_segwit.py
ceccca331b56c3e9dca0b314718090ac21ff9ef9
[ "MIT" ]
permissive
ocvcoin/ocvcoin
04fb0cea7c11bf52e07ea06ddf9df89631eced5f
79c3803e330f32ed50c02ae657ff9aded6297b9d
refs/heads/master
2023-04-30T10:42:05.457630
2023-04-15T11:49:40
2023-04-15T11:49:40
406,011,904
3
2
null
null
null
null
UTF-8
Python
false
false
100,563
py
#!/usr/bin/env python3 # Copyright (c) 2016-2020 The Ocvcoin Core developers # Distributed under the MIT software license, see the accompanying # file COPYING or http://www.opensource.org/licenses/mit-license.php. """Test segwit transactions and blocks on P2P network.""" from decimal import Decimal import math import r...
[ "contact@ocvcoin.com" ]
contact@ocvcoin.com
10a74a89df0e005033f9a0040c90b46da278a520
e71b6d14fbdbc57c7234ca45a47329d7d02fc6f7
/flask_api/venv/lib/python3.7/site-packages/vsts/member_entitlement_management/v4_1/models/user_entitlement_operation_reference.py
0e8a8c4903319844a6245687d671b999ccabee76
[ "MIT" ]
permissive
u-blavins/secret_sasquatch_society
c36993c738ab29a6a4879bfbeb78a5803f4f2a57
0214eadcdfa9b40254e331a6617c50b422212f4c
refs/heads/master
2020-08-14T00:39:52.948272
2020-01-22T13:54:58
2020-01-22T13:54:58
215,058,646
1
0
null
null
null
null
UTF-8
Python
false
false
2,307
py
# -------------------------------------------------------------------------------------------- # Copyright (c) Microsoft Corporation. All rights reserved. # Licensed under the MIT License. See License.txt in the project root for license information. # -----------------------------------------------------------------...
[ "usama.blavins1@gmail.com" ]
usama.blavins1@gmail.com
225b6d5941ba617b3affab3562256f853598178b
c15a28ae62eb94dbf3ed13e2065195e572a9988e
/Cook book/src/9/defining_a_decorator_with_user_adjustable_attributes/example2.py
36d1bb206aabac56e5e7fba7acecdad70229e638
[]
no_license
xuyuchends1/python
10798c92840a1a59d50f5dc5738b2881e65f7865
545d950a3d2fee799902658e8133e3692939496b
refs/heads/master
2021-01-25T07:07:04.812140
2020-02-28T09:25:15
2020-02-28T09:25:15
93,647,064
0
0
null
null
null
null
UTF-8
Python
false
false
1,305
py
# Alternate formulation using function attributes directly from functools import wraps import logging def logged(level, name=None, message=None): ''' Add logging to a function. level is the logging level, name is the logger name, and message is the log message. If name and message aren't specified,...
[ "xuyuchends@163.com" ]
xuyuchends@163.com
dbd5cecff92cba1fcf35215102752961f33b4718
ce74ed4ad6834168b81d6ec5e53c80935f247fe1
/python-wrapper/normalizer.py
260c4e083f822c223ff64a447d4b415a33455417
[]
no_license
chenghuige/melt
6b6984243c71a85ec343cfaa67a66e3d1b48c180
d2646ffe84eabab464b4bef6b31d218abdbf6ce5
refs/heads/master
2021-01-25T16:46:57.567890
2017-08-26T04:30:13
2017-08-26T04:30:13
101,304,210
6
2
null
null
null
null
UTF-8
Python
false
false
2,386
py
import os import sys import glob from pyplusplus import module_builder root = '/home/users/chenghuige/rsc/' name = 'normalizer' #define_symbols = ['GCCXML','PYTHON_WRAPPER','NO_BAIDU_DEP'] define_symbols = ['GCCXML','PYTHON_WRAPPER'] files = [ './gezi.include.python/common_...
[ "chenghuige@fa64baa9-71d1-4fed-97ae-c15534abce97" ]
chenghuige@fa64baa9-71d1-4fed-97ae-c15534abce97
f81be5ea05f4ea49f85bd863cbbd7e280fde0fa5
98e1716c1c3d071b2fedef0ac029eb410f55762c
/part6-import-webdata/No06-Performing-HTTP-requests-in-Python-using-requests.py
e58c16b5e4fa92f0aab1b600c1952cfbd1c58eaa
[]
no_license
iamashu/Data-Camp-exercise-PythonTrack
564531bcf1dff119949cbb75e1fd63d89cb2779f
c72a4e806494f0e263ced9594597dc8882c2131c
refs/heads/master
2020-07-22T00:23:12.024386
2019-04-12T09:24:42
2019-04-12T09:24:42
null
0
0
null
null
null
null
UTF-8
Python
false
false
20,423
py
#Performing HTTP requests in Python using requests ''' Now that you've got your head and hands around makin g HTTP requests using the urllib package, you're going to figure out how to do the same using the higher-level requests library. You'll once again be pinging DataCamp servers for their "http://www.datacamp.com/te...
[ "beiran@hotmail.com" ]
beiran@hotmail.com
071cd8751ab4d3c34048353a7eaa7e15171d75b1
44064ed79f173ddca96174913910c1610992b7cb
/Second_Processing_app/temboo/Library/Facebook/Actions/Fitness/Walks/UpdateWalk.py
493e93d6dc4ff63b1d782b571214053924414cfc
[]
no_license
dattasaurabh82/Final_thesis
440fb5e29ebc28dd64fe59ecd87f01494ed6d4e5
8edaea62f5987db026adfffb6b52b59b119f6375
refs/heads/master
2021-01-20T22:25:48.999100
2014-10-14T18:58:00
2014-10-14T18:58:00
null
0
0
null
null
null
null
UTF-8
Python
false
false
4,177
py
# -*- coding: utf-8 -*- ############################################################################### # # UpdateWalk # Updates an existing walk action. # # Python version 2.6 # ############################################################################### from temboo.core.choreography import Choreography from temb...
[ "dattasaurabh82@gmail.com" ]
dattasaurabh82@gmail.com
0e5c2f08572df65160cf0040294875735675b65c
ce78a21f86faf0b9783b4cbc1df1fc562e80a2d8
/Public/problem/D1/2070.큰놈,작은놈,같은놈.py
94f01b7703da6229722d2d9bd4b809bf0e98293d
[]
no_license
jongjunpark/TIL
18961c6518f78c8e3d80677f39caf32c727c5beb
28f4d83e28851aac2dee4e77321543f1c811cc83
refs/heads/master
2023-03-17T01:45:51.867005
2022-10-31T10:44:05
2022-10-31T10:44:05
245,943,735
1
0
null
2023-03-05T17:15:39
2020-03-09T04:28:06
Python
UTF-8
Python
false
false
260
py
T = int(input()) for t in range(1,T+1): numbers = list(map(int,input().split())) if numbers[0] > numbers[1]: print("#{} >".format(t)) elif numbers[0] == numbers[1]: print("#{} =".format(t)) else: print("#{} <".format(t))
[ "poiufgin7373@naver.com" ]
poiufgin7373@naver.com
bfd1700ad0198fea64886e0f2aa06687748976c6
4979df3343d7b99a9a826bd1cb946ae79fac260c
/tests/test_runner.py
1ecd57ab36aa321d2148d96008b681ff168fcb63
[ "BSD-3-Clause" ]
permissive
e-calder/enaml
753ff329fb8a2192bddbe7166581ed530fb270be
8f02a3c1a80c0a6930508551c7de1d345095173d
refs/heads/master
2021-07-30T01:18:29.222672
2021-07-27T08:51:50
2021-07-27T08:51:50
206,089,494
0
0
NOASSERTION
2019-09-03T13:52:44
2019-09-03T13:52:44
null
UTF-8
Python
false
false
673
py
import os import sys import pytest from utils import enaml_run from enaml.application import Application, deferred_call from enaml.runner import main @pytest.fixture def sys_argv(): """ Fixture that saves sys.argv and restores it after the test completes """ argv = sys.argv try: yield fi...
[ "marul@laposte.net" ]
marul@laposte.net
2df3f8b7738ac707606738926f6e0f3cb24f0154
4fc1d1097ac124d0dcbb9c1e574efec5c38105d8
/staff/migrations/0001_initial.py
90b968534d808291b151eba7b45cc526e3b91f5a
[]
no_license
lilianwaweru/management
077d3261e1f8bd5d6c84a0b40edd28249410279f
e71bd0b67266ca8715605574e52c81137a66eaeb
refs/heads/master
2020-12-23T14:09:49.630171
2020-03-02T12:34:06
2020-03-02T12:34:06
237,173,611
0
0
null
null
null
null
UTF-8
Python
false
false
1,659
py
# Generated by Django 3.0.3 on 2020-03-02 11:14 from django.db import migrations, models class Migration(migrations.Migration): initial = True dependencies = [ ] operations = [ migrations.CreateModel( name='Work', fields=[ ('id', models.AutoField(aut...
[ "lilowesh.lw@gmail.com" ]
lilowesh.lw@gmail.com
e328cc4ddbb881174b91f93521be7d3e5d87ce0a
15b7a9708d6fb6f9ae5ac55830f996c629468910
/ch06/Ex6_16.py
686602d686c015c0a9a4d929a1940e73303da2f7
[]
no_license
Anancha/Python_Bible
81dfab4ebe7f74c46615403cbd8a37b714b84df1
d9569abf2ad60393289fcec22b81340a19e28601
refs/heads/main
2023-09-03T00:52:58.249183
2021-11-12T07:57:56
2021-11-12T07:57:56
415,224,243
0
0
null
null
null
null
UTF-8
Python
false
false
665
py
shape_tuple1 = ("square","circle","triangle","rectangle","star") shape_tuple2 = ("heart","oval") print("shape_tuple1 = ",shape_tuple1) print("shape_tuple2 = ",shape_tuple2) length = len(shape_tuple1) print("shape_tuple1 = ",length) print("shape_tuple1[0] = ",shape_tuple1[0]) print("shape_tuple1[4] = ",shape_...
[ "noreply@github.com" ]
Anancha.noreply@github.com
9207964a8abeafead8e2e062e1c63f4719aa680e
d7016f69993570a1c55974582cda899ff70907ec
/tools/azure-sdk-tools/devtools_testutils/proxy_testcase.py
0c0fe3dc403f3642e5552ec84ae5ffe10acbc867
[ "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
10,296
py
# ------------------------------------------------------------------------- # Copyright (c) Microsoft Corporation. All rights reserved. # Licensed under the MIT License. See License.txt in the project root for # license information. # -------------------------------------------------------------------------- import log...
[ "noreply@github.com" ]
kurtzeborn.noreply@github.com
3738260cd7566f69bb08576a36a0616524060ba0
ed6625148299e759f39359db9f932dd391b8e86f
/personal_env/lib/python3.8/site-packages/setuptools/wheel.py
e17742f100132d61e0cf7083ef2ce3b873a0ef4a
[ "MIT" ]
permissive
jestinmwilson/personal-website
128c4717b21fa6fff9df8295b1137f32bbe44b55
6e47a7f33ed3b1ca5c1d42c89c5380d22992ed74
refs/heads/main
2023-08-28T11:31:07.916714
2021-10-14T09:41:13
2021-10-14T09:41:13
414,847,553
1
0
null
null
null
null
UTF-8
Python
false
false
8,675
py
"""Wheels support.""" from distutils.util import get_platform from distutils import log import email import itertools import os import posixpath import re import zipfile import pkg_resources import setuptools from pkg_resources import parse_version from setuptools.extern.packaging.tags import sys_tags ...
[ "noreply@github.com" ]
jestinmwilson.noreply@github.com
699eda9c9fa27436875646f3e48e3a68b554030c
94923becbb06260e3cd35dde46c3d1688c9f7feb
/wargames/pwnablekr/rookiss/alloca/win.py
b41641d53ba295cd19ff532a9f6708165421a956
[ "MIT" ]
permissive
infernalheaven/examples
b1826d521b04ea5bf55c7c2b5a6cc620df59cfe9
a3a3bfe2a7b9addea94396f21b73252c3bd56d49
refs/heads/master
2021-01-11T10:58:10.794931
2016-10-05T22:56:39
2016-10-05T22:56:39
null
0
0
null
null
null
null
UTF-8
Python
false
false
3,582
py
#!/usr/bin/env python # -*- coding: utf-8 -*- from pwn import * host = 'pwnable.kr' user = 'alloca' password = 'guest' binary = '/home/%s/%s' % (user,user) chal = os.path.basename(binary) shell = ssh(host=host, user=user, password=password, port=2222) if not os.path.exists(chal): shell.downl...
[ "riggle@google.com" ]
riggle@google.com
95c8d89866be1ab21e245c5c39170e3918f41ece
78c4ccb183a99ebaabcdc3a3a69f029e4aee0f5c
/AlgorithmStudy/백준/무지성 랜덤풀이/9월/9.27/13549 숨바꼭질3.py
e0e130cd47181bea752f97e6b07942782346f798
[]
no_license
cladren123/study
ef2c45bc489fa658dbc9360fb0b0de53250500e5
241326e618f1f3bb1568d588bf6f53b78920587a
refs/heads/master
2023-09-02T02:21:24.560967
2021-11-05T12:20:06
2021-11-05T12:20:06
368,753,950
0
0
null
null
null
null
UTF-8
Python
false
false
1,339
py
""" 문제유형 : 그래프 이론 그래프 탐색 너비 우선 탐색 다익스트라 0-1 너비 우선 탐색 시간초과 발생 범위를 지정해서 범위가 초과하는 것들을 걷어내니 해결할 수 있었다. """ import sys from collections import deque input = sys.stdin.readline # n : 수빈 k : 동생 n, m = map(int, input().split()) # 최대 크기 변수 maxnum = 100001 # x 지점에 도착했을 때 시간을 담을 리스트 timelist = [-1] * maxnum # x 지점을 방문했는지 ...
[ "48821942+cladren123@users.noreply.github.com" ]
48821942+cladren123@users.noreply.github.com
c87601687dd5c7c65e20dba92b239e070261b317
3670f46666214ef5e1ce6765e47b24758f3614a9
/oneflow/python/test/onnx/util.py
d2222f7d6b30cad257fa79d950b134ab33ead31c
[ "Apache-2.0" ]
permissive
ashing-zhang/oneflow
0b8bb478ccd6cabea2dca0864defddab231919bf
70db228a4d361c916f8f8d85e908795b479e5d20
refs/heads/master
2022-12-14T21:13:46.752535
2020-09-07T03:08:52
2020-09-07T03:08:52
293,535,931
1
0
Apache-2.0
2020-09-07T13:28:25
2020-09-07T13:28:24
null
UTF-8
Python
false
false
2,994
py
""" Copyright 2020 The OneFlow 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 applicable law or agr...
[ "noreply@github.com" ]
ashing-zhang.noreply@github.com
a6e84ede469fbe72771be78c555a5612ccf2e137
492d3e666b87eff971628a74fe13facde01e2949
/htmlcov/_python_Django_My Projects_student-portal_Lib_site-packages_ckeditor_uploader_backends___init___py.html.py
798d55fc791e5536bdf76c670715ec7c0d91fbb8
[]
no_license
OmarFateh/Student-Portal
42050da15327aa01944dc79b5e00ca34deb51531
167ffd3a4183529c0cbc5db4ab232026711ea915
refs/heads/master
2023-06-13T01:03:16.475588
2021-07-08T11:09:09
2021-07-08T11:09:09
382,895,837
0
0
null
null
null
null
UTF-8
Python
false
false
10,201
py
XXXXXXXXX XXXXX XXXXXX XXXXXX XXXXX XXXXXXXXXXXXXXXXXXXXXXXXX XXXXXXXXXXXXXXXXXXX XXXXXXXXXXXXXXX XXXXX XXXXXXXXXXXXXXXXXXXXXXXXXXXX XXXXXXXXXXXXXXXXXXXXXXX XX XXXXXXXXXXXXXXX XXX XXXXXXXXXXXXXXXXXXX XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX XXXXXXXXXXX XXXX...
[ "66747309+OmarFateh@users.noreply.github.com" ]
66747309+OmarFateh@users.noreply.github.com
cec1ac5c978a20fda316ddf1475bffc7cc5c0a85
b91578b96ffe63639d3efc70d4737b92091cd0b1
/backend/unpp_api/apps/sanctionslist/serializers.py
3d57ed5f866b73fbe8dde2953857e5e283fedb35
[ "Apache-2.0" ]
permissive
unicef/un-partner-portal
876b6ec394909ed2f72777493623413e9cecbfdc
73afa193a5f6d626928cae0025c72a17f0ef8f61
refs/heads/develop
2023-02-06T21:08:22.037975
2019-05-20T07:35:29
2019-05-20T07:35:29
96,332,233
6
1
Apache-2.0
2023-01-25T23:21:41
2017-07-05T15:07:44
JavaScript
UTF-8
Python
false
false
633
py
from rest_framework import serializers from sanctionslist.models import SanctionedNameMatch class SanctionedNameMatchSerializer(serializers.ModelSerializer): sanctioned_type = serializers.CharField(source='name.item.sanctioned_type', read_only=True) sanctioned_type_display = serializers.CharField(source='na...
[ "maciej.jaworski@tivix.com" ]
maciej.jaworski@tivix.com
699217857bdbf1f709123b843e8bbc301dfeee0a
a859aadea24af173a175c2d01910314487ec6fbf
/common/ops_rnn_v2.py
acd3ae1ce052c94ce4a70df353ea57d9d33f42f4
[ "BSD-3-Clause" ]
permissive
jiahuei/tf-sparse-captioning
cc52cbef5590b47727ea89f265011c9ab58aebad
9d7b8ecdd44fb1541500ca4f920d6c94fd15bad1
refs/heads/main
2023-04-07T05:27:28.395758
2021-04-19T11:27:28
2021-04-19T11:27:28
359,341,665
0
0
null
null
null
null
UTF-8
Python
false
false
34,951
py
#!/usr/bin/env python2 # -*- coding: utf-8 -*- """ Created on Tue Jun 27 16:22:42 2017 @author: jiahuei """ # import numpy as np import logging import tensorflow as tf # from tensorflow.python.framework import ops # from tensorflow.python.ops import rnn_cell_impl from tensorflow.contrib.seq2seq.python.ops.beam_search_...
[ "tanjiahuei@gmail.com" ]
tanjiahuei@gmail.com
b0ad500120f8469b888e170431f17043052f3e7c
d57148c74b79954ff762ce3a02c1b0ef3e79d6a1
/libs/smartmeshsdk-REL-1.3.0.1/libs/VManagerSDK/vmanager/models/net_reset_info.py
f58017d71ca05bfc882e34f73a9d91a3d9409ea4
[ "BSD-3-Clause" ]
permissive
realms-team/solmanager
62fb748b140361cf620b7dd8ff6df755afd42bbe
95fa049df041add5f8d37c053ef560d0e5d06dff
refs/heads/master
2020-04-11T10:00:21.086457
2018-11-20T15:49:27
2018-11-20T15:49:27
40,271,406
0
0
BSD-3-Clause
2018-11-20T15:49:28
2015-08-05T22:15:39
Python
UTF-8
Python
false
false
3,061
py
# coding: utf-8 """ Copyright 2015 SmartBear Software 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...
[ "twatteyne@gmail.com" ]
twatteyne@gmail.com
9c50ac850f1e9d03b9356f0e58aa62b4a72ac2d5
be61a9f30274514857ea34297719157f1e5b8447
/fhir/resources/DSTU2/tests/test_provenance.py
7ef6baef182c10f5c8210085602e62a429fe450a
[ "BSD-3-Clause" ]
permissive
jwygoda/fhir.resources
ceff3a620100d2e875136b86d3e82816c0e60a33
5053565570d1ca992d9971d20db813c53fd350b9
refs/heads/master
2021-02-05T02:59:17.436485
2019-07-18T10:57:33
2019-07-18T10:57:33
null
0
0
null
null
null
null
UTF-8
Python
false
false
5,361
py
#!/usr/bin/env python # -*- coding: utf-8 -*- # # Generated from FHIR 1.0.2.7202 on 2019-05-14. # 2019, SMART Health IT. import os import io import unittest import json from . import provenance from .fhirdate import FHIRDate class ProvenanceTests(unittest.TestCase): def instantiate_from(self, filename): ...
[ "connect2nazrul@gmail.com" ]
connect2nazrul@gmail.com
060cab4de8f90448bb3a7351dec20cafcc81a448
3b593b412c663a34784b1f60ad07cd2ee6ef87d1
/month01/python base/day04/exercise05.py
37e1bf28579cef5876ac0302e9c634075a9418dc
[]
no_license
ShijieLiu-PR/Python_Learning
88694bd44aeed4f8b022202c1065342bd17c26d2
ed01cc0956120ea287c51667604db97ff563c829
refs/heads/master
2023-05-22T16:35:24.252313
2021-06-16T10:56:21
2021-06-16T10:56:21
337,445,284
0
0
null
null
null
null
UTF-8
Python
false
false
323
py
# 练习5:在控制台中输入一个整数,根据整数打印一个正方形。如下: """ **** * * * * **** """ size = int(input("Please input an int:")) for item in range(size): if item == 0 or item == size - 1: print("*" * size) else: print("*" + " " * (size - 2) + "*")
[ "shijie_liu@outlook.com" ]
shijie_liu@outlook.com
3ca4847d2fcea8e14b515ef04ca57fdbab37f57c
4f770819f1b9ce66c847873f02d65a7250d3c0b9
/myapp/test.py
ffb04a90d437b452a9827535e387313d97b522c9
[]
no_license
alexaugusto23/Moscow_Ring_Road_Coordinates
58ec6b606679aab34d0941b7c57374071b3821ad
51daf7f88e9b2c02df174a44931c86afc079aeb1
refs/heads/main
2023-08-31T14:26:08.446962
2021-09-19T01:43:21
2021-09-19T01:43:21
405,960,820
0
0
null
null
null
null
UTF-8
Python
false
false
1,427
py
import unittest from app import app import re class TestHomeView(unittest.TestCase): ''' As all 3 test cases do a get home "/" from our application, we define the setUp function. she is executed automatically whenever unittest instantiates the TestHomeView class. The setUp function is simi...
[ "contato.alexaugusto@hotmail.com" ]
contato.alexaugusto@hotmail.com
be1ad681d98b756c3bd0497d05278e59db83c92b
5017db085d3316e7954fa9beb258ab964cc0beb5
/netlookup/network_sets/google.py
6e6626a13ab2d04d3ad71db33ae57441be13b84c
[ "BSD-3-Clause" ]
permissive
hile/netlookup
698e68577096fbb74daa9ba205624ddc49b357e4
1bc00271500d4daa279acc11590b5dcf40a0b85e
refs/heads/main
2023-07-19T20:43:42.855035
2023-07-09T03:02:00
2023-07-09T03:02:00
191,030,505
0
0
NOASSERTION
2023-02-11T02:23:41
2019-06-09T16:36:59
Python
UTF-8
Python
false
false
3,324
py
# # Copyright (C) 2020-2023 by Ilkka Tuohela <hile@iki.fi> # # SPDX-License-Identifier: BSD-3-Clause # """ Google services address prefix set """ import re from datetime import datetime from operator import attrgetter from typing import Optional from dns import resolver from ..exceptions import NetworkError from .ba...
[ "hile@iki.fi" ]
hile@iki.fi
1c9ad65b85f7f793307ac30b98a6775a9dee079b
53fab060fa262e5d5026e0807d93c75fb81e67b9
/backup/user_173/ch20_2020_03_04_20_04_41_273583.py
24e06e78098124022a59a5bfb6d4b88ca932758a
[]
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
188
py
distancia = float(input('Escreva a distância que você quer percorrer em km')) if distancia <= 200: valor = 0.5*distancia else: valor = 0.45*distancia + 100 print (distancia)
[ "you@example.com" ]
you@example.com
b6c02ef994d8aeabf68bfdecae107c5fc0bc404c
5fdcb39eaa9d1f44e2ba0130bc0d6ece3f5ff354
/code/cheshire3/web/srwHandler.py
7ea429dc225a21f7918e3b0a4d832d549d429102
[]
no_license
Cheshire-Grampa/cheshire3
0a653d6372497290d938e098b6acf8366348133f
616ab36cd8442cd5f4712a9fccf65ca7ae9f692c
refs/heads/master
2020-12-25T07:26:16.366754
2012-06-06T09:52:53
2012-06-06T10:32:17
null
0
0
null
null
null
null
UTF-8
Python
false
false
16,168
py
# Handlers for SRW Operations # Version: 1.1 # Author: Rob Sanderson (azaroth@liv.ac.uk) # John Harrison (john.harrison@liv.ac.uk) # # Version History: # 08/10/2007 - JH - Automatic insertion of database metadata into explain response # 06/12/2007 - JH - Some extension handling fixes # import os, sys, re i...
[ "info@cheshire3.org" ]
info@cheshire3.org
3a7381f58e016c17acdda37ca348942621b67a30
ca7aa979e7059467e158830b76673f5b77a0f5a3
/Python_codes/p02269/s429567531.py
b6858b987c9d3f9e958f07c18273052b8af703cd
[]
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
352
py
def insert(S, string): S.add(string) def find(S, string): if string in S: print 'yes' else: print 'no' n = input() S = set() for i in range(n): tmp1, tmp2 = map(str, raw_input().split()) if tmp1 == 'insert': insert(S, tmp2) elif tmp1 == 'find': find(S, tmp2) ...
[ "66529651+Aastha2104@users.noreply.github.com" ]
66529651+Aastha2104@users.noreply.github.com
ef505cea73e5c3037f00f3f90d9413b53a1b61a9
f5d43e47e375d6d337b919b8eb7f3393e4687864
/lpthw/31-40/ex40_test.py
989e12ee9cc1788d320fcf11b770a64ba098454b
[]
no_license
Cadols/LearnPython
4a2c202b30a1d877ec75e0ec45b03f9f1c2bc52a
2ab5cefe1f7e2c0393489e3d1d4d0c88557c2ebb
refs/heads/master
2021-01-12T09:49:48.335014
2019-05-24T06:53:42
2019-05-24T06:53:42
76,265,981
1
1
null
null
null
null
UTF-8
Python
false
false
1,081
py
#!/usr/bin/env python3 # -*- coding: utf-8 -*- class Song(object): def __init__(self, lyrics): self.lyrics = lyrics def sing_me_a_song(self): for line in self.lyrics: print(line) twinkle_twinkle_little_star = Song(["Twinkle twinkle little star", ...
[ "wangwei150@gmail.com" ]
wangwei150@gmail.com
39420f4dd8ab7e282152b8a385260ae3dba14513
a5c4e1ab36972c0bbc2526612a9ade95768b32b1
/ailtdou/main/views.py
0b1bc567a56e9b5a702bf5eee1b8e4cb4008b087
[]
no_license
tonyseek/ailtdou
5587e76e3c34b3533c73d2acded5b8134bbd8ad3
435cad7fd127a6fc7974b1413ec0299ca2dd359d
refs/heads/master
2021-01-23T00:14:55.509037
2018-10-13T12:46:27
2018-10-13T12:46:27
19,821,141
0
0
null
2018-08-14T07:14:38
2014-05-15T13:54:50
Python
UTF-8
Python
false
false
286
py
from flask import Blueprint, render_template from flask_login import current_user bp = Blueprint('main', __name__) @bp.route('/') def home(): if current_user.is_anonymous(): return render_template('login.html') return render_template('user.html', user=current_user)
[ "tonyseek@gmail.com" ]
tonyseek@gmail.com
c6443e9e4d16553be2ab62035dacb3504dc0b0e7
94ca446c0f17d640f45941fa7c83530ef2fbc099
/wrs-remote-clients-2.0.2/python-openstackclient-3.12.0/build/lib/openstackclient/network/v2/setting.py
d404325e8ea16391d3a58e77a79b68bf48806a91
[ "LicenseRef-scancode-unknown-license-reference", "Apache-2.0" ]
permissive
rmoorewrs/tic-windows-remote-clients
c1c2b8924e90ffd2951571bc098ec9873ffd3988
ae16ee78a720852304d79f8b86dfe44e920cc72d
refs/heads/master
2023-05-25T13:55:55.603100
2019-05-31T20:59:28
2019-05-31T20:59:28
189,649,925
0
0
NOASSERTION
2023-05-22T20:43:59
2019-05-31T19:46:28
Python
UTF-8
Python
false
false
6,210
py
# Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain # a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distrib...
[ "rmoorewrs@gmail.com" ]
rmoorewrs@gmail.com
4dcda6e3044084bdf2aa6af4f9ccad28c448e2bb
2455062787d67535da8be051ac5e361a097cf66f
/Producers/BSUB/TrigProd_amumu_a5_dR5/trigger_amumu_producer_cfg_TrigProd_amumu_a5_dR5_691.py
bd6632802d1ac740f25ab863bcfb3124a43b8893
[]
no_license
kmtos/BBA-RecoLevel
6e153c08d5ef579a42800f6c11995ee55eb54846
367adaa745fbdb43e875e5ce837c613d288738ab
refs/heads/master
2021-01-10T08:33:45.509687
2015-12-04T09:20:14
2015-12-04T09:20:14
43,355,189
0
0
null
null
null
null
UTF-8
Python
false
false
3,360
py
import FWCore.ParameterSet.Config as cms process = cms.Process("PAT") #process.load("BBA/Analyzer/bbaanalyzer_cfi") process.load("FWCore.MessageLogger.MessageLogger_cfi") process.load('Configuration.EventContent.EventContent_cff') process.load("Configuration.Geometry.GeometryRecoDB_cff") process.load("Configuration.St...
[ "kmtos@ucdavis.edu" ]
kmtos@ucdavis.edu
108663704ef930b8ae22d2ab13c3c6ab61c0cef9
487ce91881032c1de16e35ed8bc187d6034205f7
/codes/CodeJamCrawler/16_0_3/Sean223/verify.py
9ca777f0f93c2d4c309547e0376387d1fabe7ab7
[]
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
1,426
py
IN_FILE = "large.txt" with open(IN_FILE, 'r') as fileIn: fileLines = fileIn.readlines() it = iter(fileLines) assert(next(it).strip() == 'Case #1:') jamcoins_found = [] for i in range(1, 501): message = "Jamcoin on line " + str(i) line = next(it).strip().split() if not len(line) == 10:...
[ "[dhuo@tcd.ie]" ]
[dhuo@tcd.ie]
0bc0c90132733dee274a4c250af2557a3807546b
5574620c834f96d4baf50d6aa349242dae7c17af
/172.factorial-trailing-zeroes.py
37c2400fe3fdb6a94b967b7880dcca016d4f563b
[]
no_license
Ming-H/leetcode
52dceba5f9a605afbdaa65e286a37205873e21bb
057cee4b830603ac12976ed7d5cea8d06a9b46a0
refs/heads/main
2023-09-02T21:30:48.796395
2023-09-01T01:59:48
2023-09-01T01:59:48
489,290,172
1
0
null
null
null
null
UTF-8
Python
false
false
274
py
# # @lc app=leetcode id=172 lang=python3 # # [172] Factorial Trailing Zeroes # # @lc code=start class Solution: def trailingZeroes(self, n: int) -> int: r = 0 while n > 0: n //= 5 r += n return r # @lc code=end
[ "1518246548@qq.com" ]
1518246548@qq.com
1310ca612a18d36486b9f755bcbff9756da40ecc
711756b796d68035dc6a39060515200d1d37a274
/output_cog/optimized_34363.py
4adad9b5db9a1bcae4005a3b8c7a2a480b3303be
[]
no_license
batxes/exocyst_scripts
8b109c279c93dd68c1d55ed64ad3cca93e3c95ca
a6c487d5053b9b67db22c59865e4ef2417e53030
refs/heads/master
2020-06-16T20:16:24.840725
2016-11-30T16:23:16
2016-11-30T16:23:16
75,075,164
0
0
null
null
null
null
UTF-8
Python
false
false
10,839
py
import _surface import chimera try: import chimera.runCommand except: pass from VolumePath import markerset as ms try: from VolumePath import Marker_Set, Link new_marker_set=Marker_Set except: from VolumePath import volume_path_dialog d= volume_path_dialog(True) new_marker_set= d.new_marker_set marker_set...
[ "batxes@gmail.com" ]
batxes@gmail.com
332a6d9bcc8114a3fcffb46b452697f41f952e04
eee51854656ede694c121c7102cd2e737ea7e702
/demo/api.py
7746564cca4056932d685fcbb13988dcbb3db79d
[]
no_license
degerli/betahealth-wagtail-demo
cb99f26219fede384a44e3af5e597de40c1ab1e2
1cb16c2fdc877778e645bdb11ba69f6418900e26
refs/heads/master
2020-04-23T04:03:47.038341
2016-10-05T09:05:40
2016-10-05T09:05:40
null
0
0
null
null
null
null
UTF-8
Python
false
false
2,187
py
from django.core.urlresolvers import reverse from rest_framework import serializers from wagtail.api.v2.endpoints import PagesAPIEndpoint as WagtailPagesAPIEndpoint from wagtail.api.v2.router import WagtailAPIRouter from wagtail.wagtailimages.api.v2.endpoints import ImagesAPIEndpoint as WagtailImagesAPIEndpoint from ...
[ "marcofucci@gmail.com" ]
marcofucci@gmail.com
c30d008b2918bfa5283316eabf5fe2b6a9f523b6
d857b65117378d9f35eb062bd1d2ddbb87f11709
/shows_app/urls.py
53313358ebf3b9d517d23b37c79a6065b06303d1
[]
no_license
JesusGarcia86/shows_proj
e2bd646df88e8380a6bbebebc073cd8f59520be7
3e6ad462d603d78241b259a6ff713e1f08b6201e
refs/heads/main
2023-03-21T22:07:34.029715
2021-03-15T16:27:41
2021-03-15T16:27:41
348,043,794
0
0
null
null
null
null
UTF-8
Python
false
false
380
py
from django.urls import path from . import views urlpatterns = [ path('', views.index), path('shows/', views.index), path('new', views.new), path('shows/create', views.create), path('<int:show_id>/edit', views.edit), path('shows/<int:show_id>/update', views.update), path('<int:show_id>', vi...
[ "the_sampritas@hotmail.com" ]
the_sampritas@hotmail.com
925d1fac6a3242c64f799762acf35762a7142c23
117442c662cad35375630a8a800d48f8ba53888b
/facedancer/future/configuration.py
77a35088ccb06c6fe79ae8e8ae75c099dce011b6
[ "BSD-3-Clause" ]
permissive
walidbarakat/Facedancer
b9a09322541dd320cadefd063888030c9eb4192e
28d3a900179e9dd280e007026a68fbdf97e4e35a
refs/heads/master
2023-03-06T14:05:37.479626
2021-02-18T02:23:53
2021-02-18T02:23:53
null
0
0
null
null
null
null
UTF-8
Python
false
false
7,304
py
# # This file is part of FaceDancer. # """ Functionality for describing USB device configurations. """ from dataclasses import dataclass, field from typing import Iterable from .types import USBDirection from .magic import instantiate_subordinates, AutoInstantiable from .request import USBReque...
[ "k@ktemkin.com" ]
k@ktemkin.com
c4c54f309f31cc65060d382bd56bad97f492b112
cefd6c17774b5c94240d57adccef57d9bba4a2e9
/WebKit/Tools/Scripts/webkitpy/common/watchlist/changedlinepattern.py
61fac9a7694e273919f37463b7d80639f9f0baa3
[ "BSL-1.0" ]
permissive
adzhou/oragle
9c054c25b24ff0a65cb9639bafd02aac2bcdce8b
5442d418b87d0da161429ffa5cb83777e9b38e4d
refs/heads/master
2022-11-01T05:04:59.368831
2014-03-12T15:50:08
2014-03-12T15:50:08
17,238,063
0
1
BSL-1.0
2022-10-18T04:23:53
2014-02-27T05:39:44
C++
UTF-8
Python
false
false
1,964
py
# Copyright (C) 2011 Google Inc. 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 conditions and the ...
[ "adzhou@hp.com" ]
adzhou@hp.com
7b2de2370af01dcc4b23681e70b09bab35acf286
3c5c4c4fb296d08e9e984c4a60ae4fa147293e9a
/ceres/__init__.py
b359ff8e73e6e5bd29908753a42b11e1a2d10ffa
[ "Apache-2.0" ]
permissive
signingup/ceres-combineharvester
a8874ab11145e7ba2223b85483b96dea01054ad0
aad918a03a4a522e0e2f3bac104d19d693d6bf79
refs/heads/main
2023-07-25T04:11:13.765471
2021-09-09T14:59:48
2021-09-09T14:59:48
404,918,382
1
0
Apache-2.0
2021-09-10T01:22:20
2021-09-10T01:22:20
null
UTF-8
Python
false
false
313
py
from pkg_resources import DistributionNotFound, get_distribution, resource_filename try: __version__ = get_distribution("ceres-blockchain").version except DistributionNotFound: # package is not installed __version__ = "unknown" PYINSTALLER_SPEC_PATH = resource_filename("ceres", "pyinstaller.spec")
[ "hulatang_eric@163.com" ]
hulatang_eric@163.com
342ff27bcaab154241f7bca43ea75b8295f3c8d7
46ae8264edb9098c9875d2a0a508bc071201ec8b
/res/scripts/client/gui/shared/fortificationsevents_dispatcher.py
9b512b64b33ac34107ebb1d85b90c156e30e520c
[]
no_license
Difrex/wotsdk
1fc6156e07e3a5302e6f78eafdea9bec4c897cfb
510a34c67b8f4c02168a9830d23f5b00068d155b
refs/heads/master
2021-01-01T19:12:03.592888
2016-10-08T12:06:04
2016-10-08T12:06:04
null
0
0
null
null
null
null
UTF-8
Python
false
false
684
py
# Embedded file name: scripts/client/gui/shared/fortifications/events_dispatcher.py from gui.shared import g_eventBus, events, EVENT_BUS_SCOPE from gui.Scaleform.genConsts.FORTIFICATION_ALIASES import FORTIFICATION_ALIASES def showFortBattleRoomWindow(): g_eventBus.handleEvent(events.LoadViewEvent(FORTIFICATION_AL...
[ "m4rtijn@gmail.com" ]
m4rtijn@gmail.com
988152e7a537f6c8badc344c3f79050dc23010ce
8395ffb48750359d1bd51a201a41c7fe124998bc
/apc2015/hw4_submissions/miles_aubert/hw4.py
669ce9e1021c1d21b63fd24460920040e18eb4a3
[]
no_license
duke-iml/ece490-s2016
ab6c3d3fb159a28a9c38487cdb1ad3993008b854
f9cc992fbaadedc8a69678ba39f0c9d108e6910d
refs/heads/master
2020-04-12T09:03:56.601000
2016-11-29T21:36:48
2016-11-29T21:36:48
49,226,568
2
6
null
2016-11-29T21:36:49
2016-01-07T19:42:34
Python
UTF-8
Python
false
false
40,546
py
#!/usr/bin/python from klampt import * from klampt.glprogram import * from klampt import vectorops,so3,se3,gldraw,ik,loader,robotcollide from klampt.robotsim import Geometry3D,SimBody from baxter import * from hw4_planner import * import apc import os import math import random from threading import Thread,...
[ "hauser.kris@gmail.com" ]
hauser.kris@gmail.com
a1b36a3d3e2be1c2571e3bb379ed9f067af445c8
d93159d0784fc489a5066d3ee592e6c9563b228b
/PhysicsTools/PatAlgos/python/recoLayer0/jetCorrections_cff.py
6370ee93dd1381a7b0af0826f92278a56fb92a94
[]
permissive
simonecid/cmssw
86396e31d41a003a179690f8c322e82e250e33b2
2559fdc9545b2c7e337f5113b231025106dd22ab
refs/heads/CAallInOne_81X
2021-08-15T23:25:02.901905
2016-09-13T08:10:20
2016-09-13T08:53:42
176,462,898
0
1
Apache-2.0
2019-03-19T08:30:28
2019-03-19T08:30:24
null
UTF-8
Python
false
false
263
py
import FWCore.ParameterSet.Config as cms from PhysicsTools.PatAlgos.recoLayer0.jetCorrFactors_cfi import * from JetMETCorrections.Configuration.JetCorrectionServicesAllAlgos_cff import * ## for scheduled mode patJetCorrections = cms.Sequence(patJetCorrFactors)
[ "giulio.eulisse@gmail.com" ]
giulio.eulisse@gmail.com
7cf670a85f7dcf1fbf7f23cbce0cc5c89ae2b7dd
9d7be99cdac8b809f51c46a943ad5feb14548160
/listings2/data_scraper_listings2.py
909ab9862d01e75ef3f07bebd7a3a3c06de53360
[]
no_license
CateGitau/DSI_trick_challenge
6c154b417a049ab0012edff0521d9e09387787f2
ddafac1f21425cb2992ce717ecbb0776703ea88e
refs/heads/master
2022-12-24T17:12:55.392276
2020-09-25T12:28:40
2020-09-25T12:28:40
297,908,859
0
0
null
null
null
null
UTF-8
Python
false
false
3,659
py
import requests as rq import bs4 as bs import traceback from selenium import webdriver from selenium.webdriver.support.ui import WebDriverWait from selenium.webdriver.common.by import By from selenium.webdriver.support import expected_conditions as EC from selenium.common.exceptions import TimeoutException from seleniu...
[ "catherinegitau94@gmail.com" ]
catherinegitau94@gmail.com
015a80c9d53750fc086c6bd24e6383fb96225859
49d33002fbef0be0bc7dcee807865c97130d64fe
/src/oscar/apps/voucher/__init__.py
1eba2925b030cd2958cc65cca10ca5198fb4ad2a
[ "BSD-3-Clause", "LicenseRef-scancode-unknown-license-reference", "BSD-2-Clause" ]
permissive
specialunderwear/django-oscar
8e9e48254ca61bcb4a9fb4642c823ba72b3ca630
fc5d2601583c83f7361437eb3c2d6dc132e4d574
refs/heads/master
2023-07-21T03:19:13.243668
2023-03-07T09:14:41
2023-03-07T09:14:41
114,625,742
0
4
BSD-3-Clause
2023-07-06T10:12:26
2017-12-18T10:08:46
Python
UTF-8
Python
false
false
63
py
default_app_config = 'oscar.apps.voucher.config.VoucherConfig'
[ "m@maikhoepfel.de" ]
m@maikhoepfel.de
6b2421764e5d39016f0e51d1a1ad0d4d9f0e6e10
e27333261b8e579564016c71d2061cc33972a8b8
/.history/ScrapeArticleTitle_20210803181904.py
01c3cfb222879a03f49b8531a28bb390ba6afeaa
[]
no_license
Dustyik/NewsTweet_InformationRetrieval
882e63dd20bc9101cbf48afa6c3302febf1989b1
d9a6d92b51c288f5bcd21ea1cc54772910fa58f7
refs/heads/master
2023-07-01T09:12:53.215563
2021-08-12T08:28:33
2021-08-12T08:28:33
382,780,359
0
0
null
null
null
null
UTF-8
Python
false
false
1,762
py
import pandas as pd import json import ast import os from nltk.tokenize import word_tokenize from IPython.display import display def get_article_titles_from_json(): filename = r"D:\Desktop\IR_term_8\sample-1M.jsonl" #file is too huge with open(filename) as json_file: data = json_file.readlines() ...
[ "chiayik_tan@mymail.sutd.edu.sg" ]
chiayik_tan@mymail.sutd.edu.sg
5a12bfa5ef76874a0470b4d9ee429a9145413096
3712a929d1124f514ea7af1ac0d4a1de03bb6773
/开班笔记/python网络编程及MySQL部分/day32/code/clock.py
23b6fa79cbd36db567930d651006699c63e168e4
[]
no_license
jiyabing/learning
abd82aa3fd37310b4a98b11ea802c5b0e37b7ad9
6059006b0f86aee9a74cfc116d2284eb44173f41
refs/heads/master
2020-04-02T20:47:33.025331
2018-10-26T05:46:10
2018-10-26T05:46:10
154,779,387
0
0
null
null
null
null
UTF-8
Python
false
false
522
py
from multiprocessing import Process import time class ClockProcess(Process): def __init__(self,value): self.value = value #调用基类初始化方法 Process.__init__(self) #super().__init__(self) #在自定义的进程类中,重写父类的这个方法 def run(self): n = 5 while n > 0: print('The time is {}'.format(time.ctime())) time.sleep(self....
[ "yabing_ji@163.com" ]
yabing_ji@163.com
ca5c998f70de4c52660ed2f7cb58a11893b49e7d
2cc3aed1b5dfb91e3df165144d95c01a495bd54b
/581-Shortest-Unsorted-Continuous-Subarray-sort.py
30476a3fe00dd27aa9b3f815f4590fb84f2498fa
[]
no_license
listenviolet/leetcode
f38e996148cb5d4be8f08286daac16243b3c30e4
0c1efcbfd35e5ef036ec1ccd0c014cd7baf2ed2b
refs/heads/master
2020-05-01T07:35:23.462429
2019-12-11T12:44:32
2019-12-11T12:44:32
177,354,773
0
0
null
null
null
null
UTF-8
Python
false
false
1,722
py
class Solution: def findUnsortedSubarray(self, nums): """ :type nums: List[int] :rtype: int """ copy = [] for i in range(len(nums)): copy.append(nums[i]) copy.sort() start = len(nums) end = 0 for i in range(len(nums)): ...
[ "listenviolet@gmail.com" ]
listenviolet@gmail.com
7a3938b589e748860c0fad0c8dd3a50430ef40b9
074afd26d00bb742b03c12891b057ab263e640bf
/codeforces/1451A.py
6eac98a8a0739915d4a2d7cff440dedefa842769
[]
no_license
IsmailTitas1815/Data-Structure
7a898800b1e53c778b1f2f11b0df259e52c20140
fece8dd97d3e162e39fc31d5f3498a6dac49b0f0
refs/heads/master
2023-02-05T10:39:49.349484
2020-12-21T13:37:22
2020-12-21T13:37:22
296,343,627
0
0
null
null
null
null
UTF-8
Python
false
false
268
py
for i in range(int(input())): n = int(input()) if n<4: if n==1: print(0) elif n==2: print(1) elif n==3: print(2) else: if n%2==0: print(2) else: print(3)
[ "titas.sarker1234@gmail.com" ]
titas.sarker1234@gmail.com
056813a96995c2c95a58dbd3f2d02480808d3964
37c3c6fd1b05b6cf0c5f5ab89120562d7a8a40f8
/p36.py
86f55562115da41bd8012f1870549b9f265cbd58
[]
no_license
kaviraj333/python
e4b480adfcbec383c1228e07426833b9c02f4296
7110b6e153c4ef4afe7ade8ce20104b26ea4cc8f
refs/heads/master
2020-05-22T23:17:48.540550
2019-04-09T05:04:31
2019-04-09T05:04:31
null
0
0
null
null
null
null
UTF-8
Python
false
false
201
py
amu=int(raw_input()) arr=list(map(int,raw_input().split())) r=[] for i in arr: r.append(i) b=sum(r) if(sum(r)==22): print("4") elif(r[1]==3): print("0") else: m=min(r) print(m)
[ "noreply@github.com" ]
kaviraj333.noreply@github.com
9dfd7670fe6d2074e93e051ee1d5617c0a558db3
6223dc2e5de7921696cb34fb62142fd4a4efe361
/.metadata/.plugins/org.eclipse.core.resources/.history/2/60c520da1a6b00141928c597445b4e35
647638267cb95a600b934baacecbaa24743a5a04
[]
no_license
Mushirahmed/python_workspace
5ef477b2688e8c25b1372f546752501ee53d93e5
46e2ed783b17450aba29e4e2df7b656522b2b03b
refs/heads/master
2021-03-12T19:24:50.598982
2015-05-25T10:23:54
2015-05-25T10:23:54
24,671,376
0
1
null
2015-02-06T09:27:40
2014-10-01T08:40:33
Python
UTF-8
Python
false
false
5,280
#!/usr/bin/env python # # Copyright 2014 <+YOU OR YOUR COMPANY+>. # # This 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, or (at your option) # any later version. # # This software is dis...
[ "imushir@gmail.com" ]
imushir@gmail.com
e61ee9fe6455a99ff23ec3f7d31d68c0f3408062
1dd4ae2d974d65e86538e49f84179b3ec6b8476c
/build/robotiq/robotiq_modbus_tcp/catkin_generated/pkg.develspace.context.pc.py
c68a3cb9bf4efb70df639a4b81765748f3b0d9b8
[]
no_license
tony23545/bulldog_ws
e115510d87980c90b308ae881c59d4e6145964c0
d3e03aa230e9366023df383665cf6be928d68c8d
refs/heads/master
2022-11-30T06:21:04.073397
2019-07-08T07:33:52
2019-07-08T07:33:52
176,073,396
5
0
null
2022-11-21T21:13:17
2019-03-17T08:11:32
Makefile
UTF-8
Python
false
false
389
py
# generated from catkin/cmake/template/pkg.context.pc.in CATKIN_PACKAGE_PREFIX = "" PROJECT_PKG_CONFIG_INCLUDE_DIRS = "".split(';') if "" != "" else [] PROJECT_CATKIN_DEPENDS = "rospy".replace(';', ' ') PKG_CONFIG_LIBRARIES_WITH_PREFIX = "".split(';') if "" != "" else [] PROJECT_NAME = "robotiq_modbus_tcp" PROJECT_SPAC...
[ "csj15thu@gmail.com" ]
csj15thu@gmail.com
74f18e356d9fe201db24ff1b68518f244b65d841
c85a6d674679780ee510b5c8c3dbcbdecc859f64
/test/test_group.py
712c217d06209ae2dd8bfe1aca97dc90f5576fcd
[]
no_license
cbrowet-axway/APIM_sdk
d4f4a124e86a7b2e65d0ef07b54c68e95de68337
4f82df67ebe3dd6eae645bab8f86e72c0347ee24
refs/heads/master
2020-05-25T13:22:35.802350
2020-04-16T09:25:21
2020-04-16T09:25:21
187,820,389
0
0
null
null
null
null
UTF-8
Python
false
false
894
py
# coding: utf-8 """ API Manager API v1.3 No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) # noqa: E501 OpenAPI spec version: 1.3.0 Contact: support@axway.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ from __future_...
[ "cbro@semperpax.com" ]
cbro@semperpax.com
4acd426428bf36b3e05b49f55188a9d1fb157d9d
eccda8bebcf343c6c2742980a604905135485b69
/library/f5bigip_ltm_persistence_ssl.py
f4700fcb09e98962ecc1758d5f6d19e2c719c089
[ "Apache-2.0" ]
permissive
erjac77/ansible-module-f5bigip
5c920dc239098d6d3a8311da3ccb9562428a8362
96af6d5dc77d8ccbe18cb4fdc916625756e5f9dd
refs/heads/master
2021-01-11T08:33:52.304903
2020-02-14T21:42:09
2020-02-14T21:42:09
76,477,286
6
5
Apache-2.0
2018-08-09T20:41:31
2016-12-14T16:30:04
Python
UTF-8
Python
false
false
5,650
py
#!/usr/bin/python # -*- coding: utf-8 -*- # # Copyright 2016-2018, Eric Jacob <erjac77@gmail.com> # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENS...
[ "erjac77@gmail.com" ]
erjac77@gmail.com
fd9fed8d50f3bc3779e3425c4fcf511a9684675a
bd37ff289bcbe24cc6e8ab360569713b9109265d
/logistic_regression1.py
0e62f1edd37807715a19d1310c273bd42e8e156f
[]
no_license
Sanil2108/python-machine-learning
fc035f6ddd586cf3dab9421002d4408c03b0589c
c9dbf8a1f34aa3b80c76986c742e85a9be4b2375
refs/heads/master
2021-01-11T09:00:28.995823
2017-06-18T06:08:33
2017-06-18T06:08:33
77,436,496
0
0
null
null
null
null
UTF-8
Python
false
false
1,948
py
import numpy as np import matplotlib.pyplot as plt all_cost=[] def logistic(z): return 1/(1+np.exp(-z)) def hypothesis(theta, X): return logistic(np.array(np.matrix(X)*np.transpose(np.matrix(theta))))[0][0] # return getY(theta, X) def cost(theta, X, y): m=len(y) total=0 for i ...
[ "sanilkhurana7@gmail.com" ]
sanilkhurana7@gmail.com
b81f580bfd884ff1bbcd428a82ed1131ae1d6e8d
15f321878face2af9317363c5f6de1e5ddd9b749
/solutions_python/Problem_75/717.py
36146101c64393b9b35cbf7d17c8eadde15d28f0
[]
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
1,286
py
def solvecase(L): C = int(L[0]) D = int(L[C+1]) N = int(L[C+D+2]) F = L[1:C+1] X = L[C+2:C+D+2] S = L[-1] Q = [] for s in S: #get spell from list Q.append(s) #send recent spells to check combination if len(Q) > 1: comb = chkc...
[ "miliar1732@gmail.com" ]
miliar1732@gmail.com
97f962ce6c17f6babfe9ca499eb8d54b7c02b803
ba1066b0860a73020eb5c4ee0021f68e3639327c
/Sujet 1/evaluation.py
2a1b30bdb920408611258d3a5c7a66af323e27fe
[]
no_license
Hiestaa/TARP-ODNL
cf51678ce4940d2d84a167317eb70298863cc9b1
3a09054558ddc188f80abfd13ea51e1e99d64d68
refs/heads/master
2021-01-25T07:27:54.313545
2014-01-13T01:14:33
2014-01-13T01:14:33
null
0
0
null
null
null
null
UTF-8
Python
false
false
3,300
py
from machine import Machine from task import Task import Log import time import os.path class Evaluation: def __init__(self, tasks, sequence, id): self.tasks = [] for ti in sequence: self.tasks.append(tasks[ti]) self.nbtasks = len(self.tasks) self.taskcomplete = 0 self.machinelist = None self.time =...
[ "rom1guyot@gmail.com" ]
rom1guyot@gmail.com
6912f2477ca42c2d02095a157bee916ef68c2c49
55f67b4252ae9331b691e62e14cc055a78d23d74
/__init__.py
a686b9d92d3e69235eae229dca1fcc8cd624f1d0
[]
no_license
BlueSCar/ctfd-reddit-oauth
417c0fb67425269e6bae31d4198818d7ab87442c
b4c74fdb2497387c64d481694d3b3cf59e93cbc0
refs/heads/master
2020-12-27T07:23:47.637438
2020-02-03T04:07:17
2020-02-03T04:07:17
237,813,119
0
0
null
null
null
null
UTF-8
Python
false
false
8,309
py
from flask import ( current_app as app, render_template, request, redirect, url_for, session, Blueprint, ) from itsdangerous.exc import BadTimeSignature, SignatureExpired, BadSignature from CTFd.models import db, Users, Teams from CTFd.utils import get_config, get_app_config from CTFd.util...
[ "radjewwj@gmail.com" ]
radjewwj@gmail.com
966d74d56d048ce98e54842ab9549589742118e9
2a839c9f5ad608cbc6cbb7d03a8af482dcbd2956
/cgi-bin/download.py
49a2220a84d8090abe8d27c4ea01117f334c80cc
[]
no_license
scraperdragon/google-docs
0a3653a10a8f4db6c419745e87c45564706405f8
56a6955bfbfa1acc56732356f9d828690985fce3
refs/heads/master
2021-01-19T15:32:38.868177
2015-04-17T10:55:17
2015-04-17T10:55:17
22,986,877
0
1
null
null
null
null
UTF-8
Python
false
false
1,379
py
#!/usr/bin/python import sys import os import requests import json import urlparse def request_with_key(url): return requests.get(url, headers={'Authorization': 'Bearer {key}'.format(key=key)}) def output(msg): print json.dumps(msg) exit(0) DRIVE_FILES_URL = "https://www.googleapis.com/drive/v2/files/{id...
[ "dragon@scraperwiki.com" ]
dragon@scraperwiki.com
248fc2138c8eed4fa4fb235c3584ea31d3447f36
531c47c15b97cbcb263ec86821d7f258c81c0aaf
/sdk/network/azure-mgmt-network/azure/mgmt/network/v2019_04_01/aio/operations_async/_azure_firewalls_operations_async.py
550653dc96d84f6afaa60225d81bea644ed59841
[ "LicenseRef-scancode-generic-cla", "LGPL-2.1-or-later", "MIT" ]
permissive
YijunXieMS/azure-sdk-for-python
be364d3b88204fd3c7d223df23756386ff7a3361
f779de8e53dbec033f98f976284e6d9491fd60b3
refs/heads/master
2021-07-15T18:06:28.748507
2020-09-04T15:48:52
2020-09-04T15:48:52
205,457,088
1
2
MIT
2020-06-16T16:38:15
2019-08-30T21:08:55
Python
UTF-8
Python
false
false
21,582
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" ]
YijunXieMS.noreply@github.com
cecfbc03e21c8156c775e484b68292ec8c14c60f
4dc4345cca9c5f452bf4b87263505ee6b4e960af
/data_types_and_variables/contact_names.py
2e5c1b630d63078c6ee3b04f570a368583e63c4b
[]
no_license
ivan-yosifov88/python_fundamentals
88c7eb5167bbe6692b95051d1551496a84893524
1cfe6d18453362fc26be984f6cb871b9d7dec63d
refs/heads/master
2023-03-29T16:46:55.363035
2021-04-07T10:39:44
2021-04-07T10:39:44
341,604,297
0
0
null
null
null
null
UTF-8
Python
false
false
105
py
first_name = input() last_name = input() delimiter = input() print(f"{first_name}{delimiter}{last_name}")
[ "ivan.yosifov88gmail.com" ]
ivan.yosifov88gmail.com
d0ec0a41b10c508f07c1ac2e6b2c38ba42f77c1e
6e58f95a931db523a3957134ff8cac670d4c20be
/Hunter level/given 2 string checking whether they are same without using built in function.py
0b85adde15d8c4f9f377c2739745e69844479191
[]
no_license
ramyasutraye/python-programming-13
36235f324152d793ca1b2bf087d2a49a62d47787
ea58462208bb4da826b9f1917bdad17c80d055dc
refs/heads/master
2020-04-23T19:30:53.189933
2018-05-02T17:13:30
2018-05-02T17:13:30
null
0
0
null
null
null
null
UTF-8
Python
false
false
232
py
a=str(input()) b=str(input()) l1=len(a) l2=len(b) if(l1==l2): for i in range (l1): if a[i]==b[i]: flag=1 else: flag=0 if (flag==1): print ("yes") else: print ("no") else: print ("no")
[ "noreply@github.com" ]
ramyasutraye.noreply@github.com
9cd8a6e55a4e5085df6657d0a04781d0dee9ed7b
b5a9d42f7ea5e26cd82b3be2b26c324d5da79ba1
/tensorflow/python/training/saver_large_variable_test.py
f19600a79e7b85bc841cc500c0681bd62a3cd3a6
[ "Apache-2.0" ]
permissive
uve/tensorflow
e48cb29f39ed24ee27e81afd1687960682e1fbef
e08079463bf43e5963acc41da1f57e95603f8080
refs/heads/master
2020-11-29T11:30:40.391232
2020-01-11T13:43:10
2020-01-11T13:43:10
230,088,347
0
0
Apache-2.0
2019-12-25T10:49:15
2019-12-25T10:49:14
null
UTF-8
Python
false
false
2,386
py
# Copyright 2015 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...
[ "v-grniki@microsoft.com" ]
v-grniki@microsoft.com
3d6963aee849bab68187c59aa775a10ae4a266f5
84b5ac79cb471cad1d54ed1d2c842dc5581a03f0
/branches/pylint/config/scripts/paella-export-profile
777b1b8eccf1dd0bbd7a397eb1c75fd8f43c9ebf
[]
no_license
BackupTheBerlios/paella-svn
c8fb5ea3ae2a5e4ca6325a0b3623d80368b767f3
d737a5ea4b40f279a1b2742c62bc34bd7df68348
refs/heads/master
2021-01-18T14:07:40.881696
2012-11-13T20:33:08
2012-11-13T20:33:08
40,747,253
0
1
null
null
null
null
UTF-8
Python
false
false
377
#!/usr/bin/env python import os, sys from paella.db import PaellaConnection from paella.db.profile.xmlgen import PaellaProfiles conn = PaellaConnection() args = sys.argv[1:] profile = args[0] profiles = PaellaProfiles(conn) tfile = file(profile + '.xml', 'w') xml = profiles.export_profile(profile) xml.writexml(tfil...
[ "umeboshi@cfc4e7be-4be4-0310-bcfe-fc894edce94f" ]
umeboshi@cfc4e7be-4be4-0310-bcfe-fc894edce94f
bbbfb496488a02ad49a1820a1d8e385052809eb7
3950cb348a4a3ff6627d502dbdf4e576575df2fb
/.venv/Lib/site-packages/apptools/persistence/versioned_unpickler.py
25338c9278da68d60cad7b6d117da78e73aaacdc
[]
no_license
Bdye15/Sample_Programs
a90d288c8f5434f46e1d266f005d01159d8f7927
08218b697db91e55e8e0c49664a0b0cb44b4ab93
refs/heads/main
2023-03-02T04:40:57.737097
2021-01-31T03:03:59
2021-01-31T03:03:59
328,053,795
0
0
null
null
null
null
UTF-8
Python
false
false
7,883
py
# (C) Copyright 2005-2020 Enthought, Inc., Austin, TX # All rights reserved. # # This software is provided without warranty under the terms of the BSD # license included in LICENSE.txt and may be redistributed only under # the conditions described in the aforementioned license. The license # is also available online at...
[ "brady.dye@bison.howard.edu" ]
brady.dye@bison.howard.edu
c3d059c6a856c09a0127d8793a81b5c97ef00863
a3ff8c37e8079412477e203faa2f9526ffb66b7a
/realworld_expt/expt.py
9d07e0d72ad6f148d9a7608d719a22062f2252cf
[]
no_license
greentfrapp/temp
07c83aaf08dd236f6305af877280698612129681
406864f3c7c2f78c23df2c29b640ba9ea622eb27
refs/heads/master
2020-03-29T19:24:48.466126
2019-01-30T15:14:10
2019-01-30T15:14:10
150,261,784
0
0
null
null
null
null
UTF-8
Python
false
false
6,493
py
from __future__ import print_function try: raw_input except: raw_input = input import numpy as np from keras.models import load_model import json import tensorflow as tf from sklearn.ensemble import IsolationForest import matplotlib.pyplot as plt from scipy.stats import chi from absl import flags from absl import ap...
[ "limsweekiat@gmail.com" ]
limsweekiat@gmail.com
012bdc029e1fff6ec79f8cfc06baae7b9eb69a44
ffa8b19913d891a655ff78384847ea9fdc5b0bc9
/test/test_group_id_for_group_user_inclusion.py
9c9b9f0104942ca2565e0a4e5b474fdf91deaf59
[]
no_license
ccalipSR/python_sdk2
b76124f409e26128ff291d2c33612883929c1b5f
d8979ed7434f4ffbc62fc30c90d40d93a327b7d1
refs/heads/master
2020-04-09T17:13:43.581633
2018-12-05T06:53:50
2018-12-05T06:53:50
160,473,001
0
0
null
null
null
null
UTF-8
Python
false
false
2,613
py
# coding: utf-8 """ Looker API 3.0 Reference ### Authorization The Looker API uses Looker **API3** credentials for authorization and access control. Looker admins can create API3 credentials on Looker's **Admin/Users** page. Pass API3 credentials to the **/login** endpoint to obtain a temporary access_token....
[ "ccalip@shoprunner.com" ]
ccalip@shoprunner.com
dec281751603425b8397dc65a0ebbd7b8b50ff7f
a564b8277e33eb27009089ec2e216a4d266a8861
/官方配套代码/15/15.3/Senior/server/CrazyitDict.py
6fc2e469e9af559f3323a86b8dde9a2555759584
[ "Unlicense" ]
permissive
yifengyou/crazy-python
3cb50f462e4ddb921c365e2f0cb3e846e6539383
28099bd5011de6981a7c5412783952cc7601ae0c
refs/heads/main
2023-06-18T18:10:52.691245
2021-07-18T14:21:03
2021-07-18T14:21:03
387,088,939
1
0
null
null
null
null
UTF-8
Python
false
false
1,708
py
# coding: utf-8 ######################################################################### # 网站: <a href="http://www.crazyit.org">疯狂Java联盟</a> # # author yeeku.H.lee kongyeeku@163.com # # # # version 1.0 ...
[ "842056007@qq.com" ]
842056007@qq.com
9e04759332a82f222f84a256886b4bd3e5300456
e42478c0c501a11280a3b0b3266a931215fd5a34
/fxdayu_data/handler/base.py
3e03b7fc7e8eeb0830d6ff42ded200f68ffccb42
[]
no_license
limingbei/fxdayu_data
d36af819ee32e32e541eaf205b0e1c9309ffc89a
2d1541def42b31e839e1027a85cfd08665f731a3
refs/heads/master
2020-03-17T23:16:37.656128
2018-01-05T05:50:41
2018-01-05T05:50:41
134,038,018
1
0
null
2018-05-19T06:55:59
2018-05-19T06:55:59
null
UTF-8
Python
false
false
475
py
# encoding:utf-8 from datetime import datetime from pymongo.mongo_client import database import pandas as pd import pymongo class DataHandler(object): def write(self, *args, **kwargs): pass def read(self, *args, **kwargs): pass def inplace(self, *args, **kwargs): pass def u...
[ "862786917@qq.com" ]
862786917@qq.com
4b6c1a8e10bab33aaa6629088bb2f48ab5184699
d2bb13cec7faf28e3d268312298f03c99806bd8b
/calc_tdc_offset/corelli_calc_tdc_offset_func_loop.py
f73d0e5a8641d0c738264885957499cec67aac99
[]
no_license
rosswhitfield/corelli
06a91c26556ea788f20f973a1018a56e82a8c09a
d9e47107e3272c4457aa0d2e0732fc0446f54279
refs/heads/master
2021-08-07T14:04:24.426151
2021-08-03T19:19:05
2021-08-03T19:19:05
51,771,543
0
0
null
null
null
null
UTF-8
Python
false
false
175
py
from corelli_calc_tdc_offset_func import * for i in range(637,640): #for i in range(2100,2110): filename='CORELLI_'+str(i) results=calc_tdc_offset(filename) print results
[ "whitfieldre@ornl.gov" ]
whitfieldre@ornl.gov
6dfbfef776daceb15fe420c71a7effaf85379b71
2ae0b8d95d439ccfd55ea7933ad4a2994ad0f6c5
/tests/layer_tests/pytorch_tests/test_convnd.py
8b46b2992d2c072c48f4b6aaa35fbb0cdf2c3517
[ "Apache-2.0" ]
permissive
openvinotoolkit/openvino
38ea745a247887a4e14580dbc9fc68005e2149f9
e4bed7a31c9f00d8afbfcabee3f64f55496ae56a
refs/heads/master
2023-08-18T03:47:44.572979
2023-08-17T21:24:59
2023-08-17T21:24:59
153,097,643
3,953
1,492
Apache-2.0
2023-09-14T21:42:24
2018-10-15T10:54:40
C++
UTF-8
Python
false
false
10,460
py
# Copyright (C) 2018-2023 Intel Corporation # SPDX-License-Identifier: Apache-2.0 import pytest from openvino.frontend import FrontEndManager from openvino.frontend.pytorch.ts_decoder import TorchScriptPythonDecoder from pytorch_layer_test_class import PytorchLayerTest class TestConv2D(PytorchLayerTest): def _pr...
[ "noreply@github.com" ]
openvinotoolkit.noreply@github.com
082ae04a5c36262e14182602b53ff46f5aa16fcf
1f08436bab6cd03bcfb257e8e49405cbc265195a
/8_function/Sample/functions_ex3.py
0b362e6fc10e31311f529f7db4e12747dd2833cc
[]
no_license
kuchunbk/PythonBasic
e3ba6322f256d577e37deff09c814c3a374b93b2
a87135d7a98be8830d30acd750d84bcbf777280b
refs/heads/master
2020-03-10T04:28:42.947308
2018-04-17T04:25:51
2018-04-17T04:25:51
129,192,997
0
0
null
null
null
null
UTF-8
Python
false
false
287
py
'''Question: Write a Python function to multiply all the numbers in a list. ''' # Python code: def multiply(numbers): total = 1 for x in numbers: total *= x return total print(multiply((8, 2, 3, -1, 7))) '''Output sample: -336 '''
[ "kuchunbk@gmail.com" ]
kuchunbk@gmail.com
1bee663d7c4ec53d0aae190aa76827e89a0ec34e
b65032c8b76dd2115fd37ae45669a44537ad9df4
/Code/dictionary_words.py
a1ae64f3596492ec99008c0aa807de8a02d24fd2
[]
no_license
reikamoon/CS-1.2-Intro-Data-Structures
a795dc8ca9e52f02cafb9d0782a80632bcc7b206
40b19ad8d93631bbdbd589fa95b0b3a7ec40b53a
refs/heads/master
2022-12-22T00:22:05.667638
2019-12-11T20:45:11
2019-12-11T20:45:11
220,103,212
0
0
null
2022-12-08T06:16:43
2019-11-06T22:35:08
Python
UTF-8
Python
false
false
642
py
from random import randint from os import sys def get_words(): words = list() with open('/usr/share/dict/words', 'r') as f: words = f.read().split('\n') return words def random_words(integer_input, word_list): sentence = str() while integer_input > 0: index = randint(0, len(words) ...
[ "ambrosio.anjelica@gmail.com" ]
ambrosio.anjelica@gmail.com
86ddec28dee78756b57aa131bc70d9140872cc04
08c5ee41d40f9f14a3c6c3cb48515ed8467845e3
/python/kfs_lib.py
6c10b5ce828b790d815030153018533c82f3b5b2
[ "Apache-2.0" ]
permissive
fdgonthier/kas
3f971bda691b8c6db7a6343ea419088d1ac10386
c82a3723085cdd9fec25efca1209e62db09edd72
refs/heads/master
2021-01-17T21:38:07.362287
2013-08-14T20:54:08
2013-08-14T20:54:08
null
0
0
null
null
null
null
UTF-8
Python
false
false
23,451
py
import os, ConfigParser, hashlib, stat, struct, logging # from kpython import kbase from kpg import * from StringIO import StringIO # local import kanp import kcd_client from kcdpg import KCD_KWS_LOGIN_TYPE_KWMO # KFS Constants. KFS_CHUNK_SIZE = 256 * 1024 KFS_FILE = 1 KFS_DIR = 2 KFS_NODE_TYPES = [KFS_FILE, KFS_DIR...
[ "karim.yaghmour@opersys.com" ]
karim.yaghmour@opersys.com
4c59bf2329fd1567caddbca76105185740dad7e5
ca7aa979e7059467e158830b76673f5b77a0f5a3
/Python_codes/p02987/s680269618.py
10f62cd0a31d38e548bfb5cbca9157ed13e880b2
[]
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
254
py
S = input() if S[0] == S[1] and S[2] == S[3] and len(set(S)) == 2: print('Yes') elif S[0] == S[2] and S[1] == S[3] and len(set(S)) == 2: print('Yes') elif S[0] == S[3] and S[1] == S[2] and len(set(S)) == 2: print('Yes') else: print('No')
[ "66529651+Aastha2104@users.noreply.github.com" ]
66529651+Aastha2104@users.noreply.github.com
d4661de7781d69bf47240b7d4a8effe187d22ad9
dea3e6876afe2fdae5b5b4a3f429cfce81b7a0a1
/tests/test_frameSetUtils.py
963a1cbd09e97306839efc9adabd9dc07e8a72a9
[]
no_license
frossie-shadow/afw
741f09cd202a5a9cc3b3943696a389b94a4ee404
a1c44404738dcd73ff400e3bcd176ffe4dd51aab
refs/heads/master
2021-01-19T17:49:51.003432
2017-08-19T03:11:56
2017-08-19T03:11:56
35,149,129
0
0
null
2015-05-06T08:54:49
2015-05-06T08:54:49
null
UTF-8
Python
false
false
3,063
py
from __future__ import absolute_import, division, print_function import unittest from lsst.afw.coord import IcrsCoord from lsst.afw.geom import arcseconds, degrees, makeCdMatrix, Point2D from lsst.afw.geom.detail import makeTanWcsMetadata, readFitsWcs, readLsstSkyWcs import lsst.utils.tests PrintStrippedNames = False...
[ "rowen@uw.edu" ]
rowen@uw.edu
cafd330140fcfb6368723d583251829672ceb42d
a86599993fcca8fbe67ee02106281b5145f8db5e
/Laboratory 04/wdp_ftopt_l04z04pr.py
37e25e77b5d7c40c7a9717f6d5240df8b50d219e
[]
no_license
pauliwu/Introduction-to-programming-in-python
2747572c73a5559c0636523f7b75ae6c4e79d51e
cc4be2030d1a0798054ec2c6b30425fd77d3e117
refs/heads/master
2022-03-31T09:15:33.191768
2020-01-30T22:05:53
2020-01-30T22:05:53
null
0
0
null
null
null
null
UTF-8
Python
false
false
429
py
''' Napisz program, który poprosi użytkownika o podanie promienia koła, a następnie wyświetli informację o jego polu i obwodzie. ''' def kolo(promien): pi = 3.14 obwod = 2*pi*promien pole = pi*promien**2 return pole, obwod def main(): r = float(input("Wprowadz promien kola w cm: ")) p,o = kolo...
[ "58003896+majsylw@users.noreply.github.com" ]
58003896+majsylw@users.noreply.github.com
761115aa3bdc406dc4f4c52ccd593a7e80e5d5c2
c1ad248b8172c63f7756f14cb50f96cf726f90d0
/tensorflow_examples/lite/model_maker/core/utils/ondevice_scann_builder.py
9031bc02d9da8875c3b62beb2465f38818ce479a
[ "Apache-2.0" ]
permissive
slmsshk/examples
846ec816c0c6d095cf49e4054df85a80375f4b7f
cd89a54b9e9577bebd22a9f083526ca8cb2b58b5
refs/heads/master
2022-08-16T19:59:03.695027
2022-08-07T07:30:14
2022-08-07T07:30:14
256,999,865
1
0
Apache-2.0
2020-04-19T12:59:03
2020-04-19T12:59:01
null
UTF-8
Python
false
false
1,856
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...
[ "copybara-worker@google.com" ]
copybara-worker@google.com
4a6b78de21ffdffea8c1583ad2df047b3419aa55
53fab060fa262e5d5026e0807d93c75fb81e67b9
/backup/user_117/ch73_2019_04_04_18_01_16_761758.py
2a91c18fcec24852640d02b74224cf472d03ccae
[]
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
266
py
def remove_vogais(letras): i=0 while i<len(letras): if letras[i]== 'a' or letras[i] == 'e' or letras[i] == 'i' or letras[i] == 'o' or letras[i] == 'u': del letras[i] else: i+=1 return remove_vogais(letras)
[ "you@example.com" ]
you@example.com
ba7639ad6a9c59bd8170920acdd5a7a269c096e7
e5270423abf42482d956548333d4105d684cca31
/trails/feeds/malc0de.py
09d204f3da28e20de8dc18f4ac03427f7557e5e3
[ "MIT" ]
permissive
ana2s007/maltrail
2f5f556d222b6f1ba78affedce97400da125232a
80979e76c33dca58313141a0e4a2626b609c3ebf
refs/heads/master
2021-01-16T22:49:25.319116
2016-01-28T13:04:57
2016-01-28T13:04:57
50,610,789
1
0
null
2016-01-28T20:18:20
2016-01-28T20:18:20
null
UTF-8
Python
false
false
689
py
#!/usr/bin/env python """ Copyright (c) 2014-2016 Miroslav Stampar (@stamparm) See the file 'LICENSE' for copying permission """ from core.common import retrieve_content __url__ = "https://raw.githubusercontent.com/firehol/blocklist-ipsets/master/malc0de.ipset" __check__ = "malc0de" __info__ = "malware distribution"...
[ "miroslav.stampar@gmail.com" ]
miroslav.stampar@gmail.com
1a9fa3e8dcf8c60490f47495a2566b6a1f32a92a
53fab060fa262e5d5026e0807d93c75fb81e67b9
/backup/user_009/ch90_2019_10_02_18_22_03_037134.py
fcae0603fe15fc773b6d8deebd33737ee6754ef6
[]
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
224
py
def segundos_entre(x,y): t1 = datetime.strptime(x, "%H:%M:%S") t2 = datetime.strptime(y, "%H:%M:%S") t2 - t1 a = (t2 - t1).seconds return f'A diferença entre os horários {x} e {y} é: {a} segundos'
[ "you@example.com" ]
you@example.com
871eb6e8ee0778f806cecd0362c54b91bff6028c
d6e90e0326248389768fc9b6aece86b70e16f3e5
/code_examples/gnuradio/module_fmcw/gr-radar/python/qa_FMCW_separate_IQ_cc.py
7933b4c9829cbf1f1334c20a93dcfcf5f7cdd61a
[]
no_license
stwunsch/gsoc-proposal
22d1d8f23b2f6008e59f80c4a51aab50a04b3e85
75d37e8a1e6d16ad0798bf3e7b4ab067d24f9a18
refs/heads/master
2021-01-19T16:57:41.145819
2014-04-14T16:15:08
2014-04-14T16:15:08
17,761,313
1
1
null
null
null
null
UTF-8
Python
false
false
1,891
py
#!/usr/bin/env python # -*- coding: utf-8 -*- # # Copyright 2013 <+YOU OR YOUR COMPANY+>. # # This 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, or (at your option) # any later version. #...
[ "stefan.wunsch@student.kit.edu" ]
stefan.wunsch@student.kit.edu
e0935743f7688c9951a2d83812994aded07c6dba
ce378bf28153d4d30cd53ec8684e8017abd0ac59
/pythonProject/leetcode/Rotate Array.py
abac0295ceee22ace5ca239c758306f05baeca4e
[]
no_license
zzong2006/coding-problems-study
5f006b39264cbe43d11db489ce8b716272329b6e
9b3affbeb2ddfa673c1d879fb865408e34955c5c
refs/heads/master
2023-04-07T12:47:41.646054
2021-04-08T05:02:33
2021-04-08T05:02:33
286,918,250
1
0
null
null
null
null
UTF-8
Python
false
false
696
py
class Solution(object): def rotate(self, nums, k): """ :type nums: List[int] :type k: int :rtype: None Do not return anything, modify nums in-place instead. """ print(nums) n = len(nums) k %= n for i in range(n // 2): nums[i], nums[...
[ "zzong2006@gmail.com" ]
zzong2006@gmail.com
a2c28ec47fbd74a3159ca3a127c49e89addf2c7d
7b55cfc4ffa7678e4c7b8f2312831ebbd549e54f
/proj1/tests/other-tests/MINZ_tests/correct/dictionary.py
3594fcbfb30b0ee6df0cd44083dd7c263c58907c
[]
no_license
czchen1/cs164-projects
0d330efef85421e611a436b165428ba0ddfb3512
a04cafbcaafd32e518227dacf89a6d7837bf9f57
refs/heads/master
2020-03-27T04:03:31.727524
2018-08-23T21:43:46
2018-08-23T21:43:46
145,909,148
0
0
null
null
null
null
UTF-8
Python
false
false
97
py
dict = {'value' : 1, 'abc' : "aba", "ab" : "ababa", "abc" : 2} print(dict["ab"]) #Expect 'ababa'
[ "czchen@mit.edu" ]
czchen@mit.edu