blob_id
stringlengths
40
40
directory_id
stringlengths
40
40
path
stringlengths
2
616
content_id
stringlengths
40
40
detected_licenses
listlengths
0
69
license_type
stringclasses
2 values
repo_name
stringlengths
5
118
snapshot_id
stringlengths
40
40
revision_id
stringlengths
40
40
branch_name
stringlengths
4
63
visit_date
timestamp[us]
revision_date
timestamp[us]
committer_date
timestamp[us]
github_id
int64
2.91k
686M
star_events_count
int64
0
209k
fork_events_count
int64
0
110k
gha_license_id
stringclasses
23 values
gha_event_created_at
timestamp[us]
gha_created_at
timestamp[us]
gha_language
stringclasses
220 values
src_encoding
stringclasses
30 values
language
stringclasses
1 value
is_vendor
bool
2 classes
is_generated
bool
2 classes
length_bytes
int64
2
10.3M
extension
stringclasses
257 values
content
stringlengths
2
10.3M
authors
listlengths
1
1
author_id
stringlengths
0
212
bcb8bf4c3d80cd5e54a047f3b9db444bb171f47e
753532ab35fc3d83b750b1b79603cc1613408523
/liqian/UCSD/research/research/spiders/UCSDSpider.py
da674e1f7a544f8d15dfbacd832fc5443d9d41d1
[ "Unlicense" ]
permissive
doge-search/webdoge
4e9435f2ba744201adca1bfe2288994e1f284f00
443e758b5c1f962d5c2fe792cdbed01e1208b1cb
refs/heads/master
2021-01-15T08:16:34.357284
2016-06-15T17:22:43
2016-06-15T17:22:43
54,782,220
0
0
null
null
null
null
UTF-8
Python
false
false
1,379
py
import scrapy from scrapy.http import FormRequest import re from research.items import ResearchItem import sys reload(sys) sys.setdefaultencoding('utf-8') postname = "abc" class CaltechSpider(scrapy.Spider): name = "ucsd" allowed_domains = ["jacobsschool.ucsd.edu"] start_urls = ["http://jacobsschool.ucsd.edu/faculty...
[ "liqian.cs@gmail.com" ]
liqian.cs@gmail.com
3f7e20835a7fd86fe8ba02db4fc07183a8847b8a
ac1a67e95027d0ac4642cb809a9cf73782b12341
/preprocessing.py
e8463280b190d0f394b86562256180f5fa34304e
[]
no_license
cpgaffney1/cs231n
79cbc5a6c030f1e3428aac1d972b318b80ed1cf7
e230753dcdf266f4c06b1d63e665ca36dea3add5
refs/heads/master
2021-06-04T02:27:02.069525
2019-11-27T19:43:11
2019-11-27T19:43:11
130,610,673
0
0
null
null
null
null
UTF-8
Python
false
false
5,582
py
import os from PIL import Image import numpy as np import util import sys def process_data_batch_and_write(batchnum, filenames, text_data, numeric_data): i = 0 img_arrays = [] x_shapes = [] y_shapes = [] zpid_list = {} for file in filenames: if i % 100 == 0: sys.stdout.write...
[ "cgaffney@stanford.edu" ]
cgaffney@stanford.edu
6b091982c00c4c87893ece4161b1b801fddc4ed4
d5acc40e766857c2399013c5228fc4f02b2f5210
/python/41 - pandigital prime.py
b012c97c2db6ce1baba569f8be217f62d4f573a7
[]
no_license
celvro/euler
a79dec92620fedfaaa5789a29d964395488fc1d8
f76d6f00efd9db26b9caad72e94110d5ef972b37
refs/heads/master
2016-09-10T03:21:41.417156
2015-04-30T21:27:38
2015-04-30T21:27:38
20,080,352
0
0
null
null
null
null
UTF-8
Python
false
false
191
py
from util import prime import itertools x = [] for i in itertools.permutations('1234567'): num = (''.join(i))[::-1] if prime(int(num)): x.append(num) print max(x)
[ "dwlfk2@mst.edu" ]
dwlfk2@mst.edu
217b18fed616cde55be1ebb5f4f04e0e3fd399a9
3f171049906579115ae02e046374a62805893935
/mesh/geometry.py
a123f5846b9da7bf5fa6cf9e506e21b3440c0c61
[]
no_license
piyushagru/smart-match
9fac3e170988d2c36209bdcf361756d02640d1ea
96e2c6f4ad4b0c124bc375b411ac4326c401d66d
refs/heads/main
2023-04-16T05:24:54.789025
2023-04-01T11:52:42
2023-04-01T11:52:42
309,167,267
1
0
null
2023-04-01T08:43:09
2020-11-01T19:03:07
Jupyter Notebook
UTF-8
Python
false
false
7,452
py
import numpy as np import tensorflow as tf import scipy.sparse as sp def sparse_to_tensor(x): coo = x.tocoo() indices = np.mat([coo.row, coo.col]).transpose() return tf.sparse.reorder(tf.SparseTensor(indices, coo.data, coo.shape)) def sparse_dense_matmul_batch(a, b): num_b = tf.shape(b)[0] shape...
[ "khushgrover16@gmail.com" ]
khushgrover16@gmail.com
79721e05ee944e87e9420fe7e05baa78184b0db0
16b03199949be9d18e4487419667180cb2c232ca
/testLocation.py
9d751858a43bbc599bba07dfdfb30837961b0162
[]
no_license
hellokathy/MarketSim
30b115967b66cf43fb57fc52b28235abd04d7d42
e2dfbc3f8912badc7987e806887eb9f3c338d28a
refs/heads/master
2021-01-23T02:59:36.273443
2014-09-05T19:13:03
2014-09-05T19:13:03
null
0
0
null
null
null
null
UTF-8
Python
false
false
857
py
from location import * from exchange import Exchange from agent import Agent import unittest class TestLocation(unittest.TestCase): def setUp(self): exchange1 = Exchange() exchange2 = Exchange() self.location1 = Location(exchange1) self.location2 = Location(exchange2) self...
[ "delbalso@gmail.com" ]
delbalso@gmail.com
90e8d38ca104a9333d1b862e16bbc7ebd1820480
ca7aa979e7059467e158830b76673f5b77a0f5a3
/Python_codes/p02747/s534963942.py
e59afea127c18cba4bb7f22ef8a7070d00c3b7dd
[]
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
117
py
S = str(input()) S_size = len(S) hi_size = S.count('hi') if S_size == hi_size * 2: print('Yes') else: print('No')
[ "66529651+Aastha2104@users.noreply.github.com" ]
66529651+Aastha2104@users.noreply.github.com
28f27209663b924166d6625334c52add25361c31
a6509a854dfb0d7ce32a61edd4c380c7f066947e
/ui/appPopUpSecurity.py
27174f20727fe2ab7f610df84540ba6be9cec3f6
[ "MIT" ]
permissive
Penmast/Chameleon
70d81bd4dd1e4fa3c77fbdc4edf7f0c5493e5ba8
91f79a4640dede099f6e2a4757053f04cdc186f0
refs/heads/master
2021-05-03T04:58:44.931277
2018-02-08T21:21:55
2018-02-08T21:21:55
120,628,478
21
6
null
null
null
null
UTF-8
Python
false
false
5,647
py
# -*- coding: utf-8 -*- # self implementation generated from reading ui file 'appPopUpSecurity.ui' # # Created by: PyQt5 UI code generator 5.6 # # WARNING! All changes made in this file will be lost! from PyQt5.QtCore import * from PyQt5.QtGui import * from PyQt5.QtWidgets import * ### The form for the duration of a...
[ "deray@edu.ece.fr" ]
deray@edu.ece.fr
3a74b3ab2a1cc28993c4ea0595eb0e7747c7cdf1
fede8e979d4297a8bfca8ef2f7ed84de68dfb373
/14_exceptions.py
b7da4d089a471723ba4db92e1b8750144f0dc571
[]
no_license
atrukhanov/routine_python
8d17d5998d270348fecd766b77e7cd21cc6d0f76
da1eec5d9e7344449c8eb26b3a2c445834f9513e
refs/heads/master
2022-12-17T09:44:38.642554
2020-09-18T09:54:39
2020-09-18T09:54:39
294,264,454
0
0
null
2020-09-10T00:51:19
2020-09-10T00:51:18
null
UTF-8
Python
false
false
39
py
import xml import lxml import requests
[ "iampopovich@gmail.com" ]
iampopovich@gmail.com
ace782b57ad01f2d7acf5a6f3a1fa578a001f116
801f4a6a58515c0d658dc3a5ebff50fa048819f4
/service-flask/manage.py
a0b0ef7af6327197089d8a7139d9db4e53c1148b
[]
no_license
omdv/crypto-git-tracker
5456eb627d671087fa874faa10782d14a1a678b8
ee7a7109e3a598de26cc192a3bcfaadc55701dbe
refs/heads/master
2021-04-06T07:33:21.466435
2018-04-12T01:01:57
2018-04-12T01:01:57
124,619,462
0
0
null
null
null
null
UTF-8
Python
false
false
2,013
py
import unittest import coverage from flask_script import Manager from project import create_app, db from project.api.models import RepoControlRecord from project.tests.custom_test_runner import TimeLoggingTest COV = coverage.coverage( branch=True, include='project/*', omit=[ 'project/tests/*' ]...
[ "omdv@fastmail.com" ]
omdv@fastmail.com
d65dd43c9764aa5c4b8e093dd79520e1a748eb71
7b0f9a984dca4ad3fa536cf6ecd8f6654db02420
/tencentcloud/live/v20180801/models.py
15eaac07bf2987d54808c969fbf9decd6cab2b38
[ "Apache-2.0" ]
permissive
SpencerHoGD/tencentcloud-sdk-python
8cb6756722ec571f140a2dd8d2ade897f8bbd0c5
c90e7719a253ea7928d4a510987df3ea6f3c23ac
refs/heads/master
2020-06-27T13:24:31.736521
2019-07-26T10:31:52
2019-07-26T10:31:52
null
0
0
null
null
null
null
UTF-8
Python
false
false
212,493
py
# -*- coding: utf8 -*- # Copyright (c) 2017-2018 THL A29 Limited, a Tencent company. 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...
[ "tencentcloudapi@tencent.com" ]
tencentcloudapi@tencent.com
09e4f93dfe0a7dbf721add15e86b819a1a93c6b9
d475a6cf49c0b2d40895ff6d48ca9b0298643a87
/pyleecan/Classes/SlotW24.py
984f0065ae9048217d93f3adee011ed7f89dd645
[ "Apache-2.0" ]
permissive
lyhehehe/pyleecan
6c4a52b17a083fe29fdc8dcd989a3d20feb844d9
421e9a843bf30d796415c77dc934546adffd1cd7
refs/heads/master
2021-07-05T17:42:02.813128
2020-09-03T14:27:03
2020-09-03T14:27:03
176,678,325
2
0
null
2019-03-20T07:28:06
2019-03-20T07:28:06
null
UTF-8
Python
false
false
9,973
py
# -*- coding: utf-8 -*- # File generated according to Generator/ClassesRef/Slot/SlotW24.csv # WARNING! All changes made in this file will be lost! """Method code available at https://github.com/Eomys/pyleecan/tree/master/pyleecan/Methods/Slot/SlotW24 """ from os import linesep from logging import getLogger from ._chec...
[ "sebgue@gmx.net" ]
sebgue@gmx.net
647d7e5364848034896ddc8bb3b7b7f3c0eb4671
eb73d4fa1a6f62f6406ca230699397925856b013
/src/transformers/models/poolformer/image_processing_poolformer.py
99ac07c510a516b45a0a7f0ad67fdda67ce89499
[ "Apache-2.0" ]
permissive
MerHS/transformers
f3ece97926e8883fb43f321937c5b5af7731fe70
d447c460b16626c656e4d7a9425f648fe69517b3
refs/heads/main
2023-02-20T13:38:31.756752
2022-11-03T16:56:22
2022-11-03T16:56:22
561,655,525
0
0
Apache-2.0
2022-11-04T07:21:06
2022-11-04T07:21:04
null
UTF-8
Python
false
false
18,311
py
# coding=utf-8 # Copyright 2022 The HuggingFace Inc. team. 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 r...
[ "noreply@github.com" ]
MerHS.noreply@github.com
840f4bbfbecf36b0fca0ba5c41b0fcca167ee681
4d8c7a0b760abb796ea3ce6160ec9cd88faa62ea
/src/coordsim/reader/reader.py
f029d534275ff7d5032b5f304f7444b2089a6203
[]
no_license
DatLQ95/simulation_network
cd1d3efe1720e9c45cc832641f746f924245d532
06a439579ebf5bb47aef79f5c47a8f756381fd17
refs/heads/master
2023-07-19T07:42:25.358624
2021-09-04T15:41:47
2021-09-04T15:41:47
403,074,087
0
0
null
null
null
null
UTF-8
Python
false
false
11,377
py
import networkx as nx from geopy.distance import distance as dist import numpy as np import logging import yaml import math from collections import defaultdict import importlib import csv log = logging.getLogger(__name__) # Disclaimer: Some snippets of the following file were imported/modified from B-JointSP on GitHu...
[ "luongquocdat.hust@gmail.com" ]
luongquocdat.hust@gmail.com
5f4e1fee590a9fadc29ea5ac318730f216eca1c0
9752c5fad298864a3328170aa6017bc4b6db9d18
/ref/importing_data/sanity_check.py
5ceaebcee328057ea8c6de3aa12631e0d9cd5759
[ "MIT" ]
permissive
dli-invest/investing-experiments
69dfa3e4adfbb8d1074732eb4aa82be3b660470f
ed5ec66b6151e6eb0b560bca3485af77985fecfd
refs/heads/master
2023-04-07T23:37:49.166285
2021-04-19T16:47:22
2021-04-19T16:47:22
295,036,615
0
0
null
null
null
null
UTF-8
Python
false
false
306
py
import os from zipline.utils.run_algo import load_extensions load_extensions( default=True, extensions=[], strict=True, environ=os.environ, ) from zipline.data import bundles bundle = bundles.load('eu_stocks') data = bundle.asset_finder.retrieve_all(bundle.asset_finder.sids) print(data)
[ "noreply@github.com" ]
dli-invest.noreply@github.com
3ddb4e47db5a0d30bc1e38c5d8c3e051f3906458
9543bcb3abe1adab6b2e9bfedcd3651e36173fa5
/jobs/models.py
b90048df0fe010220c6554b239981f4294167bae
[]
no_license
nothing2aKING/my_portfolio
b5394b15f196276373fa469066d0514e7cde5dab
51c23bb1d146a47464923397489bb47541f07226
refs/heads/master
2020-09-17T07:12:41.107023
2019-11-25T20:14:13
2019-11-25T20:14:13
223,784,150
0
0
null
null
null
null
UTF-8
Python
false
false
1,061
py
from django.db import models # Create your models here. #DB table class Job(models.Model): #upload a image image = models.ImageField(upload_to='images/') #input summary of job summary = models.CharField(max_length=200) #input github link github = models.URLField(max_length=100, def...
[ "amking15@gmail.com" ]
amking15@gmail.com
7b73c090cdc64e94afc687def5a36b63a87a369b
03f36f36f2ae165d08d3c75a9873ef1d13f6ffa6
/Ćwiczenia_5/Zadanie_4.py
c41227848273ef3e62fdde02a2dce4297ba58dd4
[]
no_license
KrzysiekMiskowicz/WDI
c1e7bb9ff8991afbdad6da779c32f48b0519c6be
33a791ede8b30f3be5ea40bddd6aa17c618dc257
refs/heads/master
2023-04-05T15:23:39.445843
2021-04-10T14:20:43
2021-04-10T14:20:43
304,461,528
0
0
null
null
null
null
UTF-8
Python
false
false
3,175
py
import random class ulamek: def __init__(self, l = 1, m = 1): self.l = l self.m = m def wczytanie(self): l = int(input("Podaj licznik -> ")) m = int(input("Podaj mianownik -> ")) self. l = l self.m = m def wypisywanie(self): print("(", self.l, "/", ...
[ "miskowicz@student.agh.edu.pl" ]
miskowicz@student.agh.edu.pl
22985f2d819e9b6edb91e3975998fac5bee4bad6
fad526f1c2ecda4d57343f597cef327f26f6ab35
/setup.py
1e5f442e70eb4c64c157e274919fad05f0475483
[ "Apache-2.0" ]
permissive
lofoyet/SchoolDigger-Scraper
53651aad7a11d531dfc06c9a2b08fe0222a170a2
98b329bad99534ef0f234ffb11ec1e19fdd875b2
refs/heads/master
2022-12-09T16:32:11.752836
2019-01-21T17:14:25
2019-01-21T17:14:25
166,749,962
1
1
Apache-2.0
2022-12-08T01:33:38
2019-01-21T04:48:23
Python
UTF-8
Python
false
false
606
py
"""Install and setup.""" from distutils.core import setup setup( name="SchoolDigger-Scraper", version="1.0.0", python_requires=">=3.6", packages=[ # this will put these dirs into site-packges/ "schooldiggerscraper", ], install_requires=[ "beautifulsoup4==4.7.1", "click=...
[ "tonylove5251@gmail.com" ]
tonylove5251@gmail.com
01c90cf3b10ff564d8bd1c1485a176a7793c5f09
b3cb4015ca65774c670165c49a8e6069114cce8d
/preprocessing_old.py
2fe1bfc305d3f7dba22aa7b0a38f490e2b92a716
[]
no_license
pynlpteam/PySupport
b1477038b9fea2873efa627d2d40bcd0f57dc79e
cca3ad21758ab4d43a865b94a0949eb5ffa2efa4
refs/heads/master
2021-05-10T14:23:04.914865
2018-01-27T08:50:31
2018-01-27T08:50:31
118,516,520
1
1
null
null
null
null
UTF-8
Python
false
false
2,610
py
# general import os import re import inspect import itertools import dill as pickle import string from collections import Counter # NLP tools import enchant import nltk from nltk.corpus import stopwords from nltk.probability import FreqDist from pymystem3 import Mystem import pymorphy2 # from Preprocessing.Dicts impo...
[ "tonko22x@gmail.com" ]
tonko22x@gmail.com
8064b003bf8f32b09274eb5f0e59a4fb83ace17d
eeddca8c1041c3abbf39698d0da79cf63a210fff
/hello.py
f258045f4f064636cb0f4193dd5b0401f8162b49
[]
no_license
aftana/st-web51
f4917eaa72720ad79e901bab0be0e30ebc9df549
270b34d71e7995ce3d611012f12f60e98f2d54c8
refs/heads/master
2020-12-02T21:00:25.734887
2017-07-04T18:53:56
2017-07-04T18:53:56
96,243,103
0
0
null
null
null
null
UTF-8
Python
false
false
336
py
def app(environ, start_response): raw_uri = str(environ.get('RAW_URI')) raw_uri = raw_uri[2:] params = raw_uri.split('&') data = '' for param in params: data += param + '\r\n' start_response("200 OK", [ ("Content-Type", "text/plain"), ("Content-Length", str(len(data))) ]) ret...
[ "art-mint@mint.com" ]
art-mint@mint.com
0ec055a25cc8a0344ce78bd9d4773178113d80f6
77ec9edf40b34b48477a627d149b6c2054b98a93
/abc_179_d.py
7b6ac7b449986dfe9275cb4f4fd8e0cb8b57219c
[]
no_license
junkhp/atcorder
fa4eeb204e3a4ac713001ab89c205039703abc88
028ddf7a39534d5907232c4576a03af79feb6073
refs/heads/main
2023-04-11T02:15:10.088883
2021-04-22T07:06:06
2021-04-22T07:06:06
313,284,147
0
0
null
null
null
null
UTF-8
Python
false
false
528
py
def main(): n, k = map(int, input().split()) move_set = set([]) for i in range(k): a, b = map(int, input().split()) for j in range(a, b + 1): move_set.add(j) sorted_set = sorted(move_set) # print(sorted_set) dp = [0] * (n + 1) dp[1] = 1 for i in range(2, n+1)...
[ "oshiba@m.cs.osakafu-u.ac.jp" ]
oshiba@m.cs.osakafu-u.ac.jp
c54e9e33e7d6fda10fa9d5b3a9099374742748b8
6b0d165bad59b1af4a20b469d8a222370b9b5354
/beer_warehouse/Scripts/django-admin.py
498f0fa4364d5904d8fbd4e22e8e5fdbf8915409
[]
no_license
juansanluq/DjangoTest
2a2df82f8ea42e18f869bf66084e4998739e57a6
b8998caa382cef4d22c2a601207bd483b43ab9d4
refs/heads/master
2022-11-01T08:07:23.301570
2019-01-22T14:48:03
2019-01-22T14:48:03
164,463,799
0
1
null
2022-10-28T10:32:28
2019-01-07T16:59:30
Python
UTF-8
Python
false
false
156
py
#!C:\DjangoTest\beer_warehouse\Scripts\python.exe from django.core import management if __name__ == "__main__": management.execute_from_command_line()
[ "juansanluq@gmail.com" ]
juansanluq@gmail.com
78f4cff367c9710e80472df1cc9098fe72783fbe
7082709e5734a8d6034efac6865208baf53f5ae7
/chuckNorris/lib/python3.7/re.py
f504328aa7b7e02f376f72231abb05dccc3d7adf
[ "BSD-3-Clause" ]
permissive
KevinFerin/chuck-norris-facts-api
0c092dbc9f0a371a51cda36324fff69cdf3346c7
3520a4e23c8fbfda782ad31c9970361d6abb36df
refs/heads/development
2020-09-10T14:36:04.480028
2019-11-14T14:57:59
2019-11-14T14:57:59
221,721,752
0
0
null
2019-11-21T13:00:21
2019-11-14T14:52:27
Python
UTF-8
Python
false
false
41
py
/home/kevin/anaconda3/lib/python3.7/re.py
[ "kevin.ferin.3@gmail.com" ]
kevin.ferin.3@gmail.com
71b0e1044d36d090db6eb4f4f05206c2821b9c58
50886163b2e74287654574527ffb9eb48d5e100e
/Tech Documents/设计模式(python版)/工厂模式/abstract_factory.py
603863303dd7487eb2d7127558ac90953a85d9dc
[]
no_license
13241308289/Documents
56222b45a38875bb7e53e302dfc0c23fd156e790
cd7cf3f2d51e1bfcea79bb58839bab582e48c8a6
refs/heads/master
2020-05-24T01:18:56.690083
2019-05-18T03:33:07
2019-05-18T03:33:07
187,030,787
0
0
null
null
null
null
UTF-8
Python
false
false
2,020
py
# -*- encoding: utf-8 -*- # ##################抽象工厂##################### class Frog: def __init__(self, name): self.name = name def __str__(self): return self.name def interact_with(self, obstacle): print('{} the Frog encounters {} and {}!'.format(self, obstacle, obstacle.action())) cl...
[ "2519960931@qq.com" ]
2519960931@qq.com
8df10d67c0578696c321b29a4292c832ffce104d
3955734e46e6b6ecc2713d5edb02507d15a329af
/sifter/grammar/comparator.py
554c112bbed88675dd045a7fd37d392ba37f68d7
[ "BSD-2-Clause" ]
permissive
python-sifter/sifter
987de046c1fa29cf4fdfbc6ff37cb142fa6a001b
cb2656ac47125e9e06c9bdda56193da41cc340a8
refs/heads/master
2022-12-20T21:52:48.935455
2020-09-07T05:27:01
2020-09-07T05:27:01
1,018,454
0
0
BSD-2-Clause
2020-10-16T17:19:53
2010-10-23T21:43:26
Python
UTF-8
Python
false
false
1,503
py
import re import sifter.comparator __all__ = ('Comparator',) # The official definition of comparators is in RFC 4790 class Comparator(object): @classmethod def register(cls): try: sifter.comparator.register(cls.COMPARATOR_ID, cls) except AttributeError: # this method ...
[ "gary@realify.com" ]
gary@realify.com
b7524f91f759d248026093ecf9ca391fb5b8aa99
d0fbfd9448033e76239141e6ce05b6a92d662f42
/others/cannibals.py
70c0a75d1585f0ddf60340ead0d72420e7b84b8b
[ "MIT" ]
permissive
Mifour/Algorithms
7d01d8a83de927ba41d7a7c03f3ad71616da282a
77cfafc49bc0130da0f6041b169a15053f81af87
refs/heads/master
2020-09-29T21:33:40.235011
2020-02-25T14:34:22
2020-02-25T14:34:22
227,127,938
0
0
null
null
null
null
UTF-8
Python
false
false
816
py
""" This is just a fun play with classes and recursion 'We are what we eat' Then only cannibals that eat humans are human? Only if the human himself ate another cannibal that ate another cannibal that ate another... This create such class and try to get a Human object that is human according to this criteria...
[ "dufour.thomas@hotmail.fr" ]
dufour.thomas@hotmail.fr
281ad853afa50f156cc560eb9efde70e9130b00e
40e09fc848fac3bc523802e353c4e8bef9e3cf5e
/pyvore/pyvore/managers/sessions.py
9f5d60dbae366a036b85d684f0aee266d2320f5c
[]
no_license
sontek/pycon2012
8ff24ce51770e0fb6a40ec9a510e958b9b9f309b
79d417d185030c0af247506b49903744088abe65
refs/heads/master
2016-09-05T19:56:18.702274
2012-03-17T05:53:46
2012-03-17T05:53:46
3,627,137
3
0
null
null
null
null
UTF-8
Python
false
false
338
py
from pyvore.managers import BaseManager from pyvore.models.sessions import Session from pyvore.models.sessions import Chat class SessionManager(BaseManager): def get_sessions(self): return self.session.query(Session).all() def get_chatlog(self, pk): return self.session.query(Chat).filter(Chat....
[ "sontek@gmail.com" ]
sontek@gmail.com
44e898de8b26e5a201cf475e7ab019e44ead146d
67379c2ae929266f303edc783c8c62edb521174b
/exception/TransactionException.py
255a542bbd984278db4669c881c1ac6ca58f723b
[]
no_license
bbb11808/seata-python
d20be83093d6d084ad36d9292a8ee18ad3bfc8c6
c53b605be423c781d38e599e5bade8df8c81c2d9
refs/heads/master
2023-02-11T01:22:18.488881
2021-01-05T10:10:08
2021-01-05T10:10:08
null
0
0
null
null
null
null
UTF-8
Python
false
false
257
py
#!/usr/bin/env python3 # -*- coding:utf-8 -*- # @author jsbxyyx # @since 1.0 class TransactionException(Exception): def __init__(self, code, message=None, cause=None): self.code = code self.message = message self.cause = cause
[ "jsbxyyx@163.com" ]
jsbxyyx@163.com
b734ae887f040770988e1aeddbeed4bf976f5f8f
3858624710870b088e44abbc92a13be5ac449636
/myntradb/build/lib/myntradb/user/migrations/0001_initial.py
faa8c53e04bb2c514589e30b973dfeca93b24acc
[]
no_license
nehashewale/myntradb
733a6088717a2bab9c2a7fcc5cb601d9d7d3ae44
230b5bbdf91deaec6c88ad4f217db41370ba60f2
refs/heads/master
2023-06-24T10:30:26.804560
2021-07-29T07:09:17
2021-07-29T07:09:17
387,231,652
0
0
null
null
null
null
UTF-8
Python
false
false
1,790
py
# Generated by Django 2.1 on 2021-07-20 16:57 from django.db import migrations, models import django.db.models.deletion class Migration(migrations.Migration): initial = True dependencies = [ ] operations = [ migrations.CreateModel( name='Address', fields=[ ...
[ "nehashewale3010@gmail.com" ]
nehashewale3010@gmail.com
359bcec8a0f6c63dc3d1930f122275371211dbc2
ed41c5ea889a0f3490480842700f6cd6f192bbe2
/pdfWeights/limit_ratio/limit_ratio.py
92175af634b571bfb12257b384323f47249a263e
[]
no_license
yeshaq/RA1
210a4f10fb821ec2f7677c06a2d78424b2593dee
f624dcf96e75ad15bffd497e4e404566ce4d3e9d
refs/heads/master
2020-03-29T12:25:43.640322
2014-07-19T23:04:29
2014-07-19T23:04:29
null
0
0
null
null
null
null
UTF-8
Python
false
false
5,844
py
import ROOT as r import os, math, re canvas = r.TCanvas() canvas.SetRightMargin(0.16) #canvas.SetLeftMargin(.13) canvas.SetTickx() canvas.SetTicky() r.gStyle.SetNumberContours(40) models = ["T2bb","T1bbbb"][0:1] pdfSets = ["ct61","ct10","ct66","ms08","nn21"][0:6] histos = ["ExpectedUpperLimit", "UpperLimit"] dirs = ["...
[ "yeshaq@yossof-UX31E.(none)" ]
yeshaq@yossof-UX31E.(none)
24fdfca44f0e6b00c7b37ca6c0d310609d5f2966
c6a0a1d40733a5de1831f66449c32a874fe58c06
/headteacher/migrations/0001_initial.py
f7ffaeea5ed52eb13ae8dc6b1621eeff36ecc8e3
[]
no_license
ZhibekSolp/School
6acc26184a2f7e6b7bcd2fdf55736f196514bf57
aedec7d9ddf6e3d55f047229c7d8fadbae6fc57c
refs/heads/master
2023-07-19T00:37:51.001181
2021-09-11T16:21:54
2021-09-11T16:21:54
405,304,849
0
0
null
2021-09-11T14:25:29
2021-09-11T06:42:18
Python
UTF-8
Python
false
false
810
py
# Generated by Django 3.2.7 on 2021-09-11 16:19 from django.db import migrations, models class Migration(migrations.Migration): initial = True dependencies = [ ] operations = [ migrations.CreateModel( name='HeadTeacher', fields=[ ('id', models.BigAut...
[ "ZhibekSolp.solpieva.zhibek@gmail.com" ]
ZhibekSolp.solpieva.zhibek@gmail.com
aa9b63a239b9f54f9432e9d9b26b9cc92fb1fa36
52691f6d8a16b2c4ac7ae100c901a327e778f87c
/deniallist.py
ac67f79a1178fd3cf1a04af574684ddcb03225f6
[]
no_license
C4st3ll4n/hotel_flask
7e4b0780ee24bae5099fe9a9fa200792a9926a41
3840a092b85e51f9356408f41c46fcc5fee621e5
refs/heads/master
2023-01-22T07:13:19.743084
2020-11-28T20:02:57
2020-11-28T20:02:57
312,084,163
0
0
null
2020-11-17T22:04:53
2020-11-11T20:38:42
Python
UTF-8
Python
false
false
21
py
DENIALLIST = set()
[ "henrique.souza@elostecnologia.com.br" ]
henrique.souza@elostecnologia.com.br
6238087954696c8b3ef8a9e8a1d63d31f9315dbc
d0346b154f34fb18f311ab0265da8b5a81f1d984
/Server/train_model.py
b0ff715af655e6da3eb5dd7e2c860754e2fc1669
[]
no_license
NikolasBurzynski/HackBU2020
229cdb6e663b2228ef0a34790bd4fea59db5f578
ff33b188434303df5a831d481757e56e72112e5c
refs/heads/master
2022-12-26T05:02:05.362891
2020-02-11T04:52:47
2020-02-11T04:52:47
301,014,539
0
0
null
null
null
null
UTF-8
Python
false
false
1,411
py
# USAGE # python train_model.py --embeddings output/embeddings.pickle # --recognizer output/recognizer.pickle --le output/le.pickle # import the necessary packages from sklearn.preprocessing import LabelEncoder from sklearn.svm import SVC import argparse import pickle # construct the argument parser and parse the ar...
[ "jujubuscus@gmail.com" ]
jujubuscus@gmail.com
2e98cf7b13c0ef50f478875dc45266c668e6ed04
1e07ebba0d691a53ed9859c4514fa0fa26096948
/fund5/settings.py
12baf04fdb20e9fddd3607b137e9d5cc75cc914e
[]
no_license
frankbriones/fundacion
bf52a9be94348306b55506677c173428cc626fc1
9742d244526374aa4bbcb6c338b33a698c751a1d
refs/heads/master
2022-12-22T12:29:39.106710
2019-11-08T00:25:04
2019-11-08T00:25:04
191,661,945
3
0
null
null
null
null
UTF-8
Python
false
false
6,337
py
""" Django settings for fund5 project. Generated by 'django-admin startproject' using Django 2.1.1. For more information on this file, see https://docs.djangoproject.com/en/2.1/topics/settings/ For the full list of settings and their values, see https://docs.djangoproject.com/en/2.1/ref/settings/ """ import os impo...
[ "frankbriones90@gmail.com" ]
frankbriones90@gmail.com
4c5fbb4c60927c29d095f78824b181e96bb176ad
05289b644f72da70d6c1fa14f8ac44ee46eff42c
/day_translator_ina_eng_vice_versa.py
4f2c55fab8422de84778587195e4f60703f54722
[]
no_license
ridhoaryo/for_loops_project
bdc28d94ada504cf5c4d0783a83a48dfec0b4e70
a5c18d392c124830fc4dfe14682c050e8f98add1
refs/heads/master
2020-09-07T14:32:34.077062
2019-11-10T15:43:31
2019-11-10T15:43:31
220,811,288
0
0
null
null
null
null
UTF-8
Python
false
false
422
py
days = { 'senin': 'monday', 'selasa': 'tuesday', 'rabu': 'wednesday', 'kamis': 'thursday', 'jumat': 'friday', 'sabtu': 'saturday', 'ahad': 'sunday' } day = input('Input hari: ').lower() for ind, eng in days.items(): if day == eng: print(f'Bahasa Indonesia dari {day.upper()} adalah {ind.uppe...
[ "noreply@github.com" ]
ridhoaryo.noreply@github.com
82517b45e33e99c6728eea5ef933042d18891240
786027545626c24486753351d6e19093b261cd7d
/ghidra9.2.1_pyi/ghidra/app/plugin/core/instructionsearch/ui/SearchDirectionWidget.pyi
68398a7321fe0e264877ec23688efac4696bbacd
[ "MIT" ]
permissive
kohnakagawa/ghidra_scripts
51cede1874ef2b1fed901b802316449b4bf25661
5afed1234a7266c0624ec445133280993077c376
refs/heads/main
2023-03-25T08:25:16.842142
2021-03-18T13:31:40
2021-03-18T13:31:40
338,577,905
14
1
null
null
null
null
UTF-8
Python
false
false
24,511
pyi
from typing import List import ghidra.app.plugin.core.instructionsearch.ui import java.awt import java.awt.dnd import java.awt.event import java.awt.im import java.awt.image import java.beans import java.io import java.lang import java.util import javax.accessibility import javax.swing import javax.swing.border import ...
[ "tsunekou1019@gmail.com" ]
tsunekou1019@gmail.com
ef9a7c367bd1087b092f78ee9feb34f8fb220822
0e667a493715932d3dd45f6a59bd31c391c05b6a
/bin/pygmentize
9e0974abc30dcc7b01ffff006b0e612e8a1e5f35
[]
no_license
Anubhav722/QR-Code-Scanner
84908069d6dc4082e94ce01c62085ce1ac380a62
455d28d5654bed3c9d3161897f7cead21d4c7f8e
refs/heads/master
2021-04-30T16:13:46.769315
2017-01-26T17:28:45
2017-01-26T17:28:45
79,985,166
0
0
null
null
null
null
UTF-8
Python
false
false
248
#!/home/paras/Desktop/QR-Code-Scanner/bin/python # -*- coding: utf-8 -*- import re import sys from pygments.cmdline import main if __name__ == '__main__': sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0]) sys.exit(main())
[ "anubhavs286@gmail.com" ]
anubhavs286@gmail.com
5d9258a3469e2eae18d22eee1f4a8ea2a215497b
4e3b279d4c014b904373a402c78a26e8ce281d4c
/Candidato.py
834719b7a6ddbd1a41dc0f5f3b7b6456a3c08409
[]
no_license
renanzinho/trabalhogio
01bad9da6afa471f1e0e75546ccf9acb7902282f
a98cee5600ef7b30969fe958fb3832fd4a8d8a4a
refs/heads/master
2020-03-08T18:12:35.016613
2018-04-11T02:13:56
2018-04-11T02:13:56
null
0
0
null
null
null
null
UTF-8
Python
false
false
6,702
py
import Bem class Candidato: def __init__(self, anoEleicao, uf, codigoCargo, descricaoCargo, nomeCandidato, idCandidato, numeroUrna, cpf, nomeNaUrna, numeroPartido, nomePartido, ...
[ "rfl3@cin.ufpe.br" ]
rfl3@cin.ufpe.br
85398c9153e63b9b53d9985b044400b6227c505f
6806bd3e24d2ec3382cce6964e817e279052f121
/sentry/plugins/sentry_sites/models.py
4e294b463ec6ef4e47deb100f73b3e68c629019e
[ "BSD-2-Clause" ]
permissive
magicaltrevor/sentry
af70427a6930f555715362e8899e4269f844e57f
8c11b2db7f09844aa860bfe7f1c3ff23c0d30f94
refs/heads/master
2021-01-18T11:53:55.770327
2012-07-29T22:00:35
2012-07-29T22:00:35
null
0
0
null
null
null
null
UTF-8
Python
false
false
938
py
""" sentry.plugins.sentry_sites.models ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ :copyright: (c) 2010-2012 by the Sentry Team, see AUTHORS for more details. :license: BSD, see LICENSE for more details. """ import sentry from django.utils.translation import ugettext_lazy as _ from sentry.plugins import register from sentry....
[ "dcramer@gmail.com" ]
dcramer@gmail.com
863b3f65db53956a88d15a3bb3febfdfc115acf3
61ad6d40c68c178dceeb4505a33864d20a6696dc
/rx/venv/bin/wheel
ad6c597162dea86ac41a6956686972ec87b70d14
[]
no_license
cobain/ipython
e63329462c22d2751e8958164bd019821c12981b
1d4f6f559a729adb9e916518398ae44037bd4995
refs/heads/master
2020-05-21T18:12:34.060671
2018-04-27T04:32:13
2018-04-27T04:32:13
62,492,904
6
0
null
null
null
null
UTF-8
Python
false
false
258
#!/Users/htzheng/Documents/python/ipython/rx/venv/bin/python3.6 # -*- coding: utf-8 -*- import re import sys from wheel.tool import main if __name__ == '__main__': sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0]) sys.exit(main())
[ "zhtsuc@gmail.com" ]
zhtsuc@gmail.com
456c590d5d9b7436ae5408d60532e45bf5df7d77
b761c9c8775d5a08b3b9be6d8300131a4f6a249f
/spring1819_assignment1/assignment1/cs231n/classifiers/neural_net.py
ea28f209bbe508af15877b227b81933dd0badea5
[]
no_license
DizzyYunxuan/CS231n
2599c68ccfcae1ba7dc244440eb30abc9f9340df
3684b83639c49a1060437901da242d8cccadef34
refs/heads/master
2020-09-13T16:40:30.364281
2019-11-20T03:49:50
2019-11-20T03:49:50
222,844,025
1
0
null
2019-11-20T03:45:07
2019-11-20T03:36:22
Jupyter Notebook
UTF-8
Python
false
false
9,832
py
from __future__ import print_function from builtins import range from builtins import object import numpy as np import matplotlib.pyplot as plt # from past.builtins import xrange class TwoLayerNet(object): """ A two-layer fully-connected neural network. The net has an input dimension of N, a hidden layer ...
[ "516488199@qq.com" ]
516488199@qq.com
dcbb7d2c6c118a3060c64cfee2dae6fd5aa40e9d
6b2a8dd202fdce77c971c412717e305e1caaac51
/solutions_2453486_1/Python/dvolgyes/solution.py
3336b278088a91573eff663adc3c60e306e631a1
[]
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
1,667
py
#!/usr/bin/python # # Google codejam solution # David Volgyes # # import sys, math, os #import mpmath as mp # see https://code.google.com/p/mpmath/ import numpy as np # see http://www.numpy.org/ #import sympy as sp # see https://code.google.com/p/sympy/ import networkx as nx # see http://networkx.github....
[ "eewestman@gmail.com" ]
eewestman@gmail.com
3cc3b9b73a51bfc77678166cea769356ea41b111
26c4cf72a18464c6b38b0e499806e846eb130d83
/run_experiments.py
b7b6a2b17776d0684ec40e9a573fb18a7eea2d80
[]
no_license
arnupretorius/noisyNNGPs_2019
694d6aec1ec538c66aa491f29d4871d8c4b4f0bd
8c765f7b942653cdc147323974a5c2ae4d839518
refs/heads/master
2020-04-28T03:28:26.530870
2019-08-12T08:49:52
2019-08-12T08:49:52
174,938,997
0
0
null
null
null
null
UTF-8
Python
false
false
9,074
py
# Copyright 2018 Google LLC # # 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 # # https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, ...
[ "arnupretorius@gmail.com" ]
arnupretorius@gmail.com
2eed65682858de5a475169c5a87692ea1fe981ec
b66ff47bf4b24682663933a9169008616d5cc840
/conceitos/12_break.py
800727b5b948b927b8e6306cd467fbdedeb573cb
[]
no_license
joseney/python_structural_engineers
3bf68dfd29bcfabc748b7d756e9cf27b5bb93c91
7c45c411f5db66a5f4543c186e27940c419a880d
refs/heads/master
2023-09-03T17:45:10.154392
2021-09-27T18:45:48
2021-09-27T18:45:48
407,128,954
0
0
null
null
null
null
UTF-8
Python
false
false
60
py
for i in range (5): if i ==3: break print(i)
[ "joseney_moro@yahoo.com.br" ]
joseney_moro@yahoo.com.br
9a35602e246a3b5ec780162d71ffce8af4f28b65
bbe32e34c0ff194411df58e73606eb723c2fe53d
/Expense_Input/userinput/views.py
60c0c54e9a9e8c406754b27b83f31de66685436b
[]
no_license
Azirly/Expenses-Input
3acf3f0a539f8b88cb506df394af5904bec54334
8f75aa69083c6f5f951b535241315bc42613abdf
refs/heads/master
2022-11-10T19:48:12.526929
2018-04-19T21:01:42
2018-04-19T21:01:42
130,256,716
0
1
null
2022-10-22T09:17:14
2018-04-19T18:30:51
Python
UTF-8
Python
false
false
450
py
from django.http import HttpResponse def index(request): return HttpResponse("Hello, world. You're at the userindex.") def detail(request, value): return HttpResponse("You're looking at question %s." % value) def results(request, value): response = "You're looking at the results of question %s." ...
[ "justonl@uci.edu" ]
justonl@uci.edu
53f2c0fd2544fc96d1a60fedeedab9df30233b87
2b50fcffa9803fe2090629c3dad5dd946f70a4af
/db/run_sql.py
1659cb88a1ccbae52dc8c2d71fde2285b02ec9e8
[]
no_license
Skivlin1991/task_manager
607b35d7ada1de00c3285b76b6487173bf012aab
980a40762062ecd4f31634186ef6e5d44e200cb4
refs/heads/main
2023-05-08T02:26:05.963700
2021-05-27T11:59:49
2021-05-27T11:59:49
null
0
0
null
null
null
null
UTF-8
Python
false
false
519
py
import psycopg2 import psycopg2.extras as ext def run_sql(sql, values = None): conn = None results = [] try: conn = psycopg2.connect("dbname='task_manager'") cur = conn.cursor(cursor_factory=ext.DictCursor) cur.execute(sql, values) conn.commit() results = cur.fetch...
[ "garrymhall@gmail.com" ]
garrymhall@gmail.com
ceb3047ae6a58c65e8f35948042fcd27b2054788
c4b6f8e3b8b22300525d6a8d232aef7c5d3d9b97
/codpy/detector.py
3890325d2b580d71103e3bd280b885092dd44c93
[ "MIT" ]
permissive
GNiklas/codpy
b8f8707d422537021621697a7553cee22453c544
ad955f1567f4d0c93731a08eda49ad5123ed1204
refs/heads/master
2023-07-04T02:16:33.453472
2021-08-14T10:50:45
2021-08-14T10:50:45
393,007,588
0
0
null
null
null
null
UTF-8
Python
false
false
4,905
py
#!/usr/bin/env python3 # -*- coding: utf-8 -*- """ Created on Thu Aug 5 13:32:09 2021 @author: niklas """ import os import sys import numpy as np import cv2 import codpy.file_handling as fh from codpy.selector import Selector class Detector(Selector): """ Class of basic object detector. Inherits from Se...
[ "gnthrn@gmail.com" ]
gnthrn@gmail.com
1bf5009a1190a9c57239a41e7bf9e3f4a691325d
0784c4f48ee2e25e95259f35de36f69e7bf3184f
/wypok_auth.py
f0743e14879723b5d7a393209f065f80695f3c17
[]
no_license
a000b/ZombieBot
277b0d6d807a0d0332c16428ff3c9f4ac8b1f234
c74028bf5bf9bb64488a5efa717a1f6e8e44e765
refs/heads/master
2020-07-31T13:37:58.524740
2020-06-07T09:33:20
2020-06-07T09:33:20
210,620,100
3
1
null
2019-10-20T06:33:47
2019-09-24T14:14:27
Python
UTF-8
Python
false
false
3,004
py
import pickle import requests import hashlib import logging target_path = "" logging.basicConfig(filename=target_path + 'logs.log', level=logging.INFO, format='%(asctime)s|%(levelname)s|%(filename)s|%(funcName)s|%(message)s') def check_usrkey_isvalid(kwargs): check = get_pm_conversation(kwargs...
[ "46565897+a000b@users.noreply.github.com" ]
46565897+a000b@users.noreply.github.com
68a41b87ce93babc8cc9ff31ee191ed3942d9e11
3c000380cbb7e8deb6abf9c6f3e29e8e89784830
/venv/Lib/site-packages/cobra/modelimpl/fv/afabricextconnp.py
6c8a4c7ee71ed4b11370d170b02722427f256c7d
[]
no_license
bkhoward/aciDOM
91b0406f00da7aac413a81c8db2129b4bfc5497b
f2674456ecb19cf7299ef0c5a0887560b8b315d0
refs/heads/master
2023-03-27T23:37:02.836904
2021-03-26T22:07:54
2021-03-26T22:07:54
351,855,399
0
0
null
null
null
null
UTF-8
Python
false
false
4,912
py
# coding=UTF-8 # ********************************************************************** # Copyright (c) 2013-2020 Cisco Systems, Inc. All rights reserved # written by zen warriors, do not modify! # ********************************************************************** from cobra.mit.meta import ClassMeta from cobra.m...
[ "bkhoward@live.com" ]
bkhoward@live.com
c6a647a7f1b4bd9c459dfe271e8c98e684869d58
9dacc94f2f6819536286c1e6e17196d1edaa980e
/ocr.py
c2613bb627ca3a87d53755a155ef1653e25af25c
[]
no_license
aaminu/OCR
505f0807958ce428dc4ed483420abefda21a635c
06211f74f74f394c5304361005588aca18ebfae6
refs/heads/master
2023-02-19T00:43:12.360620
2021-01-14T12:37:15
2021-01-14T12:37:15
265,620,523
0
0
null
null
null
null
UTF-8
Python
false
false
2,895
py
""" performs OCR and returns Text from File """ # import libraries import os import sys import requests from pathlib import Path from auth import auth_env def ocr(file_name=None, file_url=None): """ post to API for response""" endpoint, subscription_key = auth_env() # OCR link and parameters ocr_li...
[ "24601677+aaminu@users.noreply.github.com" ]
24601677+aaminu@users.noreply.github.com
0897d325bbb50a683aa7d27391d7d351351b1a3d
aa5d710a177fa4e8554cd99911472148004169ba
/sample-menu/test.py
a15912b7215a569f6a11a5a918a79478f20d5513
[]
no_license
haxmanster/scripts
4965adb120b0bd92a31ae08a17952d312718d378
11ac0b9eb64bad0c744384f5a11b46ec3ce0fc1b
refs/heads/master
2020-03-19T09:24:11.893321
2019-02-20T14:06:42
2019-02-20T14:06:42
136,285,370
0
0
null
null
null
null
UTF-8
Python
false
false
1,450
py
import os import sys def menu(): print(" Welcome in initiation script ") print(""" ************************************************************** *============================================================* *| Master control unit xD |* *=====================================...
[ "grzegorz.wolyniec@tieto.com" ]
grzegorz.wolyniec@tieto.com
5c24262b5869bb78d600241b7e07ecfb429f2b32
bd0b80bc66033c6a19a849e884cdb09988c1f3d2
/JejuCCAI.py
20a64f8a316e2fb3a860bb8caef3702076692f3a
[]
no_license
schiaLab/JejuCC_AI
de062cd650f36130f29e6fcef444e8a2b87609b5
73cd043606754e1802d425707a58d730c5e05539
refs/heads/master
2022-12-07T16:43:10.642513
2020-09-04T09:21:19
2020-09-04T09:21:19
291,448,018
0
0
null
null
null
null
UTF-8
Python
false
false
21,637
py
import pandas as pd import numpy as np import seaborn as sns import matplotlib.pyplot as plt from scipy.stats import norm import statistics import sys import math print("Initiating Program.") #데이터를 가공하여 분석하기 쉽도록 만드는 클래스입니다. class dataGenerator: #필요한 애트리뷰트를 미리 선언해 놓겠습니다. data = None #클래스의 pandas 데이터 원문을 담는 애...
[ "hyeonjunacademic@gmail.com" ]
hyeonjunacademic@gmail.com
1e382ff1d7dc2a25325cc82e0775d8691c3da5dc
cc1e583a527588ee4a3a95d64603a16cf62f84a9
/project2/q2.py
222cbbc034efb4d3ac53ee9e07b2b496b4b343e6
[]
no_license
LordNecromancer/computer_vision_course_projects
ff12a677edf556e68639cb5916c1e8f15d4543c8
fe15e6617be3cf05f565581fd3d4bea20ec81ced
refs/heads/master
2023-06-26T22:55:40.986518
2021-07-19T01:23:58
2021-07-19T01:23:58
387,146,901
0
0
null
null
null
null
UTF-8
Python
false
false
2,025
py
import cv2 import numpy as np def getObjectGrid(w,h,dimension): grid=np.empty((w*h,3),dtype=np.float32) c=0 for j in range(h): for i in range(w): grid[c]=(i*dimension,j*dimension,0) c+=1 return grid def getParameters(images,greys): worldObjPoints=[] imagePoint...
[ "mmdp313@gmail.com" ]
mmdp313@gmail.com
59b86e124976b088f7ebf9dc8fc1e8a4efe667d5
e1308eb60ec76b7548936f5e66aeb9975bfc2710
/hello20.py
612bb8efed8871fb917836c99f3f04162d46e56c
[]
no_license
DasomJung24/pythonpractice1
ac2f5b81748202d0b141de0ce48e3741984d1049
f166bba1a9ae1d2d77fc93f256feb0e0e92f3b6a
refs/heads/master
2022-11-15T21:17:42.311364
2020-07-16T22:08:58
2020-07-16T22:08:58
280,268,595
1
0
null
null
null
null
UTF-8
Python
false
false
294
py
import random print ('첫 번째 숫자를 입력하세요.') a = input() a = int(a) print ('두 번째 숫자를 입력하세요.') b = input() b = int(b) c = random.randint(a, b) print (str(a) + '부터 ' + str(b) + '까지에서 무작위로 선택된 숫자는 ' + str(c) + '입니다.')
[ "noreply@github.com" ]
DasomJung24.noreply@github.com
7571d6a9631ad006e432dc159f89bde447fbbd5a
f9833fa4e11060e0bc824fb26499a49b26d04584
/pagerank/pagerank.py
814f6888343ab0412655df42b8071b0f757384e4
[]
no_license
konstantingl/CS50AI
dc3de70c5a8bfa812537bfd83783311adeffeaf9
181ab793b2d3c10800b55d76fb8e8c02b08eb722
refs/heads/master
2022-11-05T09:30:11.686979
2020-06-20T12:11:46
2020-06-20T12:11:46
263,000,258
0
0
null
null
null
null
UTF-8
Python
false
false
4,484
py
import os import random import re import sys import numpy as np DAMPING = 0.85 SAMPLES = 100 def main(): if len(sys.argv) != 2: sys.exit("Usage: python pagerank.py corpus") corpus = crawl(sys.argv[1]) ranks = sample_pagerank(corpus, DAMPING, SAMPLES) print(f"PageRank Results from Sampling (n ...
[ "konstantingl156@gmail.com" ]
konstantingl156@gmail.com
e01c3b9e135e6767e80e69e93678a8c30583d54b
a797793842f433251d2ab0bafb0ebe800b89a076
/z7.3.py
04495ae9dfa0056a6b01a8be77740c3a7360d223
[]
no_license
irhadSaric/Instrukcije
b2f576bceb7e75f5fa65bfef99c9cde53d597b32
9ac8979b824babdeef3712ab9d23c764536d57b0
refs/heads/master
2020-09-28T09:00:08.389651
2020-02-01T20:33:59
2020-02-01T20:33:59
226,740,846
0
0
null
null
null
null
UTF-8
Python
false
false
116
py
lista = [] for i in range(5): broj = int(input()) lista.append(broj) lista = sorted(lista) print(lista[2])
[ "irhad.saric@hotmail.com" ]
irhad.saric@hotmail.com
36551e18a8c2beca2f9d1d8520f858a6384900e1
a9d6114af0f5d622d74f62f402bc252e7f7742c4
/card_img.py
fe5d79c95716bda85ca2ed209f6e00702bccc64c
[ "Apache-2.0" ]
permissive
ajayjain/OpenCV-Projects
705a1d5efce9556aee67e12c53d6cfe130a06d89
4ef8e21794665e69bfb169b72e1fe5cfc22ac737
refs/heads/master
2021-01-11T04:15:25.491492
2014-06-28T18:53:59
2014-06-28T18:53:59
null
0
0
null
null
null
null
UTF-8
Python
false
false
1,840
py
from __future__ import print_function import numpy as np import cv2 import random FILENAME = "./img/cards.png" WINDOW_NAME = "Cards" NUMCARDS = 4 def centroid(moment): x = moment['m10'] // moment['m00'] y = moment['m01'] // moment['m00'] return (x, y) def draw_centroid(c, im): max_rows = im.shape[0] max_cols = ...
[ "ajayjain318@gmail.com" ]
ajayjain318@gmail.com
767fbacecdf58994beab196a4d0a717ed5894287
20b00bc62644aa242c723c1a0bd37aa098b4926e
/e/map_vacc_eligible.py
17d436889cf7cccd5e1078805ad42365cd773dab
[]
no_license
devdatalab/covid
0d7e82f0ff40746e2cb3bcf87fc803d1db60bb5b
a86c2d00d81eee6d26c343e05ae9ba1087fad47f
refs/heads/master
2023-04-16T14:20:55.060708
2022-10-26T15:42:23
2022-10-26T15:42:23
253,523,397
47
21
null
2020-06-19T16:00:29
2020-04-06T14:33:14
Jupyter Notebook
UTF-8
Python
false
false
10,862
py
import geopandas as gpd import matplotlib as mpl import matplotlib.pyplot as plt import numpy as np import pandas as pd import time import rasterio from rasterio.plot import show from collections import Counter from shapely.geometry import Point, LineString, box, Polygon from IPython.core.display import display, HTML f...
[ "ab738@cornell.edu" ]
ab738@cornell.edu
d3692e6852c8e1739ff1b63fce5cd41faa9aa4db
554e363152619134fc3cbbbe6116e8acfb3682d4
/src/utils/process_and_split.py
3f7b6272877aef7563753a59fc2a38e5f7364e77
[]
no_license
kinjaljain/QA_SDP
c191b30f7996843c927997e30c86231181b789de
35456a4688290825e7427aa50583c4492b27c298
refs/heads/master
2022-11-30T07:18:41.563449
2020-04-25T00:16:06
2020-04-25T00:16:06
241,164,514
0
0
null
null
null
null
UTF-8
Python
false
false
5,835
py
import re import nltk nltk.download('stopwords') from dataloaders.load_and_parse import load_all from similarity_metrics.jaccard import get_similarity_score as j # from similarity_metrics.dice import get_similarity_score as dc # from similarity_metrics.word2vec import get_similarity_score as w from tqdm import tqdm DAT...
[ "kinjal@Kinjals-MacBook-Pro.local" ]
kinjal@Kinjals-MacBook-Pro.local
f262ce49a1b63243520cfc38fef089e4926dcf7f
5552481b05fb515c25cf86ce224cc4a25e296c41
/src/_old/comm_listener.py
feca642ace6635dd3213e502cc3fd5bb73f06746
[]
no_license
theodorekoutros/comm_sender
dac64cdbbd81fee874fdf340907816a312f755ed
58e0fb53543c9305ee93a360c0c3166e898cb80b
refs/heads/master
2020-04-11T22:24:43.456608
2019-07-10T21:21:03
2019-07-10T21:21:03
162,135,398
0
0
null
null
null
null
UTF-8
Python
false
false
524
py
#!/usr/bin/env python import rospy from std_msgs.msg import String class ListenerNode: def __init__(self): self.node_name = rospy.get_name() rospy.loginfo("[%s] Initialzing." %(self.node_name)) self.sub_key = rospy.Subscriber("/key", String, self.callback, queue_size=1) def callback(...
[ "koutrost@student.ethz.ch" ]
koutrost@student.ethz.ch
cc3039604583f0e10d6a227e330a3757e870c8ba
a7a30fae1e0fd4e199a365738f3f89d1fcab68eb
/git guide.py
c8db64d80198da9838adbe3b1a65c0627f1832b2
[]
no_license
Chigzzer/Libraryguides
7d6cf4ac435b0161827b0476e7c0140446ae3b17
f0ba5a6a2f2d1beac2f1f2413ae4efa33aca4e97
refs/heads/master
2022-11-03T06:09:35.395599
2022-10-21T22:43:40
2022-10-21T22:43:40
144,333,200
0
0
null
null
null
null
UTF-8
Python
false
false
1,346
py
git init # creates a git in the folder where you entered bash git touch xxxx.zz # Creates a file in the folder with xxxx.zz being the file name and extension git add filename # adds the file to be committed git add *.extension # addds all filenames to be committed git add . # adds all files in folder to be com...
[ "chiraag.chandarana@gmail.com" ]
chiraag.chandarana@gmail.com
8555a9983267a8997ab3d10b7b8719a8858dc2bd
f518a44abf00aefbd6de048ccff9203aac3eef24
/code/exploratory_analysis.py
0c2e4702f587ef8f065ef744a11731cc52513dfc
[]
no_license
vfulco/mining_the_common_app
f510d403b075218c953fb58ccffe346f0baabb52
46354664596959e38879a1c51a03ffa40b2eb27e
refs/heads/master
2021-06-24T05:49:57.944449
2017-06-21T05:26:15
2017-06-21T05:26:15
105,898,177
1
0
null
2017-10-05T14:12:53
2017-10-05T14:12:53
null
UTF-8
Python
false
false
6,715
py
import pandas as pd import numpy as np import matplotlib.pyplot as plt from collections import Counter import re def histogramSAT(df, year=None, before_after = 'before', lim_min=100, lim_max=2400): ''' Plots a histogram showing the SAT scores of those students who graduated before a specified year. ''' ...
[ "yungmsh@gmail.com" ]
yungmsh@gmail.com
87f0a93a17aa1fea5cf6a1d04ff68dfea61626a8
d7e97f6b1d12c4f9080439c933136b7e5caa874b
/js/sdk-1.0b4-modified/python-lib/cuddlefish/templates.py
f2a364a916f27043ca7ff289c530d935455565d8
[]
no_license
paulrouget/htmlmediakeys
96806b8fa38f25fe045c142ff7e517706a2ec3f8
49e405bc2691aef3127ac9c13b58aa07982d7ebe
refs/heads/master
2020-05-18T11:04:43.770001
2011-04-22T18:32:45
2011-04-22T18:32:45
1,650,817
4
0
null
null
null
null
UTF-8
Python
false
false
1,723
py
#Template used by main.js MAIN_JS = '''\ const widgets = require("widget"); const tabs = require("tabs"); var widget = widgets.Widget({ id: "mozilla-link", label: "Mozilla website", contentURL: "http://www.mozilla.org/favicon.ico", onClick: function() { tabs.open("http://www.mozilla.org/"); } }); consol...
[ "paul.rouget@gmail.com" ]
paul.rouget@gmail.com
d536defe9b0153859e93dfe79e1890719bb316f7
8ff148371adb02a171c974e6bea4e6609fb72f04
/app/__init__.py
3c5a958ead1e5f4a6156bb84acd62984c6778dfa
[ "MIT" ]
permissive
rmarshall10/Insight_App
0c20f00965c6317e8ffbb592a36e0f9f170381c5
f0276e79d0ceaf2787762a1602d62a19db1c1800
refs/heads/master
2023-02-22T17:49:44.064648
2020-06-22T23:39:42
2020-06-22T23:39:42
269,232,641
0
0
MIT
2023-02-15T23:45:48
2020-06-04T01:31:19
Python
UTF-8
Python
false
false
274
py
from flask import Flask app = Flask(__name__) #This is wrong, needs FULL path. Right now will save in app folder #app.config['UPLOAD_FOLDER'] = 'app/uploads' app.config['MAX_CONTENT_PATH'] = 10 * 1024 * 1024 app.config['ALLOWED_EXTENSIONS'] = {"MP4"} from app import routes
[ "ryanmarshall@Ryans-MacBook-Air.local" ]
ryanmarshall@Ryans-MacBook-Air.local
80a886b3cc887cdf1aefb3525eaa35f1f6528e29
e20ed90b9be7a0bcdc1603929d65b2375a224bf6
/generated-libraries/python/netapp/volume/volume_attributes.py
94f52a5e553ca733b3138d1b081bb226e35c66cc
[ "MIT" ]
permissive
radekg/netapp-ontap-lib-gen
530ec3248cff5ead37dc2aa47ced300b7585361b
6445ebb071ec147ea82a486fbe9f094c56c5c40d
refs/heads/master
2016-09-06T17:41:23.263133
2015-01-14T17:40:46
2015-01-14T17:40:46
29,256,898
2
0
null
null
null
null
UTF-8
Python
false
false
17,794
py
from netapp.volume.volume_hybrid_cache_attributes import VolumeHybridCacheAttributes from netapp.volume.volume_mirror_attributes import VolumeMirrorAttributes from netapp.volume.volume_space_attributes import VolumeSpaceAttributes from netapp.volume.volume_directory_attributes import VolumeDirectoryAttributes from neta...
[ "radek@gruchalski.com" ]
radek@gruchalski.com
02d48bd2c223636e35624a38576f0a5412d9f2f8
2e06c0df26e3fbccc2af052301e8b486fd17d84c
/Line3D/line3d_rectangular_projection.py
66b986387a063fbb644ba6817cebe039bc9a5c45
[ "MIT" ]
permissive
d8ye/pyecharts-gallery
54f44c0a78d88608ae83a678c105424113866f25
07995a7f2600983282eb37b1e94da9af2f1a25b5
refs/heads/master
2020-07-03T13:04:42.093830
2019-08-13T04:14:13
2019-08-13T04:14:13
201,913,794
0
0
MIT
2019-08-12T11:04:10
2019-08-12T11:04:09
null
UTF-8
Python
false
false
1,458
py
import math import pyecharts.options as opts from pyecharts.charts import Line3D """ Gallery 使用 pyecharts 1.1.0 参考地址: https://echarts.baidu.com/examples/editor.html?c=line3d-orthographic&gl=1 目前无法实现的功能: 1、 """ week_en = "Saturday Friday Thursday Wednesday Tuesday Monday Sunday".split() clock = ( "12a 1a 2a 3a 4a...
[ "379978424@qq.com" ]
379978424@qq.com
9beb997cd9e41a5838e3e62286a18238532f2c0a
21c3daa3c4209314767ccd2cf4ad61d0e43b645f
/ex2.py
830394cc3cf37897799547cb425e55e18bb14c42
[]
no_license
suneff/python-unipi
d6207b9d7862fa35ad5642aa62b50c7296b12926
43baed544286b336c0b0801390e4ef81eb118982
refs/heads/master
2021-01-21T10:45:53.222458
2017-02-28T21:58:40
2017-02-28T21:58:40
83,481,358
0
0
null
null
null
null
UTF-8
Python
false
false
571
py
inp=raw_input("Dwse mou mia akolouthia parenthesewn: \t") length=len(inp) flag=False if (length>=2) and ((length % 2) == 0): if inp[0]=="(" and inp[-1]==")": position=0 count=0 while (position<length) and (count>=0): #if adding 1 when a "(" appears and subtract by 1 when a ")" #apears, i...
[ "noreply@github.com" ]
suneff.noreply@github.com
a6b41655f02282e4209fe8686428eda883251306
084b3a30a84f20e3eeda5c3846705695918374b0
/dbt_gen/py3env/lib/python3.5/site-packages/snowflake/connector/version.py
2597e133b042b02ff7e4fcda8de0ddcb01c7c120
[ "Apache-2.0", "MIT" ]
permissive
norton120/dbt_gen
db3f77cb164e94870697ece7ef4e1093441d832d
712fc8698a77c3372f5a403a5ae50711d0cb3c7d
refs/heads/master
2021-05-01T15:03:44.301147
2018-02-16T01:56:25
2018-02-16T01:56:25
121,029,034
0
0
null
null
null
null
UTF-8
Python
false
false
107
py
# Update this for the versions # Don't change the forth version number from None VERSION = (1, 5, 0, None)
[ "norton120@gmail.com" ]
norton120@gmail.com
686705a2f26164659e8b02756037a88a40e2e1de
d76fda42dd6178537618091fc2ac8b82d7d5b7d8
/trainer_preid.py
8c864397cec0126ee3adcbf3f7172a5e4f010b6e
[]
no_license
oneysmall/CVTC
35bf788f7a765111fce3678cbc4c3f5d0b0d471d
5fbfdc3ab139db67bc95732c26213f567cf74377
refs/heads/master
2020-06-25T01:47:11.742722
2019-07-23T06:57:13
2019-07-23T06:57:13
199,160,110
6
3
null
2019-07-27T12:08:37
2019-07-27T12:08:37
null
UTF-8
Python
false
false
5,041
py
import argparse import os import tensorflow as tf from tensorflow.contrib.learn import RunConfig from datasets.DatasetFactory import DatasetFactory from helper.model_helper import get_model_function, get_input_function from nets import nets_factory CUDA_VISIBLE_DEVICES=0 config = tf.ConfigProto() config.gpu_options....
[ "xmlin1995@163.com" ]
xmlin1995@163.com
5bcab2190075533c78ad6b2d00437877ca00c388
f8f7f2d5d74364805465fa56a2e89923265f8248
/devel/lib/python2.7/dist-packages/tnp/msg/_Coordinates.py
19d40aa0b6c5bf1a48436f1bd313f06aa86b7fec
[]
no_license
kefalakis/qtnp
2c83a4a1381f0ff48bcfb6808cbed62d47f14e34
5066cc43bd654729469fa1346fa87cd012c8eabb
refs/heads/master
2021-01-13T13:06:39.828109
2016-07-17T15:27:23
2016-07-17T15:27:23
null
0
0
null
null
null
null
UTF-8
Python
false
false
6,041
py
# This Python file uses the following encoding: utf-8 """autogenerated by genpy from tnp/Coordinates.msg. Do not edit.""" import sys python3 = True if sys.hexversion > 0x03000000 else False import genpy import struct class Coordinates(genpy.Message): _md5sum = "5233f15c788dc5823ec41234899f903f" _type = "tnp/Coord...
[ "fbalampanis@gmail.com" ]
fbalampanis@gmail.com
3f82fbf0a527d496e2fb54cbcba4581c72e3fb91
401d074875b7878adb456c8a2f6ba55c45484600
/scripts/src/write2db.py
3f967cf842fb22bb67536f515e3581f7e8148477
[]
no_license
novaxiaohui/electricity-filching-detection
1ad4842a045a533d2c49c9f26f29524f47bd0301
9feafbc0ea50d133cd4e33d9882665c6b0d3cbe0
refs/heads/master
2020-03-28T00:41:41.672757
2018-09-05T02:47:52
2018-09-05T02:47:52
147,441,151
0
0
null
null
null
null
UTF-8
Python
false
false
2,940
py
#!/usr/bin/env python # encoding: utf-8 """ Created on 2017/9/29 8:55 @author: Xiaohui Function: preload data to database """ import os import csv from itertools import islice from datetime import datetime from collections import defaultdict from ConfParser import ConfParser from conndb import my...
[ "noreply@github.com" ]
novaxiaohui.noreply@github.com
151f79d6e5570854101663710bf6c53ec3afafdc
1a1a9906ab0e56335eebe543d1c145750caaa631
/modules/gateways/cloud-init.sh
deea05919cf5a455dea02f1277272b3b975473c8
[]
no_license
bridgecrew-perf4/lab-in-a-box
840021e9b38ddc4450c0682831a32ac06dfca0d7
ad33a08b18cc3a5f3057afad0505603cee4b4422
refs/heads/main
2023-03-19T11:53:39.523806
2021-02-17T15:23:52
2021-02-17T15:23:52
null
0
0
null
null
null
null
UTF-8
Python
false
false
519
sh
#!/usr/bin/python3 /etc/cloud_config.py installationType="${installation_type}" allowUploadDownload="${allow_upload_download}" osVersion= "${os_version}" templateName="${template_name}" templateVersion="${template_version}" isBlink="${is_blink}" bootstrapScript64="${bootstrap_script64}" location="${location}" sicKey="...
[ "stuartg@checkpoint.com" ]
stuartg@checkpoint.com
7140bca0b1e84c19e6a69277ccdfc52ae883fbdf
7ce07395e1b5ace33c68a2755a956bafddd3adb9
/contribstats_apis/apps.py
a1e5a36819d55d23c4f25d551b48046d087f5f14
[]
no_license
Discovery-VSTS/codemetric
8014b75e7fddf86490cc29a72a297c913e2037ab
08df5f5a191279150b6f82c8e45b648e2f1c0073
refs/heads/master
2021-01-20T11:52:28.358595
2017-03-23T15:00:09
2017-03-23T15:00:09
80,984,988
0
1
null
2017-03-18T15:42:36
2017-02-05T10:15:37
Python
UTF-8
Python
false
false
108
py
from django.apps import AppConfig class ContribstatsApisConfig(AppConfig): name = 'contribstats_apis'
[ "minhlong.langos@gmail.com" ]
minhlong.langos@gmail.com
a35b19e6d1369853d8c70ee127b6d3dee278778a
70a0cf4d95ea70e9f24af69fa1a012f272f23330
/BOJ/02178-미로_탐색-yeonhee.py
17c3feef295e35d2cae6cc434ec35698967aed8c
[]
no_license
devpla/algorithm
6ee75f0f4cf162674ac626766ce016de843f2fbb
b1d9bf9b9f79e4d7295784a6f63de0c0b07963ca
refs/heads/master
2023-08-28T14:09:30.706665
2021-10-13T14:36:27
2021-10-13T14:36:27
398,161,819
0
1
null
null
null
null
UTF-8
Python
false
false
534
py
from collections import deque DIRECTION = ((0, 1), (0, -1), (1, 0), (-1, 0)) def bfs(): q = deque([(0, 0)]) graph[0][0] = 1 while q: r, c = q.popleft() for dr, dc in DIRECTION: nr = r + dr nc = c + dc if 0 <= nr < n and 0 <= nc < m and graph[nr][nc] ==...
[ "chaeyeonhee@kakao.com" ]
chaeyeonhee@kakao.com
12f03aa1dc75eaf7a286d0d8d710da31e00ccb2f
3bbda49b8ec6ca7de57f9ea3b6e26d17cfd2b7aa
/node_modules/fsevents/build/config.gypi
18f8e50cca791052039d23b428f9f450f61a30dd
[ "MIT" ]
permissive
Skytim/Angular-Project
290795b1c1ca8eac6209d2d4903c35fac7960a2c
2e47ec60b5622d853d6cbe474781dca1e2283315
refs/heads/master
2020-07-28T18:29:22.529132
2016-11-13T17:38:08
2016-11-13T17:38:08
73,403,383
0
0
null
null
null
null
UTF-8
Python
false
false
2,149
gypi
# Do not edit. File was generated by node-gyp's "configure" step { "target_defaults": { "cflags": [], "default_configuration": "Release", "defines": [], "include_dirs": [], "libraries": [] }, "variables": { "asan": 0, "host_arch": "x64", "icu_data_file": "icudt56l.dat", "icu_da...
[ "蔡宇祥" ]
蔡宇祥
98d99daa66e747ccc7397198c69bcb06378ea89a
df60b560266920c9326dee242ba140d42f97be4a
/ex09_lista02.py
fa2c2b17801ad93c7363dece17b5212b50ab8e49
[]
no_license
carloseduardo1987/Python
664c74a2f5af1a12ccd6392b4faab4e040b57106
291cf3546faefa081e6d8c7fec1f5d826575a167
refs/heads/main
2023-01-20T12:17:29.565482
2020-11-27T07:54:25
2020-11-27T07:54:25
316,432,519
0
0
null
null
null
null
UTF-8
Python
false
false
348
py
print("### Calculadora de desconto em compras ###") valor = float(input('Digite o valor da compra: R$ ')) if valor <= 150 : total = valor * 0.05 elif valor <= 300 : total = valor * 0.07 elif valor <= 500 : total = valor * 0.10 else: total = valor * 0.20 print(f'O desconto na compra ser...
[ "noreply@github.com" ]
carloseduardo1987.noreply@github.com
00fa86ee62a77e85179879f323d588c8c5ec3b54
6c3a9a3235592d44254f61ed51d025cf11071030
/task_3_2.py
ab57ed048f40bb25c4b12f16d8353796654cda0d
[]
no_license
stas1803/Data_Engineer
caa6ba662db679b3b4f972c38af353043874d337
5bec8ddc0323c503bd39f70a4ad1abdbd19fcadc
refs/heads/main
2023-04-04T17:42:47.408875
2021-03-22T11:04:17
2021-03-22T11:04:17
349,364,995
0
0
null
2021-04-09T08:49:58
2021-03-19T09:18:27
Python
UTF-8
Python
false
false
367
py
def num_translate(number): dig_2_str = {'one':'uno', 'two':'dos', 'three':'tres', 'four':'cuatro', 'five':'cinco'} number_list = list(number) number_low = number.lower() if number_list[0].isupper() and number_low in dig_2_str: print(dig_2_str.get(number_low).capitalize()) else: print...
[ "stas1803@gmail.com" ]
stas1803@gmail.com
ba0236d70ba44c3bbd27a29b3e9e66d95c26ab01
d245145b5e54fd1111b9e9a7349fe3aa045e0eeb
/queue-stack/MyCircularQueue.py
05831985759e7a96eb4b53dac1e4d1021ddd736b
[]
no_license
scottfu001/leetcode
680d461d072fe70cb51a1342e98ab0f24f090855
70c43d67f6faae9d92f28da764a1fb32ca564fa5
refs/heads/main
2023-05-05T04:35:18.327905
2021-05-26T05:55:29
2021-05-26T05:55:29
363,279,931
0
0
null
null
null
null
UTF-8
Python
false
false
1,216
py
class MyCircularQueue: def __init__(self, k: int): self.q = [] # the data self.k = k # the max size def enQueue(self, value: int) -> bool: # check the queue is full if self.isFull(): return False else: self.q.append(value) return...
[ "noreply@github.com" ]
scottfu001.noreply@github.com
959fa6cf6f372189e821fd5412854a9548fa18f2
fb657665c617aff5315f4b492807eb4291da61bf
/Time-Space Tradeoff/Hashing/double hashing.py
03a091eca5525891ce0c53a1174ed16ad0841250
[]
no_license
AngelWings1997/Algorithm-and-Complexity
12348effc5f4d2cd41df81b2e0eaa0912cf4235b
147e7990359d2ec6060e255908e1b379bd4f85ce
refs/heads/master
2023-04-08T14:45:38.388958
2021-04-20T03:36:53
2021-04-20T03:36:53
null
0
0
null
null
null
null
UTF-8
Python
false
false
2,385
py
""" # -*- coding: utf-8 -*- @author: Hongzhi Fu """ # implementation of hashing # the purpose is to split items into hash table evenly, # and minimize collisions as fewer as possible # table size is typically 1.5 larger than the number of items # modulo operation is chosen as a hash function # collision resolution mec...
[ "Heartbeats1216@gmail.com" ]
Heartbeats1216@gmail.com
26c28d596fb8b6712cc4ba60a88c42f88de634df
959d6f7027a965f609a0be2885960b63c6dc97bc
/facebook/likers/steps.py
96cfda296f3d581fbb757246dd37896ae0d2495a
[]
no_license
ameetbora/facebook-comments
0bf57f8e5b4a8ef7804aa999fa86d9913b7ee99c
7649c808164f978b147a4410795eadf374e3d3dc
refs/heads/master
2020-04-12T14:39:23.733965
2018-10-30T06:17:42
2018-10-30T06:17:42
null
0
0
null
null
null
null
UTF-8
Python
false
false
1,905
py
import time def login(driver, user_email: str, user_password: str): driver.get("https://www.facebook.com") email = driver.find_element_by_id("email") password = driver.find_element_by_id("pass") submit = driver.find_element_by_id("loginbutton") email.send_keys(user_email) password.send_ke...
[ "lewington@student.unimelb.edu.au" ]
lewington@student.unimelb.edu.au
e2fe0f61764b67cc09280aa54e3523f4515f4dda
f1b095ea11282465f8129d457e4b84058b7de426
/practice.py
7fd5e57278587fedca3c2137958c638d7c7dd807
[]
no_license
IvanSivchev/Homeworks
d8cf745004a02aee3cf1b05ee5c9c23993368632
2f31d9692262d37aa92f1ee6cc09cc4849ef8a09
refs/heads/master
2022-10-26T21:54:45.524436
2020-06-14T23:20:58
2020-06-14T23:20:58
272,292,444
0
0
null
null
null
null
UTF-8
Python
false
false
591
py
class Basket: name = 'Basket' size = 10 def putin(self, obj): if obj.size <= self.size: print(obj.name, 'in {}!'.format(self.name)) self.size -= obj.size else: print('You cant put {} in!'.format(obj.name)) class Pack(Basket): name = 'Pack' size = 5 class Object: def __init__(self, name, size): ...
[ "vanyasivchev@icloud.com" ]
vanyasivchev@icloud.com
494251cb3ddb98b1b9da717223066f0ed6b69677
f2f0478171b5e6d2fc1897e4f40b05eba15a36b6
/ex5.py
1d0f78354447d159dfede956b8c7d0695518fb36
[]
no_license
gssakib/python-projects
5930dc612eec8386864ad7b7730642c8155b75ce
70c1a356cb563e4b8040dbee7b46222b2b325cf0
refs/heads/master
2021-09-24T09:49:17.034756
2021-09-10T20:25:42
2021-09-10T20:25:42
57,471,291
0
0
null
null
null
null
UTF-8
Python
false
false
780
py
name = 'Zed A. Shaw' age = 35 height = 74 weight = 180 eyes = 'Blue' teeth = 'White' # my_teeth = "White" hair = 'Brown' in_no_len = 1 in_no_mass = 1 in_cm = in_no_len * 2.54 lb_kg = in_no_mass * 0.45 print "Let's talk about %s." % name print "He's %d inches tall." % height print "He's %d pounds heavy." %weight print...
[ "sakibgazi9@gmail.com" ]
sakibgazi9@gmail.com
c1c25798337a14a9824606e5595643103dd4f1c4
5c72598be125082f8cd9df3555ff6bcc0cfa906d
/pytorch-semseg-model/ptsemseg/loader/pascal_voc_loader.py
43ff94d21ec7e121c312f4bb6435dc9b646a3e3f
[ "MIT" ]
permissive
yyfyan/fast_segmentation_code
d12b663960033804bde8699e24ef90de1ec350ef
3784a09585e41e384cbc1e0a1ebc1ae05642905a
refs/heads/master
2020-03-30T06:12:40.023843
2018-09-27T07:16:53
2018-09-27T07:16:53
150,845,503
1
0
null
2018-09-29T08:57:18
2018-09-29T08:57:18
null
UTF-8
Python
false
false
5,715
py
import os import collections import json import torch import torchvision import numpy as np import scipy.misc as m import scipy.io as io import matplotlib.pyplot as plt # from tqdm import tqdm from torch.utils import data def get_data_path(name): js = open('config.json').read() data = json.loads(js) retur...
[ "dzha9516@uni.sydney.edu.au" ]
dzha9516@uni.sydney.edu.au
3e92f309ef61231db2fa56989217b3ba6eb86326
275a96a33ae1f89e7b2ee0ecdbac7d78abe6d6cc
/swagger_client/models/conflict_error.py
a40924bde282c121008b4b6801a38516e4f056f1
[]
no_license
cascadiarc/cyclos-python-client
8029ce07174f2fe92350a92dda9a60976b2bb6c2
a2e22a30e22944587293d51be2b8268bce808d70
refs/heads/main
2023-04-03T16:52:01.618444
2021-04-04T00:00:52
2021-04-04T00:00:52
354,419,532
0
0
null
null
null
null
UTF-8
Python
false
false
4,439
py
# coding: utf-8 """ Cyclos 4.11.5 API The REST API for Cyclos 4.11.5 # noqa: E501 OpenAPI spec version: 4.11.5 Generated by: https://github.com/swagger-api/swagger-codegen.git """ import pprint import re # noqa: F401 import six from swagger_client.configuration import Configuration class...
[ "dan@leftcoastfs.com" ]
dan@leftcoastfs.com
0255c053d28e22970556e6a2ff0f3ee1edab6c56
0578b6008faa202291aa23d29648c4b371656f62
/Connect4/Board.py
57fa577504d4298151c86e601c6cb8e306b959a4
[]
no_license
mirzalorena/Fundamentals-Of-Programming
491d7e1ea575554e5ab160aafe3943fcaf4e7997
dbc668da2832bbdab28bc34de637e59e46d2f68c
refs/heads/master
2020-11-27T16:45:47.727316
2019-12-22T07:45:56
2019-12-22T07:45:56
229,533,743
0
0
null
null
null
null
UTF-8
Python
false
false
4,736
py
''' Created on Dec 20, 2018 @author: Lorena ''' class Board: def __init__(self,width,height): self.board=[[" "]*width for i in range(height)] self.width=width self.height=height def clear_board(self): """ clears the board """ self...
[ "noreply@github.com" ]
mirzalorena.noreply@github.com
c9f187898d60ce3cc53e084f94baf1419abcf063
ab68f12dbfe8154564c3a10afb7b0cf36d5061d4
/financial_prepp.py
e273fd7387a4ed09072ce70245b4a16c6fe52e58
[]
no_license
esiiol/financial-text-preprocessing
264e736833305beadad3b6f8b301553f5e03e3c6
de6e57cb6ae9a8b4871955472c5c932ab395792f
refs/heads/main
2023-02-22T10:19:09.039142
2021-01-28T14:00:15
2021-01-28T14:00:15
333,775,031
0
0
null
null
null
null
UTF-8
Python
false
false
16,447
py
#### Author: EO #### github: esiiol import string import re import pycountry as pc import pickle NUMBERS_DICT = {'1st': 'first', '2nd': 'second', '3rd': 'third', '4th': 'fourth', '5th': 'fifth', '6th': 'sixth', '7th': 'seventh', '8th': 'eighth', '9th': 'ninth', '10th': 'tenth'} STANDARDS_DICT = {'3g':...
[ "noreply@github.com" ]
esiiol.noreply@github.com
adc64da4e00337e98ee27de6675046ea73ffd7dd
0ce9a72c7d66b71f95ce34ac9103b11026a14e4e
/qqzone/analyze.py
32b7bdc00a740e0ad17c2a98998f4e1e8b5f4757
[ "Apache-2.0" ]
permissive
yanqingda/web-crawlers
9eebafdb55cd9d968f8b33d2f835ad905c300cd0
0b4b04e5b432f2bbfd930b11cb71f0e144ad9cfe
refs/heads/master
2020-09-25T13:57:51.417822
2019-09-23T09:02:07
2019-09-23T09:02:07
226,018,013
0
0
null
2019-12-05T04:45:34
2019-12-05T04:45:34
null
UTF-8
Python
false
false
5,458
py
import hashlib import time import random import re import string from urllib.parse import quote import requests import base def __curl_md5(src): # md5 m = hashlib.md5() m.update(src.encode('utf-8')) return m.hexdigest() def __get_params(plus_item): # request timestamp t = time.time() time...
[ "96486d9b@gmail.com" ]
96486d9b@gmail.com
ee2c5b12e32aa25297b2a8707f08e7a5e99f3f03
46e1efa57240420cae94a2ce51f10159a169b4c9
/hello_celery/hello_celery/urls.py
df3b6ae3a1e9961941437b6eb2c41d40607d5d36
[ "MIT" ]
permissive
rickding/HelloPython
c30d62e53018334e7b3b3b80ed2a7eb097799ac1
c3cb07f83642873a3460ffe489c82505923c3c1a
refs/heads/master
2021-06-16T17:42:29.636391
2021-01-31T08:08:25
2021-01-31T09:28:41
148,429,657
2
2
MIT
2020-08-16T08:01:30
2018-09-12T06:04:41
Python
UTF-8
Python
false
false
861
py
"""hello_celery URL Configuration The `urlpatterns` list routes URLs to views. For more information please see: https://docs.djangoproject.com/en/2.1/topics/http/urls/ Examples: Function views 1. Add an import: from my_app import views 2. Add a URL to urlpatterns: path('', views.home, name='home') Class-...
[ "dingxl" ]
dingxl
49091e1f2a89e3e9e7ef5ea6391ee62e7ad44bc5
19e5f32caa685ef994a3412062307ce5ff753d3f
/make_plots.py
e5e4505c64b73e80fc74db22bad76eaf53d9ff15
[]
no_license
jsbridge/spatial_grism
64f21d58ca4fc71340fb6943684d21c799d39d24
7a98b7b64c7e8d5a74ce0f1b3d54228d0e34e270
refs/heads/master
2020-07-07T18:58:55.317728
2019-08-20T20:08:13
2019-08-20T20:08:13
203,446,554
0
0
null
null
null
null
UTF-8
Python
false
false
9,334
py
import numpy as np import matplotlib.pyplot as plt import matplotlib from astropy.io import fits from glob import glob from astropy.cosmology import FlatLambdaCDM from astropy import units as u from astropy.coordinates import SkyCoord from scipy.ndimage.filters import gaussian_filter import matplotlib.patches as patche...
[ "noreply@github.com" ]
jsbridge.noreply@github.com
4e5b44cede07a7e2b8c0b027274aa44993e86d83
a29a5568437622310ff9e2ce61a3f114f29eb8fd
/all_CO2_workingWang.py
64f5aaad3d8fba6cbf1f540482a11d01e7926834
[]
no_license
wrudebusch/DRI-HKTunnel
7bab2376e25be966d4d7e1515494632cf79c0c2d
6211a0acafc7d00c0db5472390626ca0745b1634
refs/heads/master
2021-01-19T02:27:48.067781
2016-06-07T19:15:37
2016-06-07T19:15:37
52,547,905
0
0
null
null
null
null
UTF-8
Python
false
false
2,698
py
import pandas as pd import glob dateparse = lambda x: pd.datetime.strptime(x, '%m/%d/%Y %H:%M:%S') def fix(df): start = pd.Timestamp(long(round(df.index[0].value, -10))) stop = pd.Timestamp(long(round(df.index[-1].value, -10))) s = pd.DataFrame({'start' : start,'stop' : stop,'avg_ppm' : df.mean()}) s ...
[ "wrudebusch@gmail.com" ]
wrudebusch@gmail.com
7e03c5d6aaabd3d4ec2c4061fd2fb4562f4f896f
548a597a800fbe63e63b6d0bae7a0f000f82c3a7
/User/user.py
89b662838fbb87659a71f1398bce23e5df3bf810
[ "BSD-3-Clause" ]
permissive
SaeGot/SaeGot-Engine_pygame
ecd804045915e70f55f95e1ea464f7a7f8f08ce7
e97a81d7eeb079164ecc231f4b9406141e84cb55
refs/heads/main
2023-03-05T15:57:04.201972
2021-02-13T17:59:39
2021-02-13T17:59:39
null
0
0
null
null
null
null
UTF-8
Python
false
false
208
py
import pygame class User: _id = None _logon = False def __init__(self, id = None, logon = False): self._id = id self._logon = logon def login(self, id): self._id = id
[ "noreply@github.com" ]
SaeGot.noreply@github.com
6085a2cfbcde968d0ed001eb7a49d5bebfa6aa75
817a97680e85142634c3e7c66a3e0a0e5eceaffd
/sma_cross_vol.py
d1c0f856afe1d5f0f00c0bc6834541cf33e6a4d0
[]
no_license
johndpope/algotrading
4cca78db99af8fef0d1fc57aac3104bd0e8a895c
f2f527f85aad6cce928f1c2e9794f9217efcce93
refs/heads/master
2021-06-24T15:24:53.136691
2017-08-27T16:13:55
2017-08-27T16:13:55
null
0
0
null
null
null
null
UTF-8
Python
false
false
2,488
py
from datetime import datetime, timedelta import backtrader as bt class SMACrossVolumeStrategy(bt.SignalStrategy): params = dict( diff=0.01, limit=0.005, limdays=10, limdays2=1000, maperiod_small=30, maperiod_big=30, ) def __init__(self): self.order = None ...
[ "lifanov.a.v@gmail.com" ]
lifanov.a.v@gmail.com
56de729d7a7b75d2cb74bb8c681c2ba54b94ae29
638558203b38d60b1716f6d87ccc8d01587ed99c
/HeapPriorityQueue.py
92f0f659aae10a37abd99fd585a953cd671bcd7b
[]
no_license
cluntsao/python-learning
b3cb08c527f037cd040a972494b239c32294537a
4e61be66e85d82d63349869a8ee72c7ae6b94ee5
refs/heads/master
2020-03-24T05:55:38.298430
2018-08-10T03:46:52
2018-08-10T03:46:52
142,508,814
0
0
null
null
null
null
UTF-8
Python
false
false
2,138
py
from PriorityQueueBase import PriorityQueueBase class Empty(Exception): pass class HeapPriorityQueue(PriorityQueueBase): """Non-public behaviors""" def _parent(self, j): return (j - 1) // 2 def _left(self, j): return 2*j + 1 def _right(self, j): return 2*j + 2 def _...
[ "tsaochelun@gmail.com" ]
tsaochelun@gmail.com
018e46a708e7f3628fb3cb3145bd3c952e687e30
702277b0be87a6b2f64e1e3e07194993ca5033e7
/app.py
a5619bcf73e15bc432c93404d49038b3c731ef59
[]
no_license
angiesk/flask-101
03c3124ed2a9b7d6ebef989754de88ba65992839
2aa436a56e85e7fed43e9d2c095f049fa71d712a
refs/heads/master
2020-04-21T16:58:27.101681
2019-02-08T11:27:22
2019-02-08T11:27:22
169,720,536
1
0
null
null
null
null
UTF-8
Python
false
false
204
py
from flask import Flask app = Flask(__name__)#app is the name of the object here @app.route('/') def home(): return "<h1> Hello World </h1>" if __name__ =="__main__": app.run(debug=True,port=8080)
[ "shivangi2197@hotmail.com" ]
shivangi2197@hotmail.com
ed6150280bcf84458f2651fbd3fa61ffeb81b29b
20310d2c7708dbcd4ec35cad8937f34f74432059
/Chapter05/goodFeaturesToTrack.py
bd2c8143f0e06aafca9cffb512a62f64f628cc8a
[]
no_license
jCuadra/OpenCVwithPython
69db8d663942edfbf7b39371b2209f90081a3873
ea9c8afcb290083bb62d4dcb0b299187349a7320
refs/heads/master
2021-01-16T18:34:33.192469
2017-06-02T09:04:20
2017-06-02T09:04:20
null
0
0
null
null
null
null
UTF-8
Python
false
false
488
py
import cv2 import numpy as np img = cv2.imread('./image/box.jpg') gray = cv2.cvtColor(img,cv2.COLOR_BGR2GRAY) corners = cv2.goodFeaturesToTrack(gray, 7, 0.05, 25) # params # gray: image to detect corners # 7: the number of corners to detect # 0.05: threshold for detecting corners # 25: the minimum distance between co...
[ "huddy1204@gmail.com" ]
huddy1204@gmail.com
40d4849bbc2eaf4a84128ba8c1fdc12a9548dde1
16450d59c820298f8803fd40a1ffa2dd5887e103
/baekjoon/5622.py
d81981f661aa57dc341a4a724cc55527ebc3158a
[]
no_license
egyeasy/TIL_public
f78c11f81d159eedb420f5fa177c05d310c4a039
e2f40eda09cb0a65cc064d9ba9b0e2fa7cbbcb38
refs/heads/master
2021-06-21T01:22:16.516777
2021-02-02T13:16:21
2021-02-02T13:16:21
167,803,551
0
0
null
null
null
null
UTF-8
Python
false
false
1,529
py
""" 상근이의 할머니는 아래 그림과 같이 오래된 다이얼 전화기를 사용한다. 전화를 걸고 싶은 번호가 있다면, 숫자를 하나를 누른 다음에 금속 핀이 있는 곳 까지 시계방향으로 돌려야 한다. 숫자를 하나 누르면 다이얼이 처음 위치로 돌아가고, 다음 숫자를 누르려면 다이얼을 처음 위치에서 다시 돌려야 한다. 숫자 1을 걸려면 총 2초가 필요하다. 1보다 큰 수를 거는데 걸리는 시간은 이보다 더 걸리며, 한 칸 옆에 있는 숫자를 걸기 위해선 1초씩 더 걸린다. 상근이의 할머니는 전화 번호를 각 숫자에 해당하는 문자로 외운다. 즉, 어떤 단어를 걸 때, 각 알파벳에 해...
[ "dz1120@gmail.com" ]
dz1120@gmail.com
f0d87bc6ed10a1caabc7f8732994e85fec06d724
a416bcbba315b8a407fcd21dee082cceee8a6e5e
/print/print.py
ab0c381ba973a8ce80dcb391d544ecbcd17f8399
[ "MIT" ]
permissive
Devendrabhat/print
f3e05f86fb5627a8b416dc7841c0a6c1b1fa9391
1316e55dcedb58ebd552ea8c5587cf20bec825c5
refs/heads/master
2020-04-12T11:19:57.951634
2018-12-15T22:56:46
2018-12-15T22:56:46
null
0
0
null
null
null
null
UTF-8
Python
false
false
1,917
py
"""ASCII Large Text and ANSI escape sequence print overloading Examples -------- print("Testing", RED, BOLD) print("ASCII Art", BLUE+BR, BIG) """ import sys import os import re from . import putil # Try to import pyfiglet try: import pyfiglet def __pf_render(s, f): return s if f is None else pyfigle...
[ "thetianshuhuang@gmail.com" ]
thetianshuhuang@gmail.com
d51989b8a2d4b06d6222328761a11df153f3d1d5
653fa1ead69f115d458ceb486374a63e240dc298
/ana.py
8dc4c703e74e83dcd8c91623a56904499bf9fbcb
[ "MIT" ]
permissive
CanDenizKas/teksayiguncelleme
ab9d809e6fd7bb7836d5461088349600bb889858
92cc24b2bb2a3933a3f3286f11b4c3db909d4a16
refs/heads/main
2023-02-27T12:34:47.394193
2021-02-06T12:28:22
2021-02-06T12:28:22
335,058,234
0
0
null
null
null
null
UTF-8
Python
false
false
312
py
bos_liste = [] top_sayi = int(input('Toplam kaç sayı olsun ? :: ')) for n in range(top_sayi): sayilar = int(input('Sayi Gir ')) bos_liste.append(sayilar) for j in bos_liste: if j % 2 == 0: continue else: print("Listedeki En Yüksek Tek Sayı :", max(bos_liste)) break
[ "candenizkas@gmail.com" ]
candenizkas@gmail.com
315cb972ca9bd6d4aa858a998327cbe1adc88343
3a7947b96c67d8b9360e7fe8d17511085dd399bf
/ระดับคำ/question_num_ans_predict.py
810958abbe6e47f3c70600f409802aa4abaff025
[]
no_license
noratap09/QA_Question_type_1
97da7b987914928277d989e19d6e2b0d56db4a7e
9d276d26540097603e83abd837865d0e617eda3a
refs/heads/master
2020-11-25T10:06:33.361504
2020-01-29T12:47:04
2020-01-29T12:47:04
228,611,333
0
0
null
null
null
null
UTF-8
Python
false
false
2,675
py
import deepcut import json my_file = open("data_set_fix.json",'r',encoding = 'utf-8-sig') txt = my_file.read() json_obj = json.loads(txt) from pythainlp.tag import pos_tag, pos_tag_sents from pythainlp.tag.named_entity import ThaiNameTagger ner = ThaiNameTagger() def ck_have_num(ans): ans_ne = ne...
[ "noreply@github.com" ]
noratap09.noreply@github.com
a3ee575e7318f6ded972fa7288d9b79b53f4f0e7
302442c32bacca6cde69184d3f2d7529361e4f3c
/cidtrsend-all/stage2-model/pytz/zoneinfo/Navajo.py
1b27ae20abe14d05ef0286e1b3a242389516aafd
[]
no_license
fucknoob/WebSemantic
580b85563072b1c9cc1fc8755f4b09dda5a14b03
f2b4584a994e00e76caccce167eb04ea61afa3e0
refs/heads/master
2021-01-19T09:41:59.135927
2015-02-07T02:11:23
2015-02-07T02:11:23
30,441,659
1
0
null
null
null
null
UTF-8
Python
false
false
7,131
py
'''tzinfo timezone information for Navajo.''' from pytz.tzinfo import DstTzInfo from pytz.tzinfo import memorized_datetime as d from pytz.tzinfo import memorized_ttinfo as i class Navajo(DstTzInfo): '''Navajo timezone definition. See datetime.tzinfo for details''' zone = 'Navajo' _utc_transitio...
[ "learnfuzzy@gmail.com" ]
learnfuzzy@gmail.com
0fa7e3fc6fd950f1f23e646d84d728185e1189c8
b4edc965851727001349d72009bf833443754696
/urls/settings.py
d2026cad2b9a1ffc966fcace37646e5a1b03355c
[]
no_license
codecov-test/urls
50491e56fc2b62cb6d31b9e3fc6dc886ab9e58cc
2762377fd90d5fa77729b796d2687705c7733b4b
refs/heads/master
2020-12-30T19:58:00.122749
2016-04-01T23:24:11
2016-04-01T23:24:11
null
0
0
null
null
null
null
UTF-8
Python
false
false
4,744
py
# Django settings for urls project. import os ROOT = os.path.abspath(os.path.join(os.path.dirname(__file__), '..')) DEBUG = True TEMPLATE_DEBUG = DEBUG ADMINS = ( ('Dennis Hedegaard', 'dennis@dhedegaard.dk'), ) MANAGERS = ADMINS DATABASES = { 'default': { 'ENGINE': 'django.db.backends.sqlite3', ...
[ "dennis@dhedegaard.dk" ]
dennis@dhedegaard.dk