blob_id
stringlengths
40
40
directory_id
stringlengths
40
40
path
stringlengths
3
288
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
684 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
147 values
src_encoding
stringclasses
25 values
language
stringclasses
1 value
is_vendor
bool
2 classes
is_generated
bool
2 classes
length_bytes
int64
128
12.7k
extension
stringclasses
142 values
content
stringlengths
128
8.19k
authors
listlengths
1
1
author_id
stringlengths
1
132
d29b7c4af830c3ce4cb21e03942d300b879e409b
13edd8f1bc3b86fd881f85fbeafe94811392d7fc
/seventh_module/爬虫/5.scrapy/project_09_redisPro/project_09_redisPro/settings.py
8c62d6c1d7ab98319ede7d009306beeb0efb76dc
[]
no_license
ryan-yang-2049/oldboy_python_study
f4c90c9d8aac499e1d810a797ab368217f664bb1
6e1ab7f217d9bf9aa7801266dee7ab4d7a602b9f
refs/heads/master
2022-07-22T23:49:28.520668
2019-06-11T13:26:25
2019-06-11T13:26:25
129,877,980
0
1
null
2022-07-18T17:12:54
2018-04-17T09:12:48
HTML
UTF-8
Python
false
false
3,680
py
# -*- coding: utf-8 -*- # Scrapy settings for project_09_redisPro project # # For simplicity, this file contains only settings considered important or # commonly used. You can find more settings consulting the documentation: # # https://doc.scrapy.org/en/latest/topics/settings.html # https://doc.scrapy.org/en/...
[ "11066986@qq.com" ]
11066986@qq.com
a562123f6939c3763fb4d84f3946b4f8aeda00f0
d84876ff3d2a61cb28eff13b1af173a091aff917
/stock_prediction.py
c65790b23d6c0966f517bdabeaf14767239de1c7
[]
no_license
webclinic017/Stock-Prediction-with-Regression-Models-In-Python
d5f64e066edbe987d775017680d2bcdecea52722
61be482ffa36869f43588cb2f7c005914dedda76
refs/heads/master
2022-02-18T19:05:57.839353
2019-09-07T15:50:29
2019-09-07T15:50:29
null
0
0
null
null
null
null
UTF-8
Python
false
false
7,444
py
# -*- coding: utf-8 -*- """Stock Prediction.ipynb Automatically generated by Colaboratory. Original file is located at https://colab.research.google.com/drive/1n27WLQOmxqT8_Wyd3Nm1xONyeaCTxo6w ##Importing Libraries """ # Commented out IPython magic to ensure Python compatibility. import numpy as np import panda...
[ "noreply@github.com" ]
webclinic017.noreply@github.com
b13966f310e0c8104c5131929d3d6b912977503f
15f321878face2af9317363c5f6de1e5ddd9b749
/solutions_python/Problem_136/1638.py
32faf53928bb6afe2590a89bf55f06931f8625b1
[]
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
3,349
py
# -*- coding: utf-8 -*- """ Solves the 'Cookie Clicker Alpha' Problem Google Code Jam Qualifications 2014 https://code.google.com/codejam/contest/2974486/dashboard#s=p1 Created on Fri Apr 12 1:58:51 2014 @author: Luca """ import numpy as np import sys def get_childern(node,C,F,X): if (node(1)+C)>X...
[ "miliar1732@gmail.com" ]
miliar1732@gmail.com
a238b652ff6bdc3c552b4f99c87bc8bddb5b42a7
321b4ed83b6874eeb512027eaa0b17b0daf3c289
/1423/1423.maximum-points-you-can-obtain-from-cards.785265974.Accepted.leetcode.python3.py
18ad403e19400e3a95826bb18aff46c4284a3bdc
[]
no_license
huangyingw/submissions
7a610613bdb03f1223cdec5f6ccc4391149ca618
bfac1238ecef8b03e54842b852f6fec111abedfa
refs/heads/master
2023-07-25T09:56:46.814504
2023-07-16T07:38:36
2023-07-16T07:38:36
143,352,065
0
1
null
null
null
null
UTF-8
Python
false
false
419
py
class Solution(object): def maxScore(self, cardPoints, k): left = 0 right = len(cardPoints) - k ksum = sum(cardPoints[len(cardPoints) - k:]) result = max(float('-inf'), ksum) while right < len(cardPoints): ksum = ksum - cardPoints[right] + cardPoints[left] ...
[ "huangyingw@gmail.com" ]
huangyingw@gmail.com
423f8464015490054986bbe3c694ad19db6cca2c
a63b49c45f09e0b0abd20ed6ca81b8e30e17f755
/a2c_ppo_acktr/storage.py
147fc1989991982ce00a21c1d57b4fdfaacb63cd
[]
no_license
xxchenxx/MixtureOptimizer
d08b2395208e3efec2dbe730b4f194d509aea106
1c6f8d0848aeb71d49ea129001f3f170612cd4cf
refs/heads/master
2022-12-04T05:24:01.974432
2020-08-22T15:40:34
2020-08-22T15:40:34
null
0
0
null
null
null
null
UTF-8
Python
false
false
7,569
py
import torch from torch.utils.data.sampler import BatchSampler, SubsetRandomSampler from pdb import set_trace as bp def _flatten_helper(T, N, _tensor): return _tensor.view(T * N, *_tensor.size()[2:]) class RolloutStorage(object): def __init__(self, num_steps, obs_shape, action_shape=1, hidden_size=1, num_re...
[ "hfercxx@hotmail.com" ]
hfercxx@hotmail.com
f974791af539b1ba0f63ab6f9457a2bafd3f0b78
58509347cca790fce26884f027425170c5891a17
/bin/train_convert.py
c972a100902ea60af68848b0c99c8381455c69c5
[]
no_license
Hiroshiba/signico_real_to_anime
e22d07ca6531b75b3987ecc309e02bcd405f6f61
0a68b132fc77e24539d7ddc65b3078fd0c7f3858
refs/heads/master
2021-01-19T23:25:37.149611
2018-03-21T17:24:32
2018-03-21T17:32:45
88,979,946
1
0
null
null
null
null
UTF-8
Python
false
false
2,607
py
import argparse import chainer import glob import os import sys ROOT_PATH = os.path.join(os.path.dirname(__file__), "..") sys.path.append(ROOT_PATH) from deep_image_converter.config import Config from deep_image_converter import dataset from deep_image_converter.loss import ConvertModelLossMaker, FacebookConvertModel...
[ "kazuyuki_hiroshiba@dwango.co.jp" ]
kazuyuki_hiroshiba@dwango.co.jp
0c5a649f0b60d66c181ab5f9abc7269f1142b11b
e2c369fc706a6058fe0126e088e8cc4ce48d2654
/src/song/migrations/0011_auto_20190417_2320.py
f7b5aa3bf527350e940aa8e1023e259037afbc15
[]
no_license
kishanpython/SongHub
9ea1381d4add0c8fa036710f79fd9964c991eba7
f86997d2070533ff7649ce3df89eaed66cbda609
refs/heads/master
2020-07-14T18:04:25.036424
2019-08-30T13:11:35
2019-08-30T13:11:35
205,368,723
1
0
null
null
null
null
UTF-8
Python
false
false
397
py
# Generated by Django 2.0 on 2019-04-17 23:20 from django.db import migrations, models class Migration(migrations.Migration): dependencies = [ ('song', '0010_song_file'), ] operations = [ migrations.AlterField( model_name='song', name='file', field=mo...
[ "kishanyadav3223@gmail.com" ]
kishanyadav3223@gmail.com
f83235d5cdc9fd38002e926ce485385bb59a0828
073c929cab2d92e9859010be654eb1ba69b397b1
/src/participants/migrations/0004_alter_participant_polls.py
62b1dd8d33b7130bc663cc9a08e88ff7a171fdf3
[]
no_license
iamgaddiel/voting_system
6e5abe9b6d9da29abc6a94e12157cb308bf2b717
b41ec2a98ed678bedd3b9bdd9d6c8a5c679fcabf
refs/heads/main
2023-06-22T17:29:57.371562
2021-07-22T06:57:47
2021-07-22T06:57:47
null
0
0
null
null
null
null
UTF-8
Python
false
false
511
py
# Generated by Django 3.2.3 on 2021-05-31 04:26 from django.db import migrations, models import django.db.models.deletion class Migration(migrations.Migration): dependencies = [ ('polls', '0001_initial'), ('participants', '0003_participant_polls'), ] operations = [ migrations.Al...
[ "gaddiel@localhost.localdomain" ]
gaddiel@localhost.localdomain
3e6076a9b6fe7e899b8fb311140de2d1133e6bed
9079354291951a1782ec43efaead5876895eece8
/legacy_scripts/setup.py
66b535476ffc0715c1d1c734eccd7a5d32a16277
[]
no_license
luungoc2005/nlp-test
c9a2e0174546221b0e6d2501d9c4dfeca5c6efd0
ed43a4b1bbcd23c3fc39e92d790864c73a5999f3
refs/heads/master
2022-12-08T14:17:07.271865
2019-05-26T16:23:20
2019-05-26T16:23:20
125,201,975
0
0
null
2022-12-07T23:37:52
2018-03-14T11:24:54
Jupyter Notebook
UTF-8
Python
false
false
355
py
from distutils.core import setup from Cython.Build import cythonize # from distutils.extension import Extension import numpy setup( name="Botbot-NLP", ext_modules=cythonize([ # "common/_cutils/*.pyx", "text_classification/fast_text/_cutils/*.pyx" ] , include_path=[ nump...
[ "luungoc2005@gmail.com" ]
luungoc2005@gmail.com
804c4b6e7cbf6961dbb3e5415cedb8a68caa6800
53fab060fa262e5d5026e0807d93c75fb81e67b9
/backup/user_190/ch117_2020_03_31_05_22_20_071855.py
23d4ed7a059bf6e7ba27702c678158f5b49358c9
[]
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
137
py
import math def snell_descartes(n1, n2, o1): x=((math.sin(o1*(math,pi/180)))*n1)/n2 o2=math.sin(x*(math.pi/180)) return (o2)
[ "you@example.com" ]
you@example.com
00829ea419f370c994ad692776728474d096aa13
3d6083f1821950afc06c432066dc763d3eb5db44
/guide/basic/bert_embedder.py
3465da95b238f7028c9271d0bc00953b1d1c82c5
[]
no_license
flyfatty/self-allennlp
f4b3e3f3c36422c0950b0479a22546792c4852cb
4741b2e47037dba1e20053f6877a7bbafedd8047
refs/heads/master
2023-08-24T03:10:13.994216
2021-10-04T08:13:07
2021-10-04T08:13:07
339,996,075
1
0
null
null
null
null
UTF-8
Python
false
false
6,384
py
# @Time : 2020/12/24 1:02 # @Author : LiuBin # @File : bert_embedder.py # @Description : # @Software: PyCharm import torch from allennlp.data import Token, Vocabulary from allennlp.data.fields import ListField, TextField from allennlp.data.token_indexers import ( SingleIdTokenIndexer, TokenCharactersIndexer, ...
[ "28278672@qq.com" ]
28278672@qq.com
248789733a3133a24466895b30e8c35a526f519c
98dbb9cd9523809b4ee0e6b92334fa6a2a6af2a3
/bingads/v13/bulk/entities/labels/__init__.py
053dc1f5f1bb6077ac63645d3921adb4bad7e414
[ "MIT" ]
permissive
BingAds/BingAds-Python-SDK
a2f9b0c099b574a4495d0052218f263af55cdb32
373a586402bf24af7137b7c49321dbc70c859fce
refs/heads/main
2023-07-27T15:31:41.354708
2023-07-10T03:21:03
2023-07-10T03:21:03
31,927,550
105
182
NOASSERTION
2023-09-04T06:51:20
2015-03-09T23:09:01
Python
UTF-8
Python
false
false
140
py
__author__ = 'Bing Ads SDK Team' __email__ = 'bing_ads_sdk@microsoft.com' from .bulk_label import * from .bulk_label_associations import *
[ "qitia@microsoft.com" ]
qitia@microsoft.com
c244275eaf4960476910ef1e16ce1ae889076b4a
377fc6e13101a2a45826cd118110c790f396a805
/abc024-b.py
1a6b9cb638e6c8a270a7d98c1cb76f25a8b319d8
[]
no_license
number09/atcoder
4076e7223f424b9923754e73992d6442e0bb0de7
f521ca1205b254d99744abaf6a7a5bfe69845fe0
refs/heads/master
2021-06-04T23:16:39.021645
2021-01-19T08:30:39
2021-01-19T08:30:39
132,128,927
0
0
null
null
null
null
UTF-8
Python
false
false
354
py
n, t = map(int, input().split()) li_a = list() for i in range(n): li_a.append(int(input())) last_open = (0, 0) t_seconds = 0 for a in li_a: if last_open[0] <= a <= last_open[1]: t_seconds += a + t - last_open[1] last_open = (last_open[0], t + a) else: t_seconds += t last_o...
[ "cielo.abierto09@gmail.com" ]
cielo.abierto09@gmail.com
c6ab140ab8f2cb9654ad0aaf732e6dacf963ac3b
9fc6604ae98e1ae91c490e8201364fdee1b4222a
/odx_custom_support_ticket/model/ticket_category_path.py
08a84d39d96b2b82526614eb7ffc12378baf3f80
[]
no_license
nabiforks/baytonia
b65e6a7e1c7f52a7243e82f5fbcc62ae4cbe93c4
58cb304d105bb7332f0a6ab685015f070988ba56
refs/heads/main
2023-03-23T21:02:57.862331
2021-01-04T03:40:58
2021-01-04T03:40:58
null
0
0
null
null
null
null
UTF-8
Python
false
false
785
py
from odoo import models, fields, api class TicketCategoryPath(models.Model): _name = 'ticket.category.path' _rec_name = 'category_id' category_id = fields.Many2one('website.support.ticket.categories', string="Category",required=1) user_state_ids = fields.One2many('user.state','ticket_category_path_id...
[ "ash@odoxsofthub.com" ]
ash@odoxsofthub.com
5143c0b105c551354de46512e908b7649fd053b1
e926966c5aa8061dc4b4780b20817c6504dd488b
/telegram_bots/urls.py
319cc375fcc2932ce965c6bd1a6cb8805aa94094
[ "MIT" ]
permissive
vladimirmyshkovski/django-telegram-bots
da954c4b7754a368e14422153b4e67dd53bff8d1
f58ee16d61cd1b14cdf5c39649f63a851c1419e4
refs/heads/master
2023-01-06T22:42:11.263909
2018-07-19T10:34:10
2018-07-19T10:34:10
126,815,491
0
1
MIT
2022-12-26T20:36:22
2018-03-26T10:58:51
Python
UTF-8
Python
false
false
1,048
py
from django.conf.urls import url from . import views app_name = 'telegram_bots' urlpatterns = [ url( regex=r'^$', view=views.BotListView.as_view(), name='telegram_bots_list', ), url( regex=r'^(?P<pk>\d+)/$', view=views.BotDetailView.as_view(), name='telegram_...
[ "narnikgamarnikus@gmail.com" ]
narnikgamarnikus@gmail.com
bfbb23a786b14a777616004e0854edb298e9cb69
2316ce8a21d44a5d09284968ef42530633dc10d2
/sample_code/ep260/rev01/t.py
9d90dfa8c1cc3697f35e2f8011be9b7038e13761
[]
no_license
AlexanderWinkelmeier/explains
160de2c41fc5fc0156b482b41f89644dc585c4f3
d47ec53e384e4303a2d8e71fab9073a1a8d2d6bc
refs/heads/master
2023-07-30T04:55:31.234482
2021-09-15T02:59:42
2021-09-15T02:59:42
null
0
0
null
null
null
null
UTF-8
Python
false
false
187
py
import pytest def test_pass(): assert 1 == 1 def test_failed(): assert 1 == 2 @pytest.fixture def fixture(): assert False def test_errored(fixture): assert 1 == 1
[ "int3l@users.noreply.github.com" ]
int3l@users.noreply.github.com
c6db3d71ad904a4bddf6dd521ffae6b04bdd25a0
76de4fc4f00a04c8c9acc1e9e4a5fae12cf0c08a
/trunk/pyformex/__init__.py
002e4e687bd184efd65023a3a3b764564156c3e2
[]
no_license
BackupTheBerlios/pyformex-svn
ec2361b1b9967918be65e892217a691a6f8b145d
f5404809095711334bbb938d9d119a69ad8fc260
refs/heads/master
2020-12-24T13:20:47.422165
2011-11-15T11:52:23
2011-11-15T11:52:23
40,749,266
0
0
null
null
null
null
UTF-8
Python
false
false
3,022
py
# $Id$ ## ## This file is part of pyFormex 0.8.5 Sun Nov 6 17:27:05 CET 2011 ## pyFormex is a tool for generating, manipulating and transforming 3D ## geometrical models by sequences of mathematical operations. ## Home page: http://pyformex.org ## Project page: https://savannah.nongnu.org/projects/pyformex/ ...
[ "bverheg@8d6f1305-3bde-0310-9e88-884b4813ce35" ]
bverheg@8d6f1305-3bde-0310-9e88-884b4813ce35
1d4a64996631967cbfe32ff2234b6028d67116af
3235cf9cbebcb6c12510b1ab5cbd6c1051ef6378
/CnnModelTrainKaggleCatDog0614/CnnModelTrainKaggleCatDog_DateAugmentation_Pred.py
b150edd104d87d0ee33bb751c30b292b61db5d96
[]
no_license
dorahero/pyAI
8ba99fe2726264044e166562359868425d6e79ea
c185875ca19f0cca5ec0812eff373e25d0fbd0f1
refs/heads/master
2022-11-27T14:56:07.942104
2020-08-08T02:21:48
2020-08-08T02:21:48
285,956,473
0
0
null
null
null
null
UTF-8
Python
false
false
1,345
py
# --coding:utf-8-- from keras.preprocessing.image import ImageDataGenerator from keras.preprocessing import image from keras.models import load_model import numpy as np from PIL import Image import matplotlib.pyplot as plt train_dir = 'kagglecatdog/train' test_dir = 'kagglecatdog/test' validation_dir = 'kagglecatdog/...
[ "dorahero2727@gmail.com" ]
dorahero2727@gmail.com
1cd7ea419f68dfffbd358789871d2d9fd90a5a26
8690ff3a6a1ca748aebb381bd50fdb317babbaf8
/utils/ops.py
b5f81000648ecedae427cf12334d3a082dd1fddf
[]
no_license
thoppe/postern_perception
8457bd1f89fb198191c4152d3354036ad4369d20
b2b8dda375d1a0430c2cadcd5994e1fbd7a23676
refs/heads/master
2023-04-07T17:48:52.816426
2020-01-29T16:22:04
2020-01-29T16:22:04
216,728,164
0
0
null
2023-03-25T18:13:20
2019-10-22T05:12:42
Python
UTF-8
Python
false
false
6,822
py
# This script contains all neural network layers and functions that are used # the project. from __future__ import division import tensorflow as tf import numpy as np weight_init = tf.contrib.layers.xavier_initializer() def instance_norm(x, scope='instance_norm'): """ Wrapper of instance normalization. P...
[ "travis.hoppe@gmail.com" ]
travis.hoppe@gmail.com
e69edb98dd34169b7e5de559b90da43214d3dfd4
69f5b6defd7d2dc1664799bcaa5fad3fb1af4c7f
/script/2010_paper/prepare_data.py
c29e789e9a56f3fbc1dc50eb6eddb698ed957348
[]
no_license
leelabcnbc/unsup-pytorch
c48ff0232b4baf5d50b406d696a4f460e8521b90
35e8aa2ef687c2b32a5838e57ea07babe0c1abbb
refs/heads/master
2020-03-18T18:22:33.342249
2018-09-07T17:38:17
2018-09-07T17:38:17
135,088,622
2
0
null
2018-06-20T02:12:55
2018-05-27T23:22:57
Python
UTF-8
Python
false
false
2,493
py
"""this file prepares the data for the 2010 NIPS paper of conv PSD Koray Kavukcuoglu, Pierre Sermanet, Y-Lan Boureau, Karol Gregor, Michaël Mathieu, Yann LeCun: Learning Convolutional Feature Hierarchies for Visual Recognition. NIPS 2010: 1090-1098 I will prepare 1000000 25x25 patches, which should be sufficient. """...
[ "zym1010@gmail.com" ]
zym1010@gmail.com
0e64bc4b8ddf9d83ec635386f2315eb33db3939d
85c426913d63773c4802a4a3c354df909030654b
/python/PF/ABCBank_CreditCard_System_List/iCard/Read_Write_Reward_Scheme.py
d35d948984cc96537c38eeaaff32b5488d9658f5
[]
no_license
SensehacK/playgrounds
17bf2a3133db6c0cafe185c4cc2c7b59862980aa
3decd550cdb6034db8b497051acaaec8221073aa
refs/heads/master
2023-05-11T20:05:31.680168
2023-04-30T00:01:58
2023-04-30T00:01:58
159,632,542
1
0
null
2023-03-05T11:34:34
2018-11-29T08:27:53
Python
UTF-8
Python
false
false
1,561
py
import csv '''This function fetches the details of all reward schemes from SchemeDetails CSV file in 3 lists and returns them as tuple of lists. Input: Path of CSV file. Output: A tuple of lists i.e. card type list, min transaction amount list and associated reward points list. ''' def get_rew...
[ "kautilyasave@gmail.com" ]
kautilyasave@gmail.com
807997fdb4c00db45d521df97a537eeef8ba9932
246e9200a834261eebcf1aaa54da5080981a24ea
/hackerrank/algorithms/warmups/time-conversion.py
f99051f21c296ca29067abeae81b12d14b231abc
[]
no_license
kalsotra2001/practice
db435514b7b57ce549b96a8baf64fad8f579da18
bbc8a458718ad875ce5b7caa0e56afe94ae6fa68
refs/heads/master
2021-12-15T20:48:21.186658
2017-09-07T23:01:56
2017-09-07T23:01:56
null
0
0
null
null
null
null
UTF-8
Python
false
false
192
py
s = raw_input() time = s[:-2] if s[-2:] == "AM": if s[:2] == "12": time = "00" + time[2:] else: if s[:2] != "12": time = str(int(time[:2]) + 12) + time[2:] print time
[ "jacquelineluo95@gmail.com" ]
jacquelineluo95@gmail.com
fb23db33b5e66fcfe17c61e18a6d04be312b9c1f
063ab6c256b5c60406c7d4ee6820dbbf8192efa9
/ros_ws/build/learning_ros_external_pkgs_noetic/baxter_simulator/baxter_sim_examples/catkin_generated/pkg.develspace.context.pc.py
7b7827d082d8236e15fb3543a5214218394f47d0
[]
no_license
Iris-ye233/final-project_revised
d34aa55f6bba2f5b73b4f3a255f5041bdf7c71fc
8ab78592b3fe79c8fa359cc877a52192784d2152
refs/heads/master
2023-05-13T18:11:04.802393
2021-06-03T16:27:01
2021-06-03T16:27:01
371,312,863
0
0
null
null
null
null
UTF-8
Python
false
false
487
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;rospack;baxter_core_msgs;baxter_gazebo;baxter_interface;baxter_tools;baxter_tools;gazebo_ros;gazebo_msgs".replace(';', ' ') PKG_CONFIG_L...
[ "1155150731@link.cuhk.edu.hk" ]
1155150731@link.cuhk.edu.hk
33e9f7059135f1c5a0be98fa9d79e928bea92868
f8df1bff1dccbc1b4cf67cb7765ce75b17777aa3
/app/glapp/shane/openglpanel.py
0d6b28812f848688b60359540cd5ecc798c316ea
[]
no_license
juancq/py-interactive-genetic-algorithm
d74048338da283acd9545aab00f435b5c500d669
d1b388e001232040e966fd3077722ed2560d1d9e
refs/heads/master
2021-01-10T20:57:58.446987
2017-05-26T07:42:10
2017-05-26T07:42:10
4,923
7
0
null
null
null
null
UTF-8
Python
false
false
468
py
import wx from gui import feedbackpanel class OpenGLPanel(feedbackpanel.FeedbackPanel): def __init__(self, parent, id, data = None, tick = 100, size = (250, 250)): feedbackpanel.FeedbackPanel.__init__(self, parent, id, size = size) import openglcanvas canvas = openglcanvas.IGAGLCanvas(self...
[ "juan@dragonite.(none)" ]
juan@dragonite.(none)
aaa10d917c12333b2b0b5f49def8cf9e4fdbdc10
81fe7f2faea91785ee13cb0297ef9228d832be93
/AdventOfCode/21/day15.py
ea974830ec31ba50613e0a88d6ea0b7888d7b660
[]
no_license
blegloannec/CodeProblems
92349c36e1a35cfc1c48206943d9c2686ea526f8
77fd0fa1f1a519d4d55265b9a7abf12f1bd7d19e
refs/heads/master
2022-05-16T20:20:40.578760
2021-12-30T11:10:25
2022-04-22T08:11:07
54,330,243
5
1
null
null
null
null
UTF-8
Python
false
false
903
py
#!/usr/bin/env python3 import sys from heapq import * INF = 1<<30 def dijkstra(Map, i0,j0, i1,j1): S = len(Map) Dist = [[INF]*S for _ in range(S)] Dist[i0][j0] = 0 Q = [(0,i0,j0)] while Q: d,i,j = heappop(Q) if i==i1 and j==j1: break if d>Dist[i][j]: ...
[ "blg@gmx.com" ]
blg@gmx.com
7dc59258a5b3fc8644e0f31266ec92fa17934dde
7f5a9a470f9a89108fca0280018b0563e9a0207a
/wykres_masy_calkowitej_od_czasu_box.py
74ce9195d6999085a995c02868eb15e0ec158cff
[]
no_license
b-doroszuk/wykresy_kruszarki
dffa18b1b4856c7a29dfd4039960676cd5c40be0
e68d22f034bd1c866393c0b0edacdebace393dd3
refs/heads/main
2023-06-02T04:39:07.238948
2021-06-19T21:00:37
2021-06-19T21:00:37
378,262,957
0
0
null
2021-06-18T20:55:05
2021-06-18T20:55:04
null
UTF-8
Python
false
false
6,882
py
from edempy import Deck import numpy as np from edempy import BoxBin, CylinderBin import matplotlib.pyplot as plt import matplotlib; matplotlib.use("TkAgg") from time import strftime def get_mass_time_box(time_step: int, deck, L_boxbin, R_boxbin): # zamienia krok czasowy na jednostke czasu czas = deck.timest...
[ "you@example.com" ]
you@example.com
cdd00f1aee1b6099e9869021c75ba1cf9dc318d7
e6913abba3f5cfd396e62c7e514674dbcb3631bb
/vidfeat/_vertical_boxed.py
135b8fb34c9ab722a5e7dcc6f9a0b18a65ef495b
[]
no_license
bwhite/vidfeat
f98b8511ad13347037c60d7026725a6149851a81
c9e7c6a02b41951fc93f0cefe0c78b24f5731f59
refs/heads/master
2016-09-06T03:00:58.791493
2012-06-19T21:54:01
2012-06-19T21:54:01
1,878,956
0
1
null
null
null
null
UTF-8
Python
false
false
671
py
import vidfeat import imfeat import sklearn.svm class VerticalBoxedFrameFeature(vidfeat.ClassifierFrameFeature): feature = imfeat.BlackBars() def __init__(self, *args, **kw): classifier = sklearn.svm.LinearSVC(class_weight='auto') self.svm_parameters = [{'C': [10 ** x for x in range(0, 12, 3)...
[ "bwhite@dappervision.com" ]
bwhite@dappervision.com
8ced806cfdc062b9eed27d8c280a64109ff72856
b87f66b13293782321e20c39aebc05defd8d4b48
/mpi/mpi_merge.py
edf623650edaf9d1fc58f8f3c85293cfea3b2539
[]
no_license
m-elhussieny/code
5eae020932d935e4d724c2f3d16126a0d42ebf04
5466f5858dbd2f1f082fa0d7417b57c8fb068fad
refs/heads/master
2021-06-13T18:47:08.700053
2016-11-01T05:51:06
2016-11-01T05:51:06
null
0
0
null
null
null
null
UTF-8
Python
false
false
3,959
py
#!/usr/bin/env python """ Merge several HDF5 or ASCII files. Merge all files that have a common (given) pattern in the name. The patterns may be numbers and/or characters. Example: 'YYYYMMDD', where YYYY is year, MM is month and DD is day. """ # Fernando <fpaolo@ucsd.edu> # November 2, 2012 import os import sys im...
[ "fspaolo@gmail.com" ]
fspaolo@gmail.com
1d983087ace0527d39672656d8b1e6c4526ebcfd
7838473d3688eb89b598198440c6769ef56701a6
/pyvsphere/vmware_vswitch_facts.py
ee53f751dd107d27cc9efcaf6e8591706b9b6a56
[]
no_license
Maliaotw/pyvsphere
58029c4b1fad0667d87f9a36434f67209f9180ee
7069cf566dae8d35c2770050ccb71342ed5d3d8e
refs/heads/main
2023-03-03T14:05:19.526387
2021-02-09T16:34:07
2021-02-09T16:34:07
317,414,976
0
0
null
null
null
null
UTF-8
Python
false
false
3,402
py
#!/usr/bin/python # -*- coding: utf-8 -*- # Copyright: (c) 2018, Abhijeet Kasurde <akasurde@redhat.com> # GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt) from __future__ import absolute_import, division, print_function __metaclass__ = type ANSIBLE_METADATA = { 'metadata...
[ "MaliaoTW@gmail.com" ]
MaliaoTW@gmail.com
15717a292bdc89415c16f5ff81de7542e336cd37
3b1a13edca51449f015086acad1e5a51ae89cba5
/lang/py/pylib/10/threading/threading_rlock.py
c9a98dd6693b1555f9e9282f076052e573461c52
[ "MIT" ]
permissive
ch1huizong/study
9000042d3ad13b06426b03423ee335aee15fd061
d3b7c43fc03484839f8bbc7d0d056df1b1eba9cd
refs/heads/master
2023-09-04T12:45:48.125715
2023-08-17T02:49:40
2023-08-17T02:49:40
162,539,130
1
0
null
null
null
null
UTF-8
Python
false
false
151
py
#!/usr/bin/env python # encoding: UTF-8 import threading lock=threading.RLock() print'First try:',lock.acquire() print'Second try:',lock.acquire(0)
[ "root@k.k.lab" ]
root@k.k.lab
b4bb3b9601d9f2d0665fe916401fbf091bea4e6e
e41fc34b9d3d5aa94e5c6b843ee35fc1280ed6b5
/app/settings/config_control.py
f59173df4c2a68fbdf9dd2416dc8f00ea26d6ec6
[]
no_license
cleverbotdev/my_university_group_site
b69b03185ddbb6fca763f1394851e031cb3e304e
b4d4079dc2f942634f63b96e799050f6191d5aad
refs/heads/master
2023-07-20T06:48:33.340436
2021-03-04T10:14:21
2021-03-04T10:14:21
null
0
0
null
null
null
null
UTF-8
Python
false
false
2,536
py
# -*- coding: utf-8 -*- if __name__ == '__main__': from os import chdir from app.settings.config import HOME_DIR, SETTINGS_FILE, EXAMPLE_SETTINGS_FILE chdir(HOME_DIR) def create_new_settings(config_path, example_settings_filename): from configparser import ConfigParser example_cfg = ConfigPars...
[ "rkbcu@mail.ru" ]
rkbcu@mail.ru
e90effd3bbfd10d2539c58e07eaaef4ea30eb3a1
0b63f38c7fb468e478e5be82c685de1b7ddb87e5
/meiduo/meiduo_mall/scripts/generate_detail_html.py
c1e6f9a5b13f24b3617489fe30fddf118e1edd65
[ "MIT" ]
permissive
Highsir/Simplestore
fcf5ef81a754604c0953a3c1433a7bc09290c121
5fc4d9930b0cd1e115f8c6ebf51cd9e28922d263
refs/heads/master
2020-09-01T07:55:45.362457
2019-11-01T04:55:48
2019-11-01T04:55:48
218,913,913
1
0
null
null
null
null
UTF-8
Python
false
false
563
py
# 1. 添加导包路径 (把 scripts 的上一级目录添加到导包路径sys.path) import sys sys.path.insert(0, '../') # 2. 设置配置文件,初始化django环境 import os import django os.environ.setdefault("DJANGO_SETTINGS_MODULE", "meiduo_mall.settings.dev") django.setup() # 3. 导包 from celery_tasks.html.tasks import generate_static_sku_detail_html from goods.models im...
[ "highsir421@163.com" ]
highsir421@163.com
1a73b6acb4d8371dc29e5f10e62860f6bc22386f
f1fcd165cd8444310ce5d201e481e3982dc28110
/easy/1901/190108/jang.py
25720a11955857329f172ec792f4b8f996ea5564
[]
no_license
JoosJuliet/algoStudy
310a71a0fcc8f3c23281544cf3458ed999040176
3fc1e850f9d8b9f290f41fddd59ff403fbfffa05
refs/heads/master
2020-04-20T19:26:25.485875
2019-03-27T22:37:27
2019-03-27T22:37:27
169,049,593
1
0
null
2019-02-04T08:43:07
2019-02-04T08:43:07
null
UTF-8
Python
false
false
130
py
from collections import Counter input() ans = 0 for c in Counter(map(int, input().split())).values(): ans += c//2 print(ans)
[ "wkdtjsgur100@naver.com" ]
wkdtjsgur100@naver.com
3567b6b9dbb5ba835c394efc4a0acaf1d521e739
f60434c0a27f0f5ada2aa5607c94947890de5692
/codezilla/sherlock.py
4b6219a06e227af9a424e2f6c7b32393e09c7c36
[ "MIT" ]
permissive
AnuragAnalog/codechef
16aa7711e6471f6249874066105f50aee90436c3
348dd1d8daac356f0390ce124a263f6157495b1c
refs/heads/master
2022-06-27T15:11:36.811069
2020-05-11T03:20:19
2020-05-11T03:20:19
262,927,296
1
0
null
2020-05-11T03:18:50
2020-05-11T03:16:15
null
UTF-8
Python
false
false
372
py
n = int(input()) inst = list(input()) string = "" for i in inst: if i == "1": string = string + "a" elif i == "2": string = string + "bb" elif i == "3": string = string + "ab" elif i == "4": string = string.replace("a", "$") string = string.replace("b", "a") ...
[ "anurag.peddi1998@gmail.com" ]
anurag.peddi1998@gmail.com
1b17c93b5d60e121444377dcc3f277dd0f2fce03
d3efc82dfa61fb82e47c82d52c838b38b076084c
/run/runcase_ipo.py
22f8fbc94a9b59c8509cbbaec8ddff44282914d9
[]
no_license
nantongzyg/xtp_test
58ce9f328f62a3ea5904e6ed907a169ef2df9258
ca9ab5cee03d7a2f457a95fb0f4762013caa5f9f
refs/heads/master
2022-11-30T08:57:45.345460
2020-07-30T01:43:30
2020-07-30T01:43:30
280,388,441
0
0
null
null
null
null
UTF-8
Python
false
false
1,887
py
#!/usr/bin/python # -*- encoding: utf-8 -*- import sys import os import time import unittest sys.path.append('/home/yhl2/workspace/xtp_test/Autocase_Result') sys.path.append('/home/yhl2/workspace/xtp_test/utils') import CaseServiceIpo # 深圳现价case批量执行 def runCases( path, filename,sheet_name): ''' :param cases: ...
[ "418033945@qq.com" ]
418033945@qq.com
bf43527a3d5127746b93a44909d325e5c4ebbe32
1bdb0da31d14102ca03ee2df44f0ec522b0701a4
/Lombardia/AlfaVarese/3-FoundReportList.py
ef7ade81f4816ecdf095f5b44ed170800b914cf7
[]
no_license
figuriamoci/Acqua
dc073d90c3c5e5899b22005685847916de1dfd95
aef22fcd0c80c92441e0e3df2468d7a2f23a848a
refs/heads/master
2020-12-15T04:00:26.855139
2020-06-08T21:17:55
2020-06-08T21:17:55
234,986,179
1
0
null
null
null
null
UTF-8
Python
false
false
2,048
py
## from selenium import webdriver import time from selenium.webdriver.support.ui import WebDriverWait from selenium.webdriver.support import expected_conditions as EC import logging,pandas as pd import acqua.aqueduct as aq gestore = "AlfaVarese" aq.setEnv('Lombardia//'+gestore) url = "https://www.alfasii.it/la-societa/...
[ "an.fantini@gmail.com" ]
an.fantini@gmail.com
74832a0ea32690e56228433ad4eb435b3f2d0185
8246e9fbdecdb37651e0d09497fd9428e434f33c
/FilmLocationFromGuidedWithSerial/admin.py
d179c1eeaa68276fef03e2c251f12fffe2bac988
[]
no_license
rajeev1234/Landing-Page
479995026ab01fc504a1e9502e7763dc04266009
4bfd22a6a1776907ba78b3dc9037064c820b049e
refs/heads/master
2020-03-08T13:37:20.253252
2018-04-05T06:33:26
2018-04-05T06:33:26
128,162,519
0
0
null
null
null
null
UTF-8
Python
false
false
527
py
from django.contrib import admin # Register your models in admin panels here. from . import models # declaring comments stack class CommentInline(admin.TabularInline): model = models.Comment # attaching commment stack to FilmLocationFromGuidedWithSerial class FilmLocationFromGuidedWithSerialAdmin(admin.Mode...
[ "ccrcian.rajeev1@gmail.com" ]
ccrcian.rajeev1@gmail.com
be7339bac0388480a26e2b7a029ad4492e92b529
90b2ad813c96d630cd254475b0ad3a7a735011e5
/codigo/MeteoSalon/MQTT_test.py
8c23d94dc8cb58f56bd2ec98d7aef2b8a31a2d6f
[]
no_license
vtt-info/micropythonTutorial
dbcd4c13af442446c9816e4fdcd82b8eaaf6a27a
67a58fb56bef4ef55c89cf76fc3ccde842b62ce6
refs/heads/master
2020-11-27T21:44:22.044221
2019-12-22T16:25:44
2019-12-22T16:25:44
null
0
0
null
null
null
null
UTF-8
Python
false
false
2,470
py
# MQTT test # basado en https://randomnerdtutorials.com/micropython-mqtt-esp32-esp8266/ from umqttsimple import MQTTClient import ubinascii import machine import Wemos # Facilita el identificar los pines import MeteoSalon # Relacionado con los dispositivos conectados import NeoPixelTHO # Relacioniado con el...
[ "javacasm@gmail.com" ]
javacasm@gmail.com
7c54c7b31d8d70ba4d82aa27a48606da121ed2d6
9c63f6d39a6085674ab42d1488476d0299f39ec9
/Python/LC_Unique_Email_Addresses.py
8d175c6c63fe339b19edb98152a443a9c2a31f7a
[]
no_license
vijayjag-repo/LeetCode
2237e3117e7e902f5ac5c02bfb5fbe45af7242d4
0a5f47e272f6ba31e3f0ff4d78bf6e3f4063c789
refs/heads/master
2022-11-14T17:46:10.847858
2022-11-08T10:28:30
2022-11-08T10:28:30
163,639,628
1
0
null
null
null
null
UTF-8
Python
false
false
581
py
class Solution(object): def numUniqueEmails(self, emails): """ :type emails: List[str] :rtype: int Approach: Split into local and domain. Process accordingly """ new = set() for email in emails: local,domain = emai...
[ "noreply@github.com" ]
vijayjag-repo.noreply@github.com
275bc0dc169eb8d80100c4b3485b2de5f9c9a001
822d3cd484b54f0531fc205520c765a8321c0613
/pyFile/9面向对象进阶/5.描述器/随堂笔记/12.反向操作符.py
9d8711a8583579d14da0a7ab9391630953089a88
[]
no_license
mghxy123/learnPython
31d1cc18deeed5a89864ca0333fe488e0dbf08b4
00740e87d55a4dffd78773deaff8689485df31e8
refs/heads/master
2021-07-21T14:31:02.421788
2020-06-27T11:28:01
2020-06-27T11:28:01
187,751,182
0
0
null
2020-06-07T05:14:05
2019-05-21T02:58:35
Python
UTF-8
Python
false
false
1,373
py
#!/usr/bin/env python # -*- coding: utf-8 -*- # File : 12.反向操作符.py # Author: HuXianyong # Date : 2019/5/27 17:58 # print(type(NotImplemented)) #未实现的单值 # print(type(None))#未实现的单值 # print(type(NotImplementedError)) #异常类 class A: def __init__(self,x): self.x = x def __repr__(self): return "<A ...
[ "mghxy123@163.com" ]
mghxy123@163.com
0893fddba045a950026684cfcf99ea17a23ccda4
2c3e0c3ef202375d998c9123934af09315d33fee
/LeetCode/Greedy Algorithms/jump_game.py
b08f9a1ecc1c6bde18a1346953fcd57c11047c44
[]
no_license
Kalesh-Singh/Interviews2019
e74f0ec22b1cb5fe178a38efc9c0ceea929e32f0
e8fadb9636659a28f657fb43ee804761a215c37e
refs/heads/master
2020-05-23T12:56:05.896620
2019-08-25T15:23:10
2019-08-25T15:23:10
186,767,651
0
0
null
null
null
null
UTF-8
Python
false
false
1,030
py
class Solution: def canJump(self, nums: 'List[int]') -> bool: # Solution 1 - Dynamic Programming Bottom Up Approach # n = len(nums) # # Try determine whether we can reach the last index # # starting from the right. # results = [False] * n # # We know we can get to ...
[ "kaleshsingh96@gmail.com" ]
kaleshsingh96@gmail.com
5fc218c45331323e07ff14adde4a58c7ebcb9b5f
15945660e0e9624693f11d7ec6460fb41d2f1ef9
/tfx/utils/import_utils.py
476d32d7366a4df7ac64158d12abebb7380674ae
[ "Apache-2.0" ]
permissive
HassanDayoub/tfx
f4a32cd6e25493d152a6f91b2cc26db94154d0a6
dc9221abbb8dad991d1ae22fb91876da1290efae
refs/heads/master
2020-05-30T18:44:31.410424
2019-05-31T22:06:53
2019-05-31T22:07:25
189,904,199
2
0
Apache-2.0
2019-06-02T23:09:17
2019-06-02T23:09:17
null
UTF-8
Python
false
false
1,171
py
# Copyright 2019 Google LLC. 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 a...
[ "tensorflow-extended-team@google.com" ]
tensorflow-extended-team@google.com
c065a92fe428a5c1db1d2ed606c8bfba5a1d6d3b
0c1d3807940f223c913aeadac31b85dc576b1dca
/app.py
b1656d84cd9a00fbce5cfecc0fdd87693551c67c
[]
no_license
wegamekinglc/QA
4b2073e4f93d96c09c771d868914cef3367ab55f
c818442b06f5701feb6b38dcf6f20853d8ec6556
refs/heads/master
2020-06-11T00:41:02.003796
2019-06-26T04:46:36
2019-06-26T04:46:36
193,806,698
0
0
null
null
null
null
UTF-8
Python
false
false
3,416
py
from typing import Tuple import requests from flask import ( Flask, render_template, request, redirect ) import pandas as pd app = Flask(__name__) pd.set_option('display.max_colwidth', -1) def chunkstring(string, length): return (string[0+i:length+i] for i in range(0, len(string), length)) def handle_resp...
[ "scrappedprince.li@gmail.com" ]
scrappedprince.li@gmail.com
37ef390c7e9d53f0d6bc90b5bb19dee5ee3d0338
28deae4b6f2ef4c83116d8a7e08061b2ac47bb71
/Spider/ImgSpider/utils/exceptions.py
d2c585c0275117650b4ba792d89e1926e23d29ec
[ "MIT", "Apache-2.0" ]
permissive
Danceiny/HackGirlfriend
9cc796c733be7055799efb1c51f1e5ecb3d12d81
d64f43c5cfb48d30ed812e34fb19bc7b90ba01f8
refs/heads/master
2023-01-04T16:09:55.205094
2017-07-22T16:48:59
2017-07-22T16:48:59
93,874,976
2
1
Apache-2.0
2022-12-26T20:14:57
2017-06-09T15:57:34
HTML
UTF-8
Python
false
false
1,267
py
# coding=utf-8 class UnknownPythonVersion(Exception): msg = 'Unknown Python version found, please check your Python installation.' class UnsupportedPythonVersion(Exception): msg = 'So far ImageSpider only support Python 2.' class GetBaseLinkFailed(Exception): msg = 'Getting base link failed.' class ...
[ "danceiny@gmail.com" ]
danceiny@gmail.com
628f197dcdce92355c268cf6f67500a76d8f9ba6
0431fb263e38422585edca273fb47ef92fd22243
/dataloaders/data_poke.py
ed7e09e5dcdf2e7f5b203cc60babc9ab1a115781
[]
no_license
RRoundTable/EEN-with-Keras
a6c3352eafc05fcb7ed41463d637a684de9a0b27
ae71903afa05135f5eb6e2797854969f5a082958
refs/heads/master
2020-04-28T03:17:25.762629
2019-04-27T12:19:13
2019-04-27T12:19:13
174,930,756
2
0
null
null
null
null
UTF-8
Python
false
false
6,653
py
import os, random, glob, pdb, math import pickle as pickle from sklearn.externals import joblib import numpy from scipy import misc # import torch # import torchvision import utils from tensorflow.python.keras.layers import Input class ImageLoader(object): def _load_set(self, split): print('loading {} se...
[ "ryu071511@gmail.com" ]
ryu071511@gmail.com
f0638fd2d66ede9da7dbfba2d846f8e41920760a
8bd1ae9c1681ee8c1214a4e9cda29a503676c36d
/v1/tnc2.py
926883fffab2cabc992b1efab7396b853be0ba9b
[]
no_license
zleffke/balloon
c15ef7e5614018022ca1f19ed2e4c82009352165
2943d303692b299e6d0866299d83a94d0839bf5b
refs/heads/master
2021-07-06T02:28:17.304024
2021-05-22T20:25:18
2021-05-22T20:25:18
57,078,951
0
1
null
null
null
null
UTF-8
Python
false
false
4,811
py
#!/usr/bin/env python ################################################## # GPS Interface # Author: Zach Leffke # Description: Initial GPS testing ################################################## from optparse import OptionParser import threading from datetime import datetime as date import os import serial import ma...
[ "zleffke@vt.edu" ]
zleffke@vt.edu
2c1f0bb8452e88d0139f57a8d392d8d03d95841c
6fa7f99d3d3d9b177ef01ebf9a9da4982813b7d4
/G2QnBrxvpq9FacFuo_9.py
409f1278f18bac3fdd0fd7919b0002ac306a61bc
[]
no_license
daniel-reich/ubiquitous-fiesta
26e80f0082f8589e51d359ce7953117a3da7d38c
9af2700dbe59284f5697e612491499841a6c126f
refs/heads/master
2023-04-05T06:40:37.328213
2021-04-06T20:17:44
2021-04-06T20:17:44
355,318,759
0
0
null
null
null
null
UTF-8
Python
false
false
155
py
def possible_path(lst): if lst[0]=='H':return all([lst[i]=='H' for i in range(0,len(lst),2)]) return all([lst[i]=='H' for i in range(1,len(lst),2)])
[ "daniel.reich@danielreichs-MacBook-Pro.local" ]
daniel.reich@danielreichs-MacBook-Pro.local
901a12d85d7a567cb6b96e5c26267c541a2bee5a
75af3c931671a55ea0058cea6e83e90dc1aed6d1
/profil3r/app/core/services/_porn.py
2ab894337d20e37f5825d30f488926628e176fca
[ "MIT" ]
permissive
derinkebapiskender/Profil3r
e711a381d84b27744d5289a87c99b4b8e77b8866
d45fea1efab0487bfac49e422ebc46cb26b29582
refs/heads/main
2023-07-01T00:19:24.113439
2021-07-26T23:08:59
2021-07-26T23:08:59
null
0
0
null
null
null
null
UTF-8
Python
false
false
764
py
from profil3r.app.modules.porn.pornhub import Pornhub from profil3r.app.modules.porn.redtube import Redtube from profil3r.app.modules.porn.xvideos import Xvideos # Pornhub def pornhub(self): self.result["pornhub"] = Pornhub(self.config, self.permutations_list).search() # print results self.print_results("p...
[ "r0g3r5@protonmail.com" ]
r0g3r5@protonmail.com
9800f6c861feb1d3a793b713f5649f8631284b22
b77cc1448ae2c68589c5ee24e1a0b1e53499e606
/appraisal/migrations/0034_appraisal_performance_classification.py
4206da7d9f420b1fcc58d45701b6a13bd21cbc9c
[]
no_license
PregTech-c/Hrp_system
a5514cf6b4c778bf7cc58e8a6e8120ac7048a0a7
11d8dd3221497c536dd7df9028b9991632055b21
refs/heads/master
2022-10-09T07:54:49.538270
2018-08-21T11:12:04
2018-08-21T11:12:04
145,424,954
1
1
null
2022-10-01T09:48:53
2018-08-20T13:58:31
JavaScript
UTF-8
Python
false
false
595
py
# -*- coding: utf-8 -*- # Generated by Django 1.10 on 2018-08-13 21:43 from __future__ import unicode_literals from django.db import migrations, models class Migration(migrations.Migration): dependencies = [ ('appraisal', '0033_auto_20180813_1332'), ] operations = [ migrations.AddField(...
[ "imugabi64@yahoo.com" ]
imugabi64@yahoo.com
1b8a8570b27806bdeec6392585f3026f4913f1fb
9743d5fd24822f79c156ad112229e25adb9ed6f6
/xai/brain/wordbase/otherforms/_strongholds.py
55c41458d6f0e15de2928d80a317f4df66fb17c1
[ "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
238
py
#calss header class _STRONGHOLDS(): def __init__(self,): self.name = "STRONGHOLDS" self.definitions = stronghold self.parents = [] self.childen = [] self.properties = [] self.jsondata = {} self.basic = ['stronghold']
[ "xingwang1991@gmail.com" ]
xingwang1991@gmail.com
3c838498f6089798a32bacec1df55395f584f265
ca7aa979e7059467e158830b76673f5b77a0f5a3
/Python_codes/p03695/s950925933.py
e48c5ff64081e4d044a733a6017beb03e5e51894
[]
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
452
py
n = int(input()) A = list(map(int, input().split())) color = [] other = 0 for a in A: if a < 400: color.append(1) elif a < 800: color.append(2) elif a < 1200: color.append(3) elif a < 1600: color.append(4) elif a < 2000: color.append(5) elif a < 2400: color.append(6) elif a < 2800: color.app...
[ "66529651+Aastha2104@users.noreply.github.com" ]
66529651+Aastha2104@users.noreply.github.com
37b31d7c83517db42c782f28736d5e2d0a9d7128
ed296ff86f13b1d9e41fbf6aace441090850ef57
/chapter_03_data_modeling/account_example/account_example/example/migrations/0003_internalaccount_account_number.py
53c0a79cd57dc61299f17ccdb16473cda975e38f
[ "MIT" ]
permissive
cnb0/Python-Architecture-Patterns
2a6113605f95a4c99369ee0febe2812c792a7acf
2194746ea334c9dd84b5547a6d59ebfa95ced394
refs/heads/main
2023-08-12T02:31:17.187913
2021-10-12T19:16:14
2021-10-12T19:16:14
null
0
0
null
null
null
null
UTF-8
Python
false
false
459
py
# Generated by Django 3.2 on 2021-04-18 12:39 from django.db import migrations, models class Migration(migrations.Migration): dependencies = [ ('example', '0002_internalaccount_initial_amount'), ] operations = [ migrations.AddField( model_name='internalaccount', ...
[ "jaime.buelta@gmail.com" ]
jaime.buelta@gmail.com
f134a84e1d0e478b6e38dfe4818b42ecbd892513
353def93fa77384ee3a5e3de98cfed318c480634
/.history/week01/homework02/maoyanspiders/maoyanspiders/pipelines_20200627225504.py
431121b82bb35a87337da0908ef3299621934ef2
[]
no_license
ydbB/Python001-class01
d680abc3ea1ccaeb610751e3488421417d381156
ad80037ccfc68d39125fa94d2747ab7394ac1be8
refs/heads/master
2022-11-25T11:27:45.077139
2020-07-19T12:35:12
2020-07-19T12:35:12
272,783,233
0
0
null
2020-06-16T18:28:15
2020-06-16T18:28:15
null
UTF-8
Python
false
false
566
py
# -*- coding: utf-8 -*- # Define your item pipelines here # # Don't forget to add your pipeline to the ITEM_PIPELINES setting # See: https://docs.scrapy.org/en/latest/topics/item-pipeline.html class MaoyanspidersPipeline(object): def process_item(self, item, spider): films_name = item['films_name'] ...
[ "31039587+ydbB@users.noreply.github.com" ]
31039587+ydbB@users.noreply.github.com
1097ae22a7073a902f0a5afb758647bb025d8aa7
052a89753a7917b7fa0ccdf5718d5250a1379d2c
/bin/painter.py
007ccd5118b932b88dfafb856861b084ae5a60d4
[]
no_license
bopopescu/aws.example.com
25e2efda3bd9ae2a257c34904ccb53043fe20b55
97254868688c3c3a991843fcacc973c93b366700
refs/heads/master
2022-11-22T07:06:30.386034
2016-10-25T15:22:14
2016-10-25T15:22:14
282,553,417
0
0
null
2020-07-26T01:22:26
2020-07-26T01:22:25
null
UTF-8
Python
false
false
2,169
py
#!/Users/deanarmada/Desktop/projects/python-projects/aws.example.com/bin/python # # The Python Imaging Library # $Id$ # # this demo script illustrates pasting into an already displayed # photoimage. note that the current version of Tk updates the whole # image every time we paste, so to get decent performance, we spli...
[ "deanarmada@gmail.com" ]
deanarmada@gmail.com
ce8f7a72520ec6d106c411bd7698922722e9cd8f
20cf9a80fd651b5adb7242bf17da2c323785f776
/01_Python/00_python_fund/filter_type.py
5d5aa673f2d382415462308c99d0696e18c93a76
[]
no_license
ethanlow23/codingDojoCoursework
4f2ea0490437fe61a927f665c6b6b23435f095cf
1a8fcad44377727d43517d34bd1f425fc5d6abab
refs/heads/master
2020-04-28T18:58:53.696656
2019-03-13T20:56:44
2019-03-13T20:56:44
175,496,145
0
0
null
null
null
null
UTF-8
Python
false
false
705
py
sI = 45 mI = 100 bI = 455 eI = 0 spI = -23 sS = "Rubber baby buggy bumpers" mS = "Experience is simply the name we give our mistakes" bS = "Tell me and I forget. Teach me and I remember. Involve me and I learn." eS = "" aL = [1,7,4,21] mL = [3,5,7,34,3,2,113,65,8,89] lL = [4,34,22,68,9,13,3,5,7,9,2,12,45,923] eL = [] ...
[ "ethanlow223@yahoo.com" ]
ethanlow223@yahoo.com
3aab6d9e3ab7cac0507d1de4eeb54cfa9f9bdc8e
d8346eaf1c910ff02c7b243692a2766b8b089f06
/for-post/python-string/s2-methods/split.py
33b6036796fcee2b77b0370fa84b79457b731e68
[]
no_license
dustinpfister/examples-python
55304c99ba3af82cd8784ee98745546632155c68
a9910ee05d4df524f951f61b6d9778531a58ccbf
refs/heads/master
2023-03-06T21:10:18.888654
2021-02-26T20:32:52
2021-02-26T20:32:52
318,595,538
0
0
null
null
null
null
UTF-8
Python
false
false
449
py
str = '0,1,2,3,4,5' l = str.split(',') print(type(l).__name__) # list print(l[3]) # 3 str = '012345' # I can not give and empty string as a sep # doing so will result in an error try: l = str.split('') except ValueError: print('ValueError') # however there are a number of other ways to # get that kind of lis...
[ "dustin.pfister@gmail.com" ]
dustin.pfister@gmail.com
f89c2bef07b20a5b88a18fc7237a8db40c9581f0
6b2a8dd202fdce77c971c412717e305e1caaac51
/solutions_1482494_0/Python/Decs/b.py
0f263000841a7dcbb8b18269a13a7f97da46664b
[]
no_license
alexandraback/datacollection
0bc67a9ace00abbc843f4912562f3a064992e0e9
076a7bc7693f3abf07bfdbdac838cb4ef65ccfcf
refs/heads/master
2021-01-24T18:27:24.417992
2017-05-23T09:23:38
2017-05-23T09:23:38
84,313,442
2
4
null
null
null
null
UTF-8
Python
false
false
795
py
tests = int(raw_input()) for test in xrange(1, tests + 1): n = int(raw_input()) needed = [map(int, raw_input().split()) for i in xrange(n)] finishes = 0 total = 0 completed = [0] * n changed = True while changed: changed = False for level in xrange(n): if completed[level] < 2 and total >= needed[leve...
[ "eewestman@gmail.com" ]
eewestman@gmail.com
aa500d76845c40a3d72f123894af915ff7dbc08a
e59fe240f0359aa32c59b5e9f581db0bfdb315b8
/galaxy-dist/lib/galaxy/util/memdump.py
25558ca4d47da9d18a9d786248dcd19f8de0f6c8
[ "CC-BY-2.5", "AFL-2.1", "AFL-3.0", "CC-BY-3.0", "LicenseRef-scancode-unknown-license-reference" ]
permissive
subway/Galaxy-Distribution
dc269a0258471597d483687a0f1dd9e10bd47448
d16d6f9b6a8b7f41a218c06539863c8ce4d5a73c
refs/heads/master
2021-06-30T06:26:55.237251
2015-07-04T23:55:51
2015-07-04T23:55:51
15,899,275
1
2
null
2020-10-07T06:17:26
2014-01-14T10:47:28
Groff
UTF-8
Python
false
false
1,541
py
# Attempt to load guppy module, and only define Memdump class # if available try: import pkg_resources pkg_resources.require( "guppy" ) except: import sys print >> sys.stderr, "No guppy module, Memdump not available" Memdump = None else: import os, sys, signal, time, guppy class Memd...
[ "sabba_88@hotmail.com" ]
sabba_88@hotmail.com
1a7633f93b0824f775592709fc99a1d901708513
cd5746f8cc7aee1f20606a65b4fae0d5e8ee78dc
/Python Books/Python-3-Video-Tutorial/Exercise Files/Exercise Files/02 Quick Start/function.py
730ac95decd51740673e575dccced4204c40da21
[]
no_license
theGreenJedi/Path
df24fca355590efef0c6cb5c52e7216c6b5d2464
b5ed2805dbb046480929e49e550bfd8af5bb4d6f
refs/heads/master
2023-07-27T14:23:37.694546
2021-07-16T01:38:55
2021-07-16T01:38:55
87,686,563
8
2
null
2023-07-11T22:49:03
2017-04-09T05:57:30
Jupyter Notebook
UTF-8
Python
false
false
344
py
#!/usr/bin/python3 def isprime(n): if n == 1: print("1 is special") return False for x in range(2, n): if n % x == 0: print("{} equals {} x {}".format(n, x, n // x)) return False else: print(n, "is a prime number") return True for n in range(...
[ "GreenJedi@protonmail.com" ]
GreenJedi@protonmail.com
3089cbd516c8333275c4d4d1c89c91ddcf6f27d1
781e2692049e87a4256320c76e82a19be257a05d
/all_data/exercism_data/python/octal/88c13780af7b419e8a9f1b81c23ca0df.py
815521fd47687557af3468c72421c673042ff834
[]
no_license
itsolutionscorp/AutoStyle-Clustering
54bde86fe6dbad35b568b38cfcb14c5ffaab51b0
be0e2f635a7558f56c61bc0b36c6146b01d1e6e6
refs/heads/master
2020-12-11T07:27:19.291038
2016-03-16T03:18:00
2016-03-16T03:18:42
59,454,921
4
0
null
2016-05-23T05:40:56
2016-05-23T05:40:56
null
UTF-8
Python
false
false
866
py
def Base(base_, name_): all_digits = "0123456789" + "".join(chr(i) for i in xrange(ord('a'), ord('z')+1)) if base_ > len(all_digits): raise ValueError("Cannot create a numbering base {}: not enough digits".format(base_)) class Base(object): digits = all_digits[:base_] base = base_ ...
[ "rrc@berkeley.edu" ]
rrc@berkeley.edu
88c5eb693664e13eaf85f607287f78a60cfd3cef
915bfb55c32999a39807b5364c6fa48d0d0b0bb0
/OMS/saltstack/scripts/copy_anything.py
53d97b77fa03a43466f000f89d9e2b974a0d6055
[]
no_license
rysinal/pythonnote
fd761d67fcf41fc009a5724ecd666db63cfef62a
90245323b1d6fcfdec89c1abefbc34ef6fa0946d
refs/heads/master
2021-12-23T11:39:29.580329
2017-11-13T08:31:07
2017-11-13T08:31:07
null
0
0
null
null
null
null
UTF-8
Python
false
false
348
py
#!/usr/bin/python import shutil import errno # import os def do_copy(src, dst): try: # if os.path.exists(dst): # shutil.copyfile(src, dst) # else: shutil.copytree(src, dst) except OSError as exc: if exc.errno == errno.ENOTDIR: shutil.copy(src, dst) ...
[ "754267513@qq.com" ]
754267513@qq.com
1d807c3ac02c9f70b4c9b2e471a6204a41b1ed38
f7a20374403b55189cc5db6e8fa34d0ba290387c
/modules/everyday_report/report_mp.py
9b3f45580f58891e6f10da07b88711f3cea0d088
[]
no_license
dark-ice/upink_modules
1a7b5a165cc5e05396c62cf33c261b907c23e33c
c497bf87a39796f1df3877542359b1927bec3a76
refs/heads/master
2021-05-01T04:40:16.436666
2014-04-12T15:09:31
2014-04-12T15:09:31
null
0
0
null
null
null
null
UTF-8
Python
false
false
6,658
py
# coding=utf-8 __author__ = 'andrey' from openerp import tools from openerp.osv import fields from openerp.osv.orm import Model class ReportMP(Model): _name = 'day.report.mp' _description = u'Ежедневные отчеты - МП' _auto = False _order = 'date' _columns = { 'date_start': fields.date('c',...
[ "karbanovich.andrey@gmail.com" ]
karbanovich.andrey@gmail.com
6088e141228743b67ea1602b028a24c111010e3a
e96461c5711974aee2401aad3206131b84e7b665
/library/piglow.py
f4539f48cab58c387be9fc2b9a33bc3b879a7e34
[]
no_license
sbelyea/piglow
0a06507ef4859711a47027b09e58f22b7e42c5eb
d8599be3998521a3d211e38ac61043f717d74d40
refs/heads/master
2020-12-11T04:00:40.815366
2015-05-12T09:45:32
2015-05-12T09:45:32
null
0
0
null
null
null
null
UTF-8
Python
false
false
4,444
py
import sn3218 import atexit import time sn3218.enable() sn3218.enable_leds(0b111111111111111111) clear_on_exit = True auto_update = False _legs = [ # r o y g b w [ 6, 7, 8, 5, 4, 9 ], [ 17, 16, 15, 13, 11, 10 ], [ 0, 1, 2, 3, 14, 12 ] ] _values = [0] * 18 colours = { "red" :...
[ "phil@gadgetoid.com" ]
phil@gadgetoid.com
1ab2dafa56e225f40ea46f42f12efa3c77ff3108
de24f83a5e3768a2638ebcf13cbe717e75740168
/moodledata/vpl_data/51/usersdata/120/20281/submittedfiles/listas.py
396d08af8cee48625cc848246acf170897a490a0
[]
no_license
rafaelperazzo/programacao-web
95643423a35c44613b0f64bed05bd34780fe2436
170dd5440afb9ee68a973f3de13a99aa4c735d79
refs/heads/master
2021-01-12T14:06:25.773146
2017-12-22T16:05:45
2017-12-22T16:05:45
69,566,344
0
0
null
null
null
null
UTF-8
Python
false
false
400
py
# -*- coding: utf-8 -*- from __future__ import division def degrau(lista): maior=0 for i in range(0,len(a)-1,1): degrau=math.fabs(a[i]-a[i+1]) if degrau>maior: maior=degrau return maior a=[] n=input('insira o numero de termos da lista:') for i in ra...
[ "rafael.mota@ufca.edu.br" ]
rafael.mota@ufca.edu.br
10b048dcdfba609dde36b77f50d00d1d7bdb14c4
ba7134468cb18014fe2e3e1513382fa52aafd4eb
/03_Python_network_programming/003_HTTP_Web服务器/004_Web静态服务器_多线程threading.Thread_多任务高并发.py
e24ff1c71c9bed28feb84b9f632b5cd39fd8d1ff
[]
no_license
FelixZFB/Python_advanced_learning
4e44616b390e1c6e7da37229c7ad48c069cee71b
a71a6d733ed2134a79f02a6488807862b23438b8
refs/heads/master
2021-06-27T11:15:07.754719
2020-11-20T02:41:25
2020-11-20T02:41:25
183,116,714
2
2
null
null
null
null
UTF-8
Python
false
false
5,039
py
# -*- coding:utf-8 -*- # 创建一个Web服务器,客户端请求后,返回显示所需要的页面 # 下面代码中已经加入了html文件夹的系统路径 # 打开一个网页后,自连接都可以打开了 # 程序会根据请求提取出名字,然后进入到html文件中查找匹配相关文件 # 然后再浏览器中显示出来 import socket import re import threading def service_client(new_socket): "为一个客户端进行服务,为这个客户端返回数据" # 1. 接收浏览器发送过来的请求,即HTTP请求 request_data = new_socket.recv(...
[ "18200116656@qq.com" ]
18200116656@qq.com
b601ab4cd9d6945c2924065d897b8602b0755205
50dd2a43daa8316fc11e0c176b5872738fcc5dde
/Learning/103_Tableaux/fusion.py
580e9aa10bfa32f0c6630f48ce9e9bebfdb0224a
[]
no_license
FrenchBear/Python
58204d368e3e72071eef298ff00d06ff51bd7914
b41ab4b6a59ee9e145ef2cd887a5fe306973962b
refs/heads/master
2023-08-31T18:43:37.792427
2023-08-26T15:53:20
2023-08-26T15:53:20
124,466,047
0
0
null
null
null
null
UTF-8
Python
false
false
960
py
# fusion.py # fusion de listes triées # Programmer efficacement chap 4 # Mon implémentation sans regarder cette du livre! # 2022-05-25 PV def fusion(l1: list[int], l2: list[int]) -> list[int]: f = [] len1 = len(l1) len2 = len(l2) i1 = i2 = 0 while i1 < len1 and i2 < len2: if l1[i1] <= l2...
[ "FrenchBear38@outlook.com" ]
FrenchBear38@outlook.com
39c9cae21ab1ee0cf7cdede5d4282ed5af383a1c
f28bf07217731a8d97fa3d7029df11b2a0506650
/maddpg/buffer.py
78c8abeac3863a7af9c51688bc94145d155c2fbf
[ "MIT" ]
permissive
postBG/deep-reinforcement-learning
7465f7698d91363c8bacd791467f1dbb44bee9a9
5df5662b091c4c3f00beba1aa6f9ce8a52001c93
refs/heads/master
2022-12-18T20:06:08.245460
2021-09-05T09:26:17
2021-09-05T09:26:17
169,988,821
2
0
MIT
2022-12-08T01:44:34
2019-02-10T14:48:16
Jupyter Notebook
UTF-8
Python
false
false
666
py
from collections import deque import random from utilities import transpose_list class ReplayBuffer: def __init__(self,size): self.size = size self.deque = deque(maxlen=self.size) def push(self,transition): """push into the buffer""" input_to_buffer = transpose_list(t...
[ "profile2697@gmail.com" ]
profile2697@gmail.com
71f85e3a685ada74364b5df598a424a483de3dc9
d7e160a2512b9d70b18adbffde4c6d9a61521a12
/DFS/타겟 넘버.py
4b22f473b59b4c2309755e984a9b52cd37ed5ce7
[]
no_license
EoJin-Kim/CodingTest
14b6cf7a3bb45954c065efdf9d1e05143cb321a3
975c753ee572f605f4d9a12a3dc54ab0d437dade
refs/heads/master
2023-06-19T16:06:50.625143
2021-07-14T13:10:17
2021-07-14T13:10:17
356,877,598
0
0
null
null
null
null
UTF-8
Python
false
false
877
py
from itertools import permutations,product ''' def solution(numbers, target): answer = 0 length = len(numbers) expression = [(0,1) for i in range(length)] for exp in product(*expression): result=0 for i in range(length): if exp[i]==0: result+=-numbers[i] ...
[ "62640679+EoJin-Kim@users.noreply.github.com" ]
62640679+EoJin-Kim@users.noreply.github.com
5e414e62692567069edb6c5a647221bd64902bba
aea8fea216234fd48269e4a1830b345c52d85de2
/fhir/resources/devicemetric.py
ed3ffc3f990d216dd34ff39c1317ddd8efaf505f
[ "BSD-3-Clause" ]
permissive
mmabey/fhir.resources
67fce95c6b35bfdc3cbbc8036e02c962a6a7340c
cc73718e9762c04726cd7de240c8f2dd5313cbe1
refs/heads/master
2023-04-12T15:50:30.104992
2020-04-11T17:21:36
2020-04-11T17:21:36
269,712,884
0
0
NOASSERTION
2020-06-05T17:03:04
2020-06-05T17:03:04
null
UTF-8
Python
false
false
6,904
py
# -*- coding: utf-8 -*- """ Profile: http://hl7.org/fhir/StructureDefinition/DeviceMetric Release: R4 Version: 4.0.1 Build ID: 9346c8cc45 Last updated: 2019-11-01T09:29:23.356+11:00 """ import sys from . import backboneelement, domainresource class DeviceMetric(domainresource.DomainResource): """ Measurement, ...
[ "connect2nazrul@gmail.com" ]
connect2nazrul@gmail.com
c94938e0933471f0917f589c92279f67677f80c3
4492b8daf969f839f7803d1af1d3f80858dddd98
/docs/source/webobapp.py
28a0fe44c2dea7a8cea687116296c4bdba372815
[]
no_license
aodag/my-pyramid-katas
59af3b25dfdf68bcd7434cdcb4258c08c43b1012
99cf99ffb646c428cfb3c9d6eec7e593d865d576
refs/heads/master
2020-04-06T03:31:59.912229
2016-06-12T13:14:07
2016-06-12T13:14:07
34,158,089
0
1
null
2016-06-12T13:14:09
2015-04-18T08:14:55
null
UTF-8
Python
false
false
241
py
from webob import Request, Response def application(environ, start_response): request = Request(environ) response = Response(request=request) response.text = "Hello, world!" return response(environ, start_response)
[ "aodagx@gmail.com" ]
aodagx@gmail.com
7bad46d3469e4d662073157681c56a6dcbe87753
a5c33ac6d89b0445ff011d24943d441681fa4af3
/tests/test_gino_sanic.py
7f1f80f0573cb99af36c6eabaffd70e15dc209ec
[ "BSD-3-Clause" ]
permissive
python-gino/gino-sanic
b34490c879d02b163da468d8567bedea70a3afa7
7bc7e98989f1936a17f38ec352a3a7dc7d217753
refs/heads/master
2021-08-24T13:53:16.353243
2020-04-18T17:43:26
2020-04-18T17:43:26
229,087,530
5
7
NOASSERTION
2021-06-02T06:17:14
2019-12-19T15:47:24
Python
UTF-8
Python
false
false
4,512
py
import asyncio import os import ssl import gino import pytest import sanic from gino.ext.sanic import Gino from sanic.response import text, json DB_ARGS = dict( host=os.getenv("DB_HOST", "localhost"), port=os.getenv("DB_PORT", 5432), user=os.getenv("DB_USER", "postgres"), password=os.getenv("DB_PASS",...
[ "fantix.king@gmail.com" ]
fantix.king@gmail.com
cf097de52c3b6aa3b00f61889614ee3666b50615
70fa6468c768d4ec9b4b14fc94fa785da557f1b5
/lib/surface/ml_engine/versions/__init__.py
c540906a54c9770851a877bd986b742229cbf2d1
[ "LicenseRef-scancode-unknown-license-reference", "Apache-2.0" ]
permissive
kylewuolle/google-cloud-sdk
d43286ef646aec053ecd7eb58566ab2075e04e76
75f09ebe779e99fdc3fd13b48621fe12bfaa11aa
refs/heads/master
2020-04-20T22:10:41.774132
2019-01-26T09:29:26
2019-01-26T09:29:26
169,131,028
0
0
NOASSERTION
2019-02-04T19:04:40
2019-02-04T18:58:36
Python
UTF-8
Python
false
false
1,229
py
# -*- coding: utf-8 -*- # # Copyright 2016 Google Inc. 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 requir...
[ "cloudsdk.mirror@gmail.com" ]
cloudsdk.mirror@gmail.com
2982561042ff6a5c182705c130d0c7657f1b9216
1b94c7cfd66804fe8d40b5def35e4b9b18d69ba2
/stubs/google/appengine/api/taskqueue/taskqueue_stub.pyi
7fd103268159098ac1c4bf312540530a305e7979
[ "MIT" ]
permissive
the-blue-alliance/the-blue-alliance
3dc210a9611ce9b240907ffd420f78040318dcdc
6d42f3cdb2f785d192f2871419e58aaae3445029
refs/heads/py3
2023-08-22T21:02:36.398100
2023-08-22T19:14:01
2023-08-22T19:14:01
888,427
344
263
MIT
2023-09-14T18:35:20
2010-09-04T20:34:11
HTML
UTF-8
Python
false
false
5,278
pyi
from google.appengine.api import api_base_pb2 as api_base_pb2, apiproxy_stub as apiproxy_stub, apiproxy_stub_map as apiproxy_stub_map, queueinfo as queueinfo, request_info as request_info from google.appengine.api.taskqueue import taskqueue as taskqueue from google.appengine.runtime import apiproxy_errors as apiproxy_e...
[ "noreply@github.com" ]
the-blue-alliance.noreply@github.com
916a1b892d9ee34ba3b09ce362ccd49f91b02fb8
c10ef416832b3e99e58fb93c85f414d94bbdbc2e
/py3canvas/tests/peer_reviews.py
3f74127f0550f90e37aece9a9ce32d0dd96a9fde
[ "MIT" ]
permissive
tylerclair/py3canvas
83bab26d1624a11acffaeb0392c6a9a38f995f16
7485d458606b65200f0ffa5bbe597a9d0bee189f
refs/heads/master
2021-10-26T03:27:48.418437
2021-10-23T15:07:26
2021-10-23T15:07:26
92,841,638
0
0
null
null
null
null
UTF-8
Python
false
false
3,518
py
"""PeerReviews API Tests for Version 1.0. This is a testing template for the generated PeerReviewsAPI Class. """ import unittest import requests import secrets from py3canvas.apis.peer_reviews import PeerReviewsAPI from py3canvas.apis.peer_reviews import Peerreview class TestPeerReviewsAPI(unittest.TestCase): ""...
[ "tyler.clair@gmail.com" ]
tyler.clair@gmail.com
018066b50c689152a24b32c9026365c72603e07e
398d6a7fb50a2485ef17319028da73a94b166ef8
/01Factory/1-8.py
d11ca0024613770a0e91a31efae0333d0a306ce1
[]
no_license
Yuanoung/TemplateOfDesign
3e7675de97d90f354b32de6863ad8c4b7e2b338a
ea1635ec42d12b1c869db20a31292e063e5d200e
refs/heads/master
2021-04-30T14:28:08.961904
2018-02-12T09:52:36
2018-02-12T09:52:36
121,216,410
0
0
null
null
null
null
UTF-8
Python
false
false
315
py
class Operation(object): @staticmethod def getResult(numberA, op, numberB): if op == "+": return numberA + numberB elif op == "-": return numberA - numberB elif op == "*": return numberA * numberB else: return numberA / numberB
[ "yuanoung@outlook.com" ]
yuanoung@outlook.com
da4403af4ed8be3e36cf4bb7252b4e9888b00a01
93c02201c60da7f9f231f0a87ffe8b32729ce229
/Array/kth-smallest-element.py
a00353263dc369f7777f5c84e850f8a1c7eefbd2
[]
no_license
sudo-hemant/curated_questions_dsa
54aebe021f58f757e519f508f9269798127c7495
8f1097274bfd1d2c6f25def6c16982bbf6d7461c
refs/heads/master
2023-03-14T07:53:00.652525
2021-02-27T07:16:22
2021-02-27T07:16:22
339,599,669
0
0
null
null
null
null
UTF-8
Python
false
false
681
py
# NOTE: it is min heap, every time we pop element, it pops minimum element # and we need smallest element, so we are going to push element by changing its sign import heapq def kthSmallest(arr, l, r, k): ''' arr : given array l : starting index of the array i.e 0 r : ending index of the array i.e s...
[ "sudohemant@gmail.com" ]
sudohemant@gmail.com
10d8de2da1b5848136bd6aa8f35b12ce3cfa57a3
a39f8f5b66314b1084f3a88d8d7a1a791292ea2c
/examples/comboBox1.py
e32adc5343234eac78948d372b4ffc33fa5dc491
[]
no_license
zwlyn/pyqt5try
6d62e28795390c3049ddb6cbb6b761002149e47a
21931c26f0d87b2aa3ba80eef5f0fcd46d54bcdd
refs/heads/master
2020-08-01T02:57:17.683792
2019-10-09T11:10:11
2019-10-09T11:10:11
210,837,208
0
0
null
null
null
null
UTF-8
Python
false
false
929
py
# -*- coding: utf_8 -*- import sys from PyQt5.QtWidgets import (QWidget, QLabel, QComboBox, QApplication) class Example(QWidget): def __init__(self): super().__init__() self.initUI() def initUI(self): self.lbl = QLabel("Ubuntu", self) combo ...
[ "1666013677@qq.com" ]
1666013677@qq.com
42ecacc92a7a98c20a2a14c5f509bf7fb1ac7325
060c340a1f0d24fbf7a3aae573f59ebe2f8a6bbf
/dynamics.py
9a83bedf9d84c999329aba22c4ccc2d70c7cbfba
[ "MIT" ]
permissive
pj1138/MayaToolbox
0052f070de12b34820c4ef107a587b602afe94de
8eabd96eeedcb4242dba4ec15617bad3b81496d7
refs/heads/master
2021-01-13T11:57:57.638751
2017-09-24T18:11:27
2017-09-24T18:11:27
29,816,700
0
0
null
2015-01-25T14:29:02
2015-01-25T14:29:01
null
UTF-8
Python
false
false
1,067
py
# DYNAMICS import pymel.core as py import maya.cmds as mc import maya.mel as mel from math import * from xml.dom.minidom import * from random import uniform as rnd import os import re #~~ from mayatoolbox import * from animation import * def quickDyn(spread=5, num=10, joints=False, bake=False): target = [] g ...
[ "nick@fox-gieg.com" ]
nick@fox-gieg.com
8924478933f7a7524dcaab4f3c7882e74a847575
01fdd206c8c825b30870bdd3f6e75f0aa113b849
/test/record/parser/test_response_whois_nic_tr_status_registered.py
58c44cf2045188ef955e413f45503f6c8c2d0294
[ "MIT" ]
permissive
huyphan/pyyawhois
0fbc5a7d64a53ae6e3393fdc1c7ff0d0ac5f22b5
77fb2f73a9c67989f1d41d98f37037406a69d136
refs/heads/master
2021-01-23T22:42:55.989651
2015-09-19T16:40:06
2015-09-19T16:40:06
23,335,785
0
0
null
null
null
null
UTF-8
Python
false
false
5,978
py
# This file is autogenerated. Do not edit it manually. # If you want change the content of this file, edit # # spec/fixtures/responses/whois.nic.tr/status_registered # # and regenerate the tests with the following script # # $ scripts/generate_tests.py # from nose.tools import * from dateutil.parser import parse ...
[ "dachuy@gmail.com" ]
dachuy@gmail.com
5bc5b5cfffe723fe4f784cb6707c7b054ae384ae
83de24182a7af33c43ee340b57755e73275149ae
/aliyun-python-sdk-imageenhan/aliyunsdkimageenhan/request/v20190930/RecolorImageRequest.py
ff730d30e823cf7d8caf5085eb77484efb0abc51
[ "Apache-2.0" ]
permissive
aliyun/aliyun-openapi-python-sdk
4436ca6c57190ceadbc80f0b1c35b1ab13c00c7f
83fd547946fd6772cf26f338d9653f4316c81d3c
refs/heads/master
2023-08-04T12:32:57.028821
2023-08-04T06:00:29
2023-08-04T06:00:29
39,558,861
1,080
721
NOASSERTION
2023-09-14T08:51:06
2015-07-23T09:39:45
Python
UTF-8
Python
false
false
2,317
py
# Licensed to the Apache Software Foundation (ASF) under one # or more contributor license agreements. See the NOTICE file # distributed with this work for additional information # regarding copyright ownership. The ASF licenses this file # to you under the Apache License, Version 2.0 (the # "License"); you may not u...
[ "sdk-team@alibabacloud.com" ]
sdk-team@alibabacloud.com
76fbb1b839f66900f0ee35447d47bdd4a00613bb
ca7aa979e7059467e158830b76673f5b77a0f5a3
/Python_codes/p03785/s325179868.py
b238757b012a1f39080269d6ad3146db49516bb8
[]
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
402
py
import sys def input(): return sys.stdin.readline().strip() def resolve(): n,c,k=map(int, input().split()) l=[int(input()) for i in range(n)] l.sort() saisyo=l[0] ninzu=1 ans=0 for j in range(1,n): x=l[j]-saisyo if x<=k and ninzu<c: ninzu+=1 else: ...
[ "66529651+Aastha2104@users.noreply.github.com" ]
66529651+Aastha2104@users.noreply.github.com
a308321b6894a652f10d50f0e278a3312baaee0a
9fe1c431568746622ae9533d4694097e576f960c
/prophyle/increment_version.py
0c14ee5978e3dcb21724d129abcae06d142371b3
[ "MIT" ]
permissive
prophyle/prophyle
819cc062714838cd543d99e65ec5075b5a54400c
aa1ed8eebe74d8557090422255f42ee18aaef839
refs/heads/master
2023-08-07T18:47:15.649605
2023-07-26T12:47:36
2023-07-26T12:47:36
49,076,502
13
3
MIT
2023-09-01T18:12:12
2016-01-05T16:03:04
Python
UTF-8
Python
false
false
435
py
#! /usr/bin/env python3 import os import sys vfn = os.path.join(os.path.dirname(sys.argv[0]), "version.py") exec(open(vfn).read()) numbers = VERSION.split(".") numbers[-1] = str(int(numbers[-1]) + 1) version = ".".join(numbers) with open(vfn, "w") as f: f.write('try:\n') f.write(' from __commit import ...
[ "karel.brinda@gmail.com" ]
karel.brinda@gmail.com
909cd365350879c5c496c6bb6d5c9e72bffcfcbd
dbd387349cdbe73200f3a3ab1023abd8a885ad93
/oauth/models.py
786d8b3271d8b0689e94fe0f8368ffe54198c956
[]
no_license
AS207960/oauth
5cb81eaea656f52c39ab2b0f9619bcbc0941661d
3304d2deac926e6de35fe7f0af71bd78e70423e8
refs/heads/master
2023-07-24T01:38:43.116526
2023-07-15T22:11:24
2023-07-15T22:11:24
330,265,651
0
0
null
null
null
null
UTF-8
Python
false
false
4,960
py
from django.db import models from django.urls import reverse from django.conf import settings from django.contrib.auth import get_user_model import uuid import django_keycloak_auth.clients import as207960_utils.models def sync_resource_to_keycloak(self, display_name, resource_type, scopes, urn, view_name, super_save,...
[ "q@misell.cymru" ]
q@misell.cymru
affd3c9683fcd45c1d12c534f88df28b264321b8
60a831fb3c92a9d2a2b52ff7f5a0f665d4692a24
/IronPythonStubs/release/stubs.min/System/__init___parts/UriFormat.py
87f1c147e2e568c5bda247aa1f44e7aca4eb4f3f
[ "MIT" ]
permissive
shnlmn/Rhino-Grasshopper-Scripts
a9411098c5d1bbc55feb782def565d535b27b709
0e43c3c1d09fb12cdbd86a3c4e2ba49982e0f823
refs/heads/master
2020-04-10T18:59:43.518140
2020-04-08T02:49:07
2020-04-08T02:49:07
161,219,695
11
2
null
null
null
null
UTF-8
Python
false
false
946
py
class UriFormat(Enum,IComparable,IFormattable,IConvertible): """ Controls how URI information is escaped. enum UriFormat,values: SafeUnescaped (3),Unescaped (2),UriEscaped (1) """ def __eq__(self,*args): """ x.__eq__(y) <==> x==yx.__eq__(y) <==> x==yx.__eq__(y) <==> x==y """ pass def __format__(self,*args...
[ "magnetscoil@gmail.com" ]
magnetscoil@gmail.com
dbdaecc9c92364b03753ac08fe2fbbe65a16f506
8205128a5a3564a826b4ae432f082a9ed4134316
/algo/binary-search/_0081_SearchInRotatedSortedArray2.py
25bb149045c8c612cc771884a7e6fafa3dfd3833
[]
no_license
ianlai/Note-Python
507094bda9fefa0fe2f45a629076c679178a2c74
ca95110b77152258573b6f1d43e39a316cdcb459
refs/heads/master
2023-03-19T03:26:35.532874
2021-03-10T16:10:51
2021-03-10T16:10:51
68,308,972
0
0
null
null
null
null
UTF-8
Python
false
false
1,300
py
class Solution: def search(self, nums: List[int], target: int) -> int: # Edge cases if nums is None or len(nums) == 0: return False # mset = set(nums) # nums = list(mset) start, end = 0, len(nums)-1 if nums[start] == target: ...
[ "ian.explore.world@gmail.com" ]
ian.explore.world@gmail.com
3514a6464e59eb60826de67c90f064f388efa269
c960c1bf7fd094c031a77a3545bcc797b845edcd
/backend/home/migrations/0002_load_initial_data.py
82ffbac62de87f64c4e07131f4f9260d1101b9ae
[]
no_license
crowdbotics-apps/chatter-22176
e6e67efb11219b9ad5b0a680e2fe75263335e961
a9a30ab3887dc3a766fb99398c3c114ecbd8be99
refs/heads/master
2023-01-02T06:00:27.746009
2020-11-01T03:15:59
2020-11-01T03:15:59
309,014,557
0
0
null
null
null
null
UTF-8
Python
false
false
1,282
py
from django.db import migrations def create_customtext(apps, schema_editor): CustomText = apps.get_model("home", "CustomText") customtext_title = "Chatter" CustomText.objects.create(title=customtext_title) def create_homepage(apps, schema_editor): HomePage = apps.get_model("home", "HomePage") h...
[ "team@crowdbotics.com" ]
team@crowdbotics.com
92660bcaac41f821096bf113adae2d40568e80c3
0d2f636592dc12458254d793f342857298c26f12
/7-15.py
112be3b6c1452fb33aa38df5d6f4edefdae54996
[]
no_license
chenpc1214/test
c6b545dbe13e672f11c58464405e024394fc755b
8610320686c499be2f5fa36ba9f11935aa6d657b
refs/heads/master
2022-12-13T22:44:41.256315
2020-09-08T16:25:49
2020-09-08T16:25:49
255,796,035
0
0
null
null
null
null
UTF-8
Python
false
false
597
py
buyers = [["Jamase",1030],["Curry",893], ["Durant",2050],["Jordan",990], ["David",2110],["Kevin",15000], ["Mary",10050],["Tom",8800],] infinite = list() VIP = list() Gold = list() while buyers: fall_out_buyer = buyers.pop() if fall_out_buyer[1] >= 10000: infinite.append(f...
[ "kkbuger1523@gmail.com" ]
kkbuger1523@gmail.com
4eed67d321cba99d1ee8fd552901b941afb1d2ef
417f6a92e6179e9da3bc65ae5f56bb274cb47152
/vindauga/types/vindauga_object.py
b88066e8a0be97c059dd2c3e90d72d7c53085592
[ "BSD-3-Clause", "BSD-2-Clause" ]
permissive
gabbpuy/vindauga
6504540f79afa0abed7677103ae50c848a1d18b8
04c4def7c1bea135b1b97fdc18f8f45ccd63c40a
refs/heads/master
2023-06-07T23:01:14.918105
2023-06-05T02:07:48
2023-06-05T02:07:48
194,688,774
7
1
null
null
null
null
UTF-8
Python
false
false
515
py
# -*- coding: utf-8 -*- import gettext import logging logger = logging.getLogger(__name__) gettext.install('vindauga') class VindaugaObject: _registry = {} def __init_subclass__(cls, **kwargs): super().__init_subclass__() try: VindaugaObject._registry[cls.name] = cls ex...
[ "akm@unyx.net" ]
akm@unyx.net
66df3c0242eaf51dfc0f6b3c9c7880f5fb7e500e
bf6e7fba9eca62f40ba1a9532994c14e751fdfeb
/test/unit/test_internal_casing.py
b673b60e26e3cd3d9eca90225fd686fc2745b06f
[ "Apache-2.0" ]
permissive
CyberGRX/py2neo
11f1a765d2b629c7b6c3e86cb24e842638b3eec9
e6a50a80f769f21d8024733c4bf83e899443d672
refs/heads/v4.2-grx
2023-04-20T06:46:39.158143
2023-04-05T22:04:27
2023-04-05T22:04:27
171,706,053
0
0
Apache-2.0
2019-02-20T17:42:36
2019-02-20T16:13:12
Python
UTF-8
Python
false
false
1,796
py
#!/usr/bin/env python # -*- encoding: utf-8 -*- # Copyright 2011-2019, Nigel Small # # 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 # # Unle...
[ "nigel@neo4j.com" ]
nigel@neo4j.com
1a01b7e712420553340256f4f54e33c95365a01b
474285a15bf21ac3638249397fe8045b150b1aa5
/usage/bdrc/download_ocr_output.py
7338e331e57b439d6491dd68e15773e2a7aec735
[]
no_license
noncapture1/img2opf
641f40d2db22823deae99ea83789d346940cb82d
af1f2bbcdfed39032fc44292d8105009120fd066
refs/heads/master
2023-04-17T14:12:00.180754
2021-04-29T04:25:27
2021-04-29T04:25:27
null
0
0
null
null
null
null
UTF-8
Python
false
false
2,975
py
import argparse import logging import sys from pathlib import Path from typing import Mapping from bdrc_ocr import ( BATCH_PREFIX, IMAGES, OUTPUT, SERVICE, get_s3_bits, get_s3_image_list, get_s3_prefix_path, get_volume_infos, get_work_local_id, ocr_output_bucket, save_file, ...
[ "ten13zin@gmail.com" ]
ten13zin@gmail.com
613c451c771753b53f7b622d95595e42af3924d2
48e124e97cc776feb0ad6d17b9ef1dfa24e2e474
/sdk/python/pulumi_azure_native/agfoodplatform/v20200512preview/get_farm_beats_model.py
69a86e25db7b166badd191892f7224c7ea92a20c
[ "BSD-3-Clause", "Apache-2.0" ]
permissive
bpkgoud/pulumi-azure-native
0817502630062efbc35134410c4a784b61a4736d
a3215fe1b87fba69294f248017b1591767c2b96c
refs/heads/master
2023-08-29T22:39:49.984212
2021-11-15T12:43:41
2021-11-15T12:43:41
null
0
0
null
null
null
null
UTF-8
Python
false
false
6,205
py
# coding=utf-8 # *** WARNING: this file was generated by the Pulumi SDK Generator. *** # *** Do not edit by hand unless you're certain you know what you are doing! *** import warnings import pulumi import pulumi.runtime from typing import Any, Mapping, Optional, Sequence, Union, overload from ... import _utilities fro...
[ "noreply@github.com" ]
bpkgoud.noreply@github.com
e9f8d7fa5afb1585c089bd9b3b7619c57d787d28
291f0aa9a40eeca26fb08106c952b9347db7dba7
/apps/views/main.py
1d6a6abd023956c00c22858049b0c5c03ba4415f
[ "Apache-2.0" ]
permissive
gaohj/nzflask_bbs
fad10b93f8f495a94d5d6db6f5c60d85c1c85518
36a94c380b78241ed5d1e07edab9618c3e8d477b
refs/heads/master
2022-12-12T21:43:17.417294
2020-03-20T10:28:22
2020-03-20T10:28:22
239,702,874
0
2
Apache-2.0
2022-12-08T03:50:07
2020-02-11T07:34:01
JavaScript
UTF-8
Python
false
false
1,235
py
from flask import Blueprint,render_template,flash,redirect,url_for,request from apps.forms import PostsForm from flask_login import current_user from apps.models import Posts from apps.extensions import db #实例化蓝本对象 main = Blueprint('main',__name__) @main.route('/',methods=['GET','POST']) def index(): form = PostsF...
[ "gaohj@163.com" ]
gaohj@163.com
61e2092b0af89c531bc53eaf2804e05cce81e5ac
be9046ba8823cc5fbb6064db33b195481985cd0e
/hindsight1/management/commands/import_info.py
3015ebe26bc6a091b3104d89038397aff8642223
[ "MIT" ]
permissive
jcaguirre89/mysite
9f692c6f2cd8dc427aba6d9dd3e4e9dc2a349fb2
3b118747d7129d7a249ea2ad7b6644e46e9816f1
refs/heads/master
2022-04-02T22:53:39.107234
2018-12-10T03:16:50
2018-12-10T03:16:50
115,764,839
0
0
MIT
2020-02-11T23:49:34
2017-12-30T01:04:00
Python
UTF-8
Python
false
false
638
py
# -*- coding: utf-8 -*- """ Created on Sat Nov 18 15:44:31 2017 @author: crist """ from hindsight1.models import Sp100 from django.core.management.base import BaseCommand import os #flip directory in production directory = 'C:\\Users\\crist\\mysite\\hindsight1\\static\\hindsight1' #directory = '/home/cristobal/mysi...
[ "cristobal.aguirre89@gmail.com" ]
cristobal.aguirre89@gmail.com
41d8ef2dda318ee3978e8bc8f7e4e6dfeef99995
a52dbc76680dbe4938c4ae81290f2f36f2eae68d
/workflowrepository/urls.py
a41d5bf8d73d619cd0770f7c38858d147acc1f32
[]
no_license
RodriGuerra98/psi
4a9969e71a98b1aaf9b0a74d1cbd1d8ced19b425
b90293c001e65465e6880fe4aaccf0d2d03262b0
refs/heads/master
2022-12-01T01:25:50.234245
2019-05-30T09:54:51
2019-05-30T09:54:51
154,207,653
0
0
null
2022-11-22T02:37:05
2018-10-22T19:55:28
JavaScript
UTF-8
Python
false
false
1,289
py
"""workflowrepository URL Configuration The `urlpatterns` list routes URLs to views. For more information please see: https://docs.djangoproject.com/en/1.11/topics/http/urls/ Examples: Function views 1. Add an import: from my_app import views 2. Add a URL to urlpatterns: url(r'^$', views.home, name='home...
[ "you@example.com" ]
you@example.com
ff3d80ceee2e30e015c033c3b4658ab7e99e95cc
a9386fd8a14e66c27b5059f562dc239f2c4b0ff7
/shared/aspace_agent_mapping/agent_parsers/Famname.py
a14f1904186ea9393cba3b3a0afbb7705a741163
[]
no_license
bentley-historical-library/vandura
20f93e2f9cf2370e40537f863da9f2f19db329a0
0fefc0bf92c2487987a9c23e70187718c3b949f0
refs/heads/master
2021-01-17T00:54:08.023435
2016-11-04T20:00:04
2016-11-04T20:00:04
37,206,505
0
18
null
2016-11-04T20:00:05
2015-06-10T15:45:33
Python
UTF-8
Python
false
false
358
py
import json from vandura.shared.aspace_agent_mapping.agent_parsers.create_famname_json import parse_famname class Famname: def __init__(self, string, auth_id="", auth_source=""): self.data_dict = parse_famname(string, auth_id, auth_source) def get_aspace_json(self): return json.dumps({"publis...
[ "djpillen@umich.edu" ]
djpillen@umich.edu
94d8ad77d72ccf80b5d64fa32c4ea8bcb9553559
5ea1216c24b62c6beab3c6d9d2e2e06a9c58c796
/总题库/105.ConstructBinaryTreefromPreorderandInorderTraversal.py
1bdc7e3cc68a120486922f2d5225c61b60ba3b78
[]
no_license
xiami2019/LeetCode
596de2f093d52b58cf80421f67de03757578cd5f
8d09a56672553ecee4af731796980b2c61c52df2
refs/heads/master
2021-01-02T15:15:13.984178
2020-07-08T01:20:15
2020-07-08T01:20:15
239,675,873
2
0
null
null
null
null
UTF-8
Python
false
false
855
py
# Definition for a binary tree node. # class TreeNode: # def __init__(self, x): # self.val = x # self.left = None # self.right = None class Solution: def buildTreeHelper(self, preorder: List[int], inorder: List[int], inStart: int, inEnd: int) -> TreeNode: if inEnd - inStart < 0:...
[ "435350193@qq.com" ]
435350193@qq.com
c6879728d54c08d070de5533473c59cb546bae77
4266e9b1c59ddef83eede23e0fcbd6e09e0fa5cb
/vs/gyp/test/mac/gyptest-type-envvars.py
b75e094636a0f57ec51dcaf30ca221e66a904e25
[ "BSD-3-Clause" ]
permissive
barrystudy/study
b3ba6ed652d1a0bcf8c2e88a2a693fa5f6bf2115
96f6bb98966d3633b47aaf8e533cd36af253989f
refs/heads/master
2020-12-24T14:53:06.219236
2017-10-23T02:22:28
2017-10-23T02:22:28
41,944,841
0
0
null
null
null
null
UTF-8
Python
false
false
577
py
#!/usr/bin/env python # Copyright (c) 2012 Google Inc. All rights reserved. # Use of this source code is governed by a BSD-style license that can be # found in the LICENSE file. """ Test that MACH_O_TYPE etc are set correctly. """ import TestGyp import sys if sys.platform == 'darwin': test = TestG...
[ "2935973620@qq.com" ]
2935973620@qq.com
01eecb6722bbf993c6ea5ee09043fc12c6f5c5aa
5afcc3b02b7f4fe14e90f33b0a42bfc51b278e19
/matlab_ext/measurement/mc-assistant/projects/py_hw_models/test_sensor_channals.py
f1d57724af0694d74b3bcfb6ffb9bfafd0ed9a71
[ "MIT", "Apache-2.0" ]
permissive
zaqwes8811/micro-apps
c9e51fa7931c9d5625e1517bad7b1593104a50c0
bb1643562751dda70ae4f8bd632a171f1de05df5
refs/heads/master
2023-04-27T21:04:09.457192
2023-04-25T08:41:23
2023-04-25T08:41:23
11,820,285
1
0
null
null
null
null
UTF-8
Python
false
false
1,057
py
#-*- coding: utf-8 -*- import random import unittest # App import models.sensors.one_sensor as sensor_channal class TestSequenceFunctions(unittest.TestCase): def setUp(self): self.seq = range(10) def test_shuffle(self): # make sure the shuffled sequence does not lose any elements r...
[ "ilugansky@arrival.com" ]
ilugansky@arrival.com
d817e562bc6c67af216ebf7ecd5e1a2ab53daf12
f9b3b867abfbfb01ab57cb249a2e0fcb372e435b
/examples/hcaptcha_request_proxy.py
f271ac3797a79202e129afa48a77d6d1ebc8801c
[ "MIT" ]
permissive
ad-m/python-anticaptcha
af615cfd7549d48829adb441b837eed1373fe782
076922ee646483328c580c6623f7cb49a2ea4493
refs/heads/master
2022-05-17T17:18:51.638547
2022-03-28T03:44:41
2022-03-28T03:44:41
95,789,669
241
66
MIT
2022-03-28T03:38:57
2017-06-29T15:05:36
Python
UTF-8
Python
false
false
1,564
py
from six.moves.urllib import parse import re import requests from os import environ from python_anticaptcha import AnticaptchaClient, HCaptchaTask api_key = environ["KEY"] proxy_url = environ["PROXY_URL"] # eg. socks5://user:password/123.123.123.123:8888/ site_key_pattern = 'data-sitekey="(.+?)"' url = "http://hcap...
[ "naczelnik@jawnosc.tk" ]
naczelnik@jawnosc.tk
c3ab1e1ec0477a77f93cd10d4c0a7d9ae3f4be26
43acaf9718b0a62594ed8e42b6c01099acd2d075
/apps/lista/migrations/0030_auto_20200402_1450.py
8d2059b1ff3c88db1f6e081b9f5468bc816c8f87
[]
no_license
JmSubelza/Demo
2f357889975c183b4a0f627330a80e535823faea
affceeadb87f1f14fb4e481851a1ac107e512f48
refs/heads/master
2023-05-14T18:16:38.153963
2020-04-28T16:15:27
2020-04-28T16:15:27
null
0
0
null
null
null
null
UTF-8
Python
false
false
848
py
# -*- coding: utf-8 -*- # Generated by Django 1.11 on 2020-04-02 19:50 from __future__ import unicode_literals import datetime from django.db import migrations, models from django.utils.timezone import utc class Migration(migrations.Migration): dependencies = [ ('lista', '0029_auto_20200331_1704'), ...
[ "Chrisstianandres@gmail.com" ]
Chrisstianandres@gmail.com