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 213
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 246
values | content stringlengths 2 10.3M | authors listlengths 1 1 | author_id stringlengths 0 212 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
4909792747b867d8ead48398c4b759380cb2a20f | 252fb21a282af287ea30c1da3f1502393ce9cea6 | /ngosek.py | c82f9765d808f4a8c9027db406770e401977bee6 | [] | no_license | ZAKI-ZK/ngosek | fc77d78f46c0137ce04531f0e18a09a637e487d3 | a2ff28c90be4026b05db2d1b8c413ea82b421e37 | refs/heads/main | 2023-02-23T14:36:15.560604 | 2021-01-24T10:14:09 | 2021-01-24T10:14:09 | 332,416,918 | 0 | 3 | null | null | null | null | UTF-8 | Python | false | false | 413,478 | py | #Recode Bawng#
#kreasikan Sendiri Ea#
import marshal
exec(marshal.loads('c\x00\x00\x00\x00\x00\x00\x00\x00\x03\x00\x00\x00@\x00\x00\x00s!\x00\x00\x00d\x00\x00d\x01\x00l\x00\x00Z\x00\x00e\x00\x00j\x01\x00d\x02\x00\x83\x01\x00d\x01\x00\x04Ud\x01\x00S(\x03\x00\x00\x00i\xff\xff\xff\xffNt4M\x06\x00I1JlY29kZSBLYW5nPyBNb25nZ2... | [
"noreply@github.com"
] | ZAKI-ZK.noreply@github.com |
03722a6aee3545b21f5bc9399bbd2f59dbe8837f | 8e5d01b7aadd865acf81d6f0a197a9c5fe7a36a6 | /main.py | 2cf75402fc30637367d97bae2d32669e66bc2d09 | [] | no_license | Renatkg20/GDP_of_KR | 16448ecc3b469a0dfb04ea02d93fac172b556efa | 0a3f0be4864fd782c10722dfe9d0ff1105dffd94 | refs/heads/master | 2023-04-15T09:42:25.784827 | 2021-04-26T09:05:38 | 2021-04-26T09:05:38 | 361,685,461 | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 546 | py |
import requests
import lxml
from bs4 import BeautifulSoup
import pandas as pd
import matplotlib.pyplot as plt
l1 = []
l2 = []
url = 'http://www.stat.kg/ru/opendata/category/2315/xml'
res = requests.get(url)
soup = BeautifulSoup(res.text,'lxml-xml')
titles = soup.find('data').find_all('value')
titles1 = soup.find('da... | [
""
] | |
29441f3f228659d5914fc9740e748282cce34a6f | fc257bc24ec0a524fd10f4967adc31ec21f2effa | /Building/InitialTest.py | 22712f427637eca753731c97c4971b55439aeb48 | [] | no_license | connor-makowski/AnagramSolver | 0c014193b91e1850d63928f7371eaf43a54685b5 | 8081287d74da6aaadbfcf5d17c348bb247ca1ee0 | refs/heads/master | 2020-03-29T00:34:47.026615 | 2018-09-18T20:32:40 | 2018-09-18T20:32:40 | 149,346,184 | 0 | 1 | null | null | null | null | UTF-8 | Python | false | false | 543 | py | dictionary={'a':["apple","atom"], 'b':["banana", "bat"], 'e':[], 'l':[], 'm':[], 'o':[], 'p':[], 't':[]}
def find(letters):
consider=[]
found=[]
for i in list(set(letters)):
for j in dictionary[i]:
consider.append(j)
letters.append("")
for i in consider:
ileft=i
... | [
"connorman528@gmail.com"
] | connorman528@gmail.com |
4957c2dfdea4282fdac9acb9014529e1c0fcf72c | d48404bd7ec460f3cfaf4a72876733f2071f35cf | /CodeChef/EVENPSUM.py | b528ca9ebe9e926917770038beacac090cbc7bc2 | [] | no_license | barvaliyavishal/DataStructure | 1c015ff6df1aeb08955dd8dd3a989ced8e08d634 | 33f2bb9cb50c15cbb3a018a0b3d20ec9d99c680e | refs/heads/main | 2023-04-02T11:33:54.272237 | 2021-04-07T03:57:54 | 2021-04-07T03:57:54 | 313,028,546 | 1 | 0 | null | null | null | null | UTF-8 | Python | false | false | 473 | py | def pairs(a,b):
if a==1 or b==1:
return a*b
if a%2 == 0:
a1=a/2
a2=a/2
else:
a1 = int(a//2)+1
a2 = a//2
if b%2 == 0:
b1=int(b/2)
b2=int(b/2)
else:
b1 = int((b//2)+1)
b2 = int(b//2)
return int((a1*b1)+(a2*b2))
t = int(input... | [
"vishalbarvaliya112@gmail.com"
] | vishalbarvaliya112@gmail.com |
f18b87a61c23f3c882b21115883808649eb01aa8 | 3cf7b77f07ac55e83244810828ab5145e25dd98b | /back-end/app/api/users.py | ed43d2245209dcc71e7b3ddb5f49896bb9590fae | [] | no_license | ELPRNRN/flask-vuejs-project | f70895ab2f6f0494fe5bcd33cfaeb948ed570aac | 81454c51a991a8ef5ae4dfc8fd8941c4a74435d0 | refs/heads/main | 2023-07-14T14:46:06.357971 | 2021-08-24T08:03:04 | 2021-08-24T08:03:04 | 391,861,961 | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 3,726 | py | import re
from flask import json, request, jsonify, url_for
from app import db
from app.api import bp
from app.api.errors import bad_request
from app.models import User
from app.api.auth import token_auth
@bp.route('/users', methods=['POST'])
def create_user():
'''注册一个新用户'''
data = request.get_json()
if no... | [
"877237843@qq.com"
] | 877237843@qq.com |
15f466d20b51d0e199a6bca4759d7a97d12b9d39 | e1aeede7cecf2bdb3317954e042f41810745b980 | /winston/commands/__init__.py | 879f94514a8039ff04a915527499ca075f99746c | [] | no_license | G10DRAS/winston | b0f50822af077d374e864f2eefa559275c673fef | c72c7f77a89f77d1de31cd0f401b3dc836338b36 | refs/heads/master | 2021-01-15T16:04:40.719122 | 2014-02-27T22:31:56 | 2014-02-27T22:31:56 | null | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 1,365 | py | import re
class Command(object):
"""
Stores a command that is executed by external events such as a voice command,
a change of state or a notification.
"""
# The name with which all commands begin. Can be a word or a regex.
# Example: jenkins, alfred, robot. "Jenkins! Turn on the lights!"
... | [
"contact@nicolasbouliane.com"
] | contact@nicolasbouliane.com |
6dbf65dea55f3575b84c21c3e7a60a933815fa0e | 87b4c1e282782ddfa22df95d8f494322bf2f2fb9 | /Flower Classification with Image Histogram/dataset.py | 1b47f756b06a5dd1afd718f35f291a0afe4c1872 | [] | no_license | janFrancoo/Python-Projects | 34e9515ae167bdca2f8e601c3ccc4bd4a6cb48cb | 875ed126e4adb7cd4c2884660f24d6515086995c | refs/heads/master | 2021-06-26T17:40:47.740967 | 2021-01-31T15:27:25 | 2021-01-31T15:27:25 | 199,189,125 | 0 | 1 | null | null | null | null | UTF-8 | Python | false | false | 931 | py | import os
import cv2
labels = ["Daffodil", "Snowdrop", "Lilly Valley", "Bluebell", "Crocus", "Iris", "Tigerlily", "Tulip", "Fritillary",
"Sunflower", "Daisy", "Colts' Foot", "Dandelion", "Cowslip", "Buttercup", "Windflower", "Pansy"]
def get_flowers(flowers_path, masks_path):
count = -1
masks = []
... | [
"noreply@github.com"
] | janFrancoo.noreply@github.com |
995a30cae3b6f9f2e6070bcbd6af0c64dc94c210 | d180358de36aa48ce950cee4eb719c0c4d9b70c4 | /linglingupdate.py | 92e71c7b0806dea11b5bf3b13e5ed9bcdc0bfb66 | [] | no_license | Patteera/NYLL-s-Warehouse | c822bcd380dc3f907ba48a2963c15834c83f9fb8 | 84f424185c793b840b2e670b9c0db772d3cfb244 | refs/heads/master | 2020-03-28T07:32:22.785784 | 2018-09-18T16:05:06 | 2018-09-18T16:05:06 | 147,908,248 | 2 | 1 | null | null | null | null | UTF-8 | Python | false | false | 1,637 | py | class warehouse :
def __init__(self):
self.wh1row = []
self.wh2row = []
self.wh3row = []
self.wh4row = []
self.wh5row = []
self.Product_Type = ['A','B','C','D','E','F','G','H','I','J','K','L','M','N','O','P','Q','R','S','T','U','V','W','X','Y' ]
def wh1(self,row... | [
"noreply@github.com"
] | Patteera.noreply@github.com |
4e46fc1146171e707de259a46aba0b3f3436bf38 | af0246f2f85121746ea851919cb4ae29bfbf3cf7 | /web_flask/5-number_template.py | b5d1289ccff63834cf0f84a5beff7716c1b9fcc5 | [] | no_license | andreshugueth/AirBnB_clone_v2 | a2a3728e5e351da89896a1abf27432a6c4a552e9 | 2284221834134479d30ebd0a29a5902b1ee2eef3 | refs/heads/master | 2022-12-09T16:11:57.215900 | 2020-09-03T03:32:28 | 2020-09-03T03:32:28 | 286,791,785 | 0 | 1 | null | 2020-08-14T01:49:39 | 2020-08-11T16:17:50 | Python | UTF-8 | Python | false | false | 1,263 | py | #!/usr/bin/python3
"""
script that starts a Flask web application
Your web application must be listening on 0.0.0.0, port 5000
"""
from flask import Flask, render_template
app = Flask(__name__)
@app.route('/', strict_slashes=False)
def index():
"""display Hello HBNB!"""
return "Hello HBNB!"
@app.route('/hb... | [
"andreshugueth@gmail.com"
] | andreshugueth@gmail.com |
8acc9bc358a8f92477e4d4014cb1f0dd864c69da | 375c87462c4ed200cecce0aeab09c6161ac10dcd | /pwg_ls2/RV/dict_2_changes.py | dd80bde0aefbda7ab8b5fe3967bd41d33ad19f5b | [] | no_license | sanskrit-lexicon/PWG | 2e7ab371ec7e4da43d81d50663b06fa2e2b44806 | d32d701366cff1156b7f7bb0aea8ea27cd7fb7dd | refs/heads/master | 2023-02-07T02:49:53.179915 | 2023-02-03T19:53:25 | 2023-02-03T19:53:25 | 15,903,655 | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 2,421 | py | #-*- coding:utf-8 -*-
""" dict_2_changes.py
"""
import sys,re,codecs
## https:##stackoverflow.com/questions/27092833/unicodeencodeerror-charmap-codec-cant-encode-characters
## This required by git bash to avoid error
## UnicodeEncodeError: 'charmap' codec cannot encode characters
## when run in a git bash script.
sys... | [
"funderburkjim@gmail.com"
] | funderburkjim@gmail.com |
977bc165e5b5c3d63feed928b4459302dc933bbd | 9bee8acec14f2cffaf28dde4ff11fdba41d032df | /Modul8Python_Kel30/main.py | 0e39c554a1413261f5af31a891fc352c3b458685 | [] | no_license | RifkyHernanda/PRAK_DKP_RIFKYHERNANDA_KELOMPOK30 | 74331e8600852da56c02551cf4e9f8bfdae8c096 | c90815184d2ad89337c0933643a566a418c2893b | refs/heads/main | 2023-05-09T02:00:30.792846 | 2021-05-25T14:39:06 | 2021-05-25T14:39:06 | 354,746,004 | 1 | 0 | null | null | null | null | UTF-8 | Python | false | false | 7,827 | py | from tkinter import *
from tkinter import ttk
from tkinter import messagebox
from ipconf import CheckIP
Ipconfig = CheckIP("",0,0,0,0,"","","","","")
def submit():
clear()
InputIP = stringnama.get()
InputCIDR = stringCIDR.get()
Ipconfig.setIP(str(InputIP))
Ipconfig.ngecekIP()
indeks... | [
"noreply@github.com"
] | RifkyHernanda.noreply@github.com |
46974623cf67721b116ca1a07598459250bd4126 | 98fbb63f49942daf17208ba0c0590b3d7bb43140 | /ch10_statements/try_except.py | 04c98736fbcee1402eb5e0eddda100169fc1782b | [] | no_license | dsm-kbl/python-snippets | b0b546abdfaf2a676c060cdf4afda1828ec4169e | 0ef3d48967c8334b26e1cf392cfba089beaca08a | refs/heads/master | 2023-05-14T08:29:17.138695 | 2021-06-02T12:02:23 | 2021-06-02T12:02:23 | 299,259,889 | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 201 | py | from typing import Text
while True:
reply = input('Enter text:')
if reply == 'stop':
break
try:
print(int(reply) ** 2)
except:
print('Bad!' * 8)
print('Bye')
| [
"dibyam@amazon.com"
] | dibyam@amazon.com |
d22dce48ca2cb6a0918d2c520ce8921c1c480199 | 0c8c798e10696496a276632bf506e5a28a5a7a65 | /Pizza.py | 15378c6f6f8c1f28899fa867f22d7ed973ad5de5 | [] | no_license | Sale3054/CSCI_4448-Browserator | 540db669ec9563bafdd430a1bc3341b140b892ae | 0e74539beb2c58ca3e73ccf28cfe383f9c8075e2 | refs/heads/master | 2020-03-29T10:06:13.846685 | 2018-11-29T17:58:28 | 2018-11-29T17:58:28 | 149,789,426 | 0 | 0 | null | 2018-11-29T10:55:16 | 2018-09-21T16:26:18 | Python | UTF-8 | Python | false | false | 3,199 | py | #
# Base Pizza construction
#
import abc
class Pizza:
"""
Overarching class structure for each Pizza object. Contains the abstract method for prepare-
to be filled out by a factory.
"""
# metaclass for @abstractmethod
__metaclass__ = abc.ABCMeta
def __init__(self, name = None, dough = None, sauce... | [
"noreply@github.com"
] | Sale3054.noreply@github.com |
4aaad55843e277a02646a91c6816ac641bb76a96 | 53fab060fa262e5d5026e0807d93c75fb81e67b9 | /backup/user_171/ch4_2019_04_03_14_50_06_906813.py | 13c4f9117194d74ac4dc2b5209ab49e9cc9ef2fc | [] | 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 | 204 | py | def classifica_idade (x):
if x<=11:
print('crianca')
return x
elif x>11 and x<=17:
print('adolescente')
return x
else:
print('adulto')
return x
| [
"you@example.com"
] | you@example.com |
a879df24d86dc8af1ae7633235f859be1a1e0509 | 09e57dd1374713f06b70d7b37a580130d9bbab0d | /benchmark/startQiskit_QC1759.py | bcb20cc7d58111256fe3f74a18f02994896b444e | [
"BSD-3-Clause"
] | permissive | UCLA-SEAL/QDiff | ad53650034897abb5941e74539e3aee8edb600ab | d968cbc47fe926b7f88b4adf10490f1edd6f8819 | refs/heads/main | 2023-08-05T04:52:24.961998 | 2021-09-19T02:56:16 | 2021-09-19T02:56:16 | 405,159,939 | 2 | 0 | null | null | null | null | UTF-8 | Python | false | false | 4,797 | py | # qubit number=5
# total number=60
import cirq
import qiskit
from qiskit import IBMQ
from qiskit.providers.ibmq import least_busy
from qiskit import QuantumCircuit, QuantumRegister, ClassicalRegister
from qiskit import BasicAer, execute, transpile
from pprint import pprint
from qiskit.test.mock import FakeVigo
from ma... | [
"wangjiyuan123@yeah.net"
] | wangjiyuan123@yeah.net |
f40c7ccf977a432c5d2c36e256dbd98a05843a8e | 9686eedc019502beed8268c0a87d6ecff09e953f | /src/aws/conf.py | 116f70c7204ed0d8ee8c7a56991bd10cb19792fe | [] | no_license | gabaldo/django_s3 | 62aee7461002888dde8ff3c3761a080b1fd1843e | f8a6ade850c6133aef3993c921bba561ef719f6d | refs/heads/master | 2021-08-17T15:25:14.733703 | 2018-11-28T01:05:20 | 2018-11-28T01:05:20 | 159,425,496 | 0 | 0 | null | 2021-06-10T21:01:43 | 2018-11-28T01:36:48 | JavaScript | UTF-8 | Python | false | false | 1,050 | py | import datetime
from decouple import config
AWS_ACCESS_KEY_ID = config('AWS_ACCESS_KEY_ID')
AWS_SECRET_ACCESS_KEY = config('AWS_SECRET_ACCESS_KEY')
AWS_FILE_EXPIRE = 200
AWS_PRELOAD_METADATA = True
AWS_QUERYSTRING_AUTH = False
DEFAULT_FILE_STORAGE = 'src.aws.utils.MediaRootS3BotoStorage'
STATICFILES_STORAGE = 'src.aw... | [
"gabaldo@gmail.com"
] | gabaldo@gmail.com |
729abfa1e3f7ced74382ac6c49bbbb8b7bcbade5 | 25228fd85c78b3b232bdfce9f1df63973f4b9553 | /ADS/binary_search_iterative.py | f4c27867d45f8d4fe3643b75a7138dd949789c83 | [] | no_license | M-Aladin/bioinf_bologna_master | 603836336d67e2a136ce1f22c3b1cd85e45e022c | b977c2870c4e2606d6a180938c8dbeac392951e0 | refs/heads/master | 2020-12-10T00:23:05.160698 | 2019-06-30T14:50:20 | 2019-06-30T14:50:20 | null | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 828 | py | def binary_search(A, v):
# initialize indices
p = 0
r = len(A)
while len(A[p:r]) > 1:
q = (p+r)//2 # find midpoint
# update right limit of search (r) if midpoint is greater than query
if A[q] > v:
r = q
# update left limit of search (p) if midpoint is lesse... | [
"mariasilvia.morlino@studio.unibo.it"
] | mariasilvia.morlino@studio.unibo.it |
f575acf5003fca4bb2f4ca047e2c00e3da6ca5bf | d1dc4dcd113acc3a954dc1fcadb584acb2135dbe | /adia/sequence.py | 810d445953712affb878b649ef818cabc74830f6 | [
"MIT"
] | permissive | denysmiller/adia | 24a881b551def89b2e69bc1cef215d93174f71d5 | 86dc0c96c9b0bd804dff208e91c71a1958df56b0 | refs/heads/master | 2023-08-27T15:01:46.537505 | 2021-09-14T21:43:11 | 2021-09-14T21:43:11 | null | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 9,955 | py | from io import StringIO
from .lazyattr import LazyAttribute
from .container import Container
from .interpreter import Interpreter, Consume, Final, FinalConsume, New, \
Ignore, Goto, Switch
from .token import NAME, NEWLINE, EVERYTHING, RARROW, COLON, AT, HASH, EOF, \
DOT, DEDENT, INDENT, MULTILINE, TILDA
clas... | [
"vahid.mardani@gmail.com"
] | vahid.mardani@gmail.com |
7f95dc0c757ee5c602eda0c84f0a8b39f5e022ba | bc181d3e95743e498a1ec0cfbdac369a01d95218 | /apps/accounts/migrations/0001_initial.py | 7daca24efb48c0d09b39887195357f9e09d5df77 | [] | no_license | roman-oxenuk/welltory_test | 09bbbd8502735adb3662318affa3df10ef47f5af | 853dff24bbf38d5c2d6dce75dd5713ab6347a00d | refs/heads/master | 2021-01-21T23:23:55.809175 | 2017-06-23T18:50:54 | 2017-06-23T18:50:54 | 95,241,585 | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 2,255 | py | # -*- coding: utf-8 -*-
from __future__ import unicode_literals
from django.db import models, migrations
class Migration(migrations.Migration):
dependencies = [
('auth', '0006_require_contenttypes_0002'),
]
operations = [
migrations.CreateModel(
name='User',
fiel... | [
"roman.oxenuk@gmail.com"
] | roman.oxenuk@gmail.com |
545da2d80571e4c8539199e79b3b92fa018cd91d | 8629b45d5cec27fa701c76644db2a1ac9a090b07 | /016/16.py | e848effd4500e3781e5281f0b148d840ea536535 | [
"MIT"
] | permissive | bsamseth/project-euler | 96e3a7a94cc605ded3edf7176a93147f9836350e | 60d70b117960f37411935bc18eab5bb2fca220e2 | refs/heads/master | 2021-04-06T06:16:23.425225 | 2018-11-05T09:50:21 | 2018-11-05T09:50:21 | 59,105,649 | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 175 | py | """
2^15 = 32768 and the sum of its digits is 3 + 2 + 7 + 6 + 8 = 26.
What is the sum of the digits of the number 2^1000?
"""
print sum([int(char) for char in str(2**1000)])
| [
"b.samseth@gmail.com"
] | b.samseth@gmail.com |
cafbd0edd48a15870ef991e7abd0b9b0f1125f80 | af6d81161b66b916848f8f188c392a2cf51c95a3 | /loan_backend/urls.py | 1c12daccb300129dce015ffa0de2987ae0f1ecfe | [] | no_license | Muaaz256/loan_backend | 535814dcfa8caf3c704daea8fe6042924c80dd6f | 3e6d7994e7bd66a0f07703a4ac6b0c2d2a1ded71 | refs/heads/master | 2023-04-14T04:30:57.404524 | 2021-04-26T02:35:12 | 2021-04-26T02:35:12 | 323,278,178 | 0 | 0 | null | 2021-04-23T21:29:33 | 2020-12-21T08:42:08 | Python | UTF-8 | Python | false | false | 1,131 | py | """loan_backend URL Configuration
The `urlpatterns` list routes URLs to views. For more information please see:
https://docs.djangoproject.com/en/3.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-... | [
"m.muaaz.nu@gmail.com"
] | m.muaaz.nu@gmail.com |
5fa1263b87c8a58f0a3c3222561463850690d908 | e78a642ce007b80ad59289a7216d4d821b3f033d | /ser3.py | 48507c2c72146671f5308b69819663c513dc05d8 | [] | no_license | eier7/ser3 | 9dd7098f06739c56bdb02c8bdf53f0d0fe0bd1b0 | 9839e952e04865cf83d6aa6774f7bf25b29379ce | refs/heads/master | 2020-05-17T08:35:46.878216 | 2016-12-20T14:29:07 | 2016-12-20T14:29:07 | 34,012,212 | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 7,741 | py | #!/usr/bin/env python
# -*- coding: utf-8 -*-
import curses
import time
import pynmea2
import serial
import re
from queue import Queue
from threading import Thread
import RPi.GPIO as GPIO
GPIO.setmode(GPIO.BCM)
GPIO.setup(17, GPIO.IN, pull_up_down=GPIO.PUD_UP)
GPIO.setup(22, GPIO.IN, pull_up_down=GPIO.PUD_UP)
GPI... | [
"eivind.ervik@gmail.com"
] | eivind.ervik@gmail.com |
c70625ed21d14a9898fcf4634d6fce764308da76 | 225052e8d4b45764a1d210834e9e9e6dc81cde19 | /buy_sell/models.py | 14530a7804c84284b5f0b9e4697691fe37bd353c | [] | no_license | vishnu-k-s/Buy-Sell-App | 99d8b50cce1a95466bfc2e29894c553b21d7d208 | fa92bdf17b8a5e1e3f91fd5096e216fdd2febdb8 | refs/heads/master | 2023-08-13T20:34:39.397877 | 2021-10-13T04:52:33 | 2021-10-13T04:52:33 | 394,286,781 | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 1,864 | py | from django.db import models
#Model for user registration
class NewUser(models.Model):
username = models.CharField(max_length=150)
name = models.CharField(max_length=150)
email = models.EmailField(max_length=150)
phonenumber = models.CharField(max_length=10)
password = models.CharField(max_length=... | [
"vishnusajeevks@gmail.com"
] | vishnusajeevks@gmail.com |
ac27fa5da4e1b7a0d7e02d6b67242c31366b9ff4 | ee3868586cf2a43e99e60adf9defcf71a265d357 | /hello/migrations/0004_reportcaptainpoints.py | dd2f354514f8fd34996e51e1f8ef81c355b05313 | [] | no_license | gringorichards/FFGringo | 36c6c6b14cf26b09ced277fb2a34a45d7a47f9ba | 857774eb88fd5a21caeda83928670d1bc3fee1b5 | refs/heads/master | 2020-04-20T03:02:25.192242 | 2019-03-20T08:29:33 | 2019-03-20T08:29:33 | 168,586,913 | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 821 | py | # Generated by Django 2.1.1 on 2019-02-02 19:39
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('hello', '0003_delete_captainsreport'),
]
operations = [
migrations.CreateModel(
name='ReportCaptainPoints',
fields=[... | [
"gringo.richards@gmail.com"
] | gringo.richards@gmail.com |
0d67d821dd5dd3cad7929858c70e6c54b367a7bc | 8a59aef3a0d28ac3bc44854241b9c984ac279595 | /Exceptions 3.py | 076292730616f27fa3a4c96f057d196517508770 | [] | no_license | LaurNetz/Exceptions | aead6bb9c42addeadf2ad70fbcb6a1c4206a1694 | 8d67f0ff3c68fcc934aa5ce5e2201faa87366729 | refs/heads/master | 2020-05-22T09:40:32.168338 | 2019-05-12T19:34:07 | 2019-05-12T19:34:07 | 186,296,040 | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 156 | py | try:
with open ("Datei.xyz", "r") as file:
print(file)
print(5 / 0)
except FileNotFoundError:
print("Datei wurde nicht gefunden")
| [
"49392741+LaurNetz@users.noreply.github.com"
] | 49392741+LaurNetz@users.noreply.github.com |
35d4289b0d5b7197676570e63cb452d1d2bfd5cb | be5b91588f198a665160a574e2eba2dd0be84783 | /database/write_nlu.py | 5a4e3c8356059d789dcec0516b42e509f4a727a7 | [] | no_license | swqsd218219/rasa_uncertain_slot | f60f9162cc629552f2deef0fb6cd6ea8cb93ae42 | ec7a0912b9058e3b19acce6ae05b8e871d720141 | refs/heads/main | 2023-03-08T18:13:26.853865 | 2021-03-01T01:23:20 | 2021-03-01T01:23:20 | null | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 4,783 | py |
'''
定义模板:
query attribute:
1. what is the cpu?
- what kind of entity do you want to ask?
- server
- please tell me about the ip of the entity
- 1.2.3.4
- 4 cores
2. what is the cpu of the 1.1.1.1?
- please tell me about the entity of the ip
- server
- 4 cores
3. what is the cpu of the server 1.... | [
"zhangmw_play@163.com"
] | zhangmw_play@163.com |
2360573e0a5cb29fffd13fe988c7d6f093440ffe | b07a7ef99254fd5cb63287eb9552755e33dc4ff0 | /Project_V4/hypothesisEngine/algorithm/parameters.py | e0085ee952771c214dcf6e4154ac9a4a28f4637d | [
"Apache-2.0"
] | permissive | pavandonthireddy/Website-v1 | dc7912f59fbe50912ac63a3ec93aee9efd17c58e | ec143dcf565da23783803c56c323f0105e74d759 | refs/heads/master | 2021-02-04T02:04:49.703095 | 2020-02-27T19:39:08 | 2020-02-27T19:39:08 | 243,600,504 | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 21,184 | py | from multiprocessing import cpu_count
from os import path
from socket import gethostname
import os
hostname = gethostname().split('.')
machine_name = hostname[0]
#hypothesis_params = {
# 'START DATE':'2004-01-01',
# 'END DATE': '2018-01-15',
# 'PORTFOLIO': 'US_TOP_500_LIQUID',
# 'NEUTRALI... | [
"35779303+pavandonthireddy@users.noreply.github.com"
] | 35779303+pavandonthireddy@users.noreply.github.com |
5ec96d7131356ad296544e70d1bc1140fcc2dd98 | 0b2bb9df09731ccc8748b0b7bf66a7a427d4e416 | /test/functional/wallet_keypool.py | 0303dd4a10afad103bc64c8ac21328401843d480 | [
"MIT"
] | permissive | tcilloni/cillocoin | aae0e5bbcb4808c489ac42d1db2725bfd4b42c5a | 1145e189b9f5f4fab414fc1751bf1fce189770c9 | refs/heads/master | 2022-06-09T23:58:47.924597 | 2019-05-03T15:25:48 | 2019-05-03T15:25:48 | null | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 3,423 | py | #!/usr/bin/env python3
# Copyright (c) 2014-2017 The Bitcoin Core developers
# Distributed under the MIT software license, see the accompanying
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
"""Test the wallet keypool and interaction with wallet encryption/locking."""
from test_framework.test_fr... | [
"thomas.martin.cilloni@gmail.com"
] | thomas.martin.cilloni@gmail.com |
8faec69b56e1872e9a53f5c8c6245995b3b322d7 | b281ceec05bb3a7d7fa9f0ce908dfd291227f120 | /WP2020/StockProject/Web-Scrap/getNUpdateStockPriceDB.py | 30f4e650689f72e141225aacdc98c3d78d3599c9 | [] | no_license | chomskim/Web-Programming | 2ccbefc2e365d5cd78d28d9e63c5cd4971957e73 | 964671facf3956f80f37b9c0225c86d832457bdd | refs/heads/master | 2021-06-10T06:16:12.461131 | 2021-06-03T11:02:26 | 2021-06-03T11:02:26 | 160,657,276 | 5 | 21 | null | null | null | null | UTF-8 | Python | false | false | 3,172 | py | # -*- coding: utf-8 -*-
'''
Created on 2019. 1. 10.
@author: cskim
'''
import numpy as np
import pandas as pd
from datetime import datetime
import mysql.connector
import urllib.request
import xml.etree.ElementTree as ET
import dbconfig
XMLDIR = 'C:\\Temp\\xml-all'
def connect():
return mysql.connector.connect(... | [
"csknova@gmail.com"
] | csknova@gmail.com |
3cad6f2a85c33cca3170787570280831ebd1325a | 075d3661100eb7d247a23ca9c37f3b252f9318d9 | /test_readFromJson.py | 113c90cbcce836f17f6ab447f1a4bf909d22f5a1 | [] | no_license | phizaz/timeseries-clustering-using-color-histrogram | 60ce6c45d8cad96caee0535bd098a6c84bf65adb | 1be88df32383f819dc1af09bdd6744f8a40a27b3 | refs/heads/master | 2021-01-10T06:17:16.447599 | 2015-10-15T15:50:18 | 2015-10-15T15:50:18 | 44,231,475 | 12 | 2 | null | null | null | null | UTF-8 | Python | false | false | 79 | py | import File
histograms = File.File.open('_histograms.json')
print(histograms) | [
"the.akita.ta@gmail.com"
] | the.akita.ta@gmail.com |
3466f51db3a5294055a3655a9adc635daa3c551f | bbd3b7a3b5241656955a52f5eea9f182b8d975cb | /parse.py | 594f7124d1e08dd771af736e3dd8b9891049d713 | [] | no_license | hayasick/streamingNMF | 6c07eb4a660dcdb60f063dcd091f8e69099493d4 | eecf1a9e39d657426c60b9e02e1a6341caa4c078 | refs/heads/master | 2020-12-04T10:50:16.745872 | 2016-09-02T01:36:29 | 2016-09-02T01:36:29 | 66,433,072 | 4 | 2 | null | null | null | null | UTF-8 | Python | false | false | 789 | py | """ Parser for UCI bag-of-words dataset
Usage: zcat docword.$(data).txt.gz | tail -n +4 | python parse.py vocab.$(data).txt $(min_freq)
- $(data): the name of data (e.g. nips)
- $(min_freq): minimum word frequency to put into a co-occurrence matrix
"""
import sys
from collections import defaultdict
min_freq = int(sy... | [
"noreply@github.com"
] | hayasick.noreply@github.com |
852bcee70e02a31eea4fdda750582f430f99ea17 | 11ca0c393c854fa7212e783a34269f9dae84e8c7 | /Python/226. 翻转二叉树.py | 38463da19db06e4efb8634aea7b35a3f18030818 | [] | no_license | VictoriqueCQ/LeetCode | dc84d81163eed26fa9dbc2114bba0b5c2ea881f4 | a77b3ead157f97f5d9599badb4d4c5da69de44ba | refs/heads/master | 2021-06-05T06:40:24.659909 | 2021-03-31T08:31:51 | 2021-03-31T08:31:51 | 97,978,957 | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 503 | 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 invertTree(self, root: TreeNode) -> TreeNode:
if not root:
return None
def dfs(root):
if not... | [
"1997Victorique0317"
] | 1997Victorique0317 |
7062764757830277e1ddde4564a206ae57dab4da | e7d318945518cb6be9c44e85adb2d6e1024b5100 | /recog.py | 5d4e688576401f783a6d3d544c805a1ff008679e | [] | no_license | Nagaraja007/face-recongition-system | 5c62688fc73fa570b710755471df581d9700f58b | 53217fbcaf724d6726733580e9c608b0716a26f3 | refs/heads/main | 2023-01-13T11:37:28.785449 | 2020-11-23T07:55:13 | 2020-11-23T07:55:13 | 315,236,745 | 0 | 0 | null | 2020-11-23T07:53:21 | 2020-11-23T07:42:37 | Python | UTF-8 | Python | false | false | 1,105 | py | import cv2
import numpy as np
import face_recognition
imgBabu = face_recognition.load_image_file('Images/Elon musk.jpg')
imgBabu = cv2.cvtColor(imgBabu, cv2.COLOR_BGR2RGB)
imgTest = face_recognition.load_image_file('Images/Mahesh Test.jpg')
imgTest = cv2.cvtColor(imgTest, cv2.COLOR_BGR2RGB)
faceLoc = face_recognition... | [
"noreply@github.com"
] | Nagaraja007.noreply@github.com |
2789dc13a29b1bd4182372068d04911aecafd111 | ab33d7e3bdeadf08e0e0729b14c3a31832113ce5 | /stdplugins/say.py | a7d7d981a91a42b411b09ebb5ebe5954e5c9eb9f | [
"Apache-2.0"
] | permissive | mkaraniya/PepeBot | 36276d7010394d2414e9c04e9464faff5c90ec8c | 9f58c1c6ba01166f4cc48ea606b8b1f911cf425d | refs/heads/master | 2020-08-26T10:21:35.015984 | 2020-04-08T09:14:39 | 2020-04-08T09:14:39 | 217,000,714 | 2 | 9 | Apache-2.0 | 2019-10-23T07:56:41 | 2019-10-23T07:56:41 | null | UTF-8 | Python | false | false | 574 | py | # For UniBorg
# By Priyam Kalra
# Syntax (.say <text_to_print>)
from uniborg.util import admin_cmd
from telethon.tl import functions, types
import time
@borg.on(admin_cmd(pattern="say ?(.*)"))
async def _(event):
if event.fwd_from:
return
input = event.pattern_match.group(1)
if not input:
abe... | [
"55076817+prono69@users.noreply.github.com"
] | 55076817+prono69@users.noreply.github.com |
1ac9526b04e496e36c8caa591056247ab113c9a8 | fea444217851a92510651da2b60035b73344d7da | /todo/setup.py | ee4284355e4449097dd3991ca5c42f45b5f04dbb | [] | no_license | fuzzygwalchmei/scratchingPost | c70d4f3f37d3d4d6490edfbbae603305b2bb5764 | b232c54aac975aebb0945d66a841db3f241b7cd2 | refs/heads/master | 2023-01-29T13:02:22.615813 | 2020-12-15T00:47:56 | 2020-12-15T00:47:56 | 176,823,898 | 1 | 0 | null | null | null | null | UTF-8 | Python | false | false | 567 | py | from sqlalchemy.orm import sessionmaker
from sqlalchemy import Column, Integer, String, create_engine
from sqlalchemy.ext.declarative import declarative_base
engine = create_engine('sqlite:///todo.db')
Session = sessionmaker(bind=engine)
session = Session()
Base = declarative_base()
class ToDo(Base):
__tablenam... | [
"marc.falzon@gmail.com"
] | marc.falzon@gmail.com |
674f327214bd3891a9a61fbde86f7e071c40e10b | 1e25077041d953fbd5a2a528c6bef04d8a5b8c01 | /testing.py | e44f2d693b1a44777187d4cbeb364c81159271bb | [] | no_license | lesquive/smartpcap | ecf9c6ba408aa5d57d6dc6fbd38962beb0b95b07 | 57ecf634fddf4f1538fc895bd665d4e494a1bd89 | refs/heads/master | 2022-02-22T16:18:27.702475 | 2019-10-10T23:59:23 | 2019-10-10T23:59:23 | 204,085,266 | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 411 | py | #!/usr/bin/python3
from scapy.all import *
from scapy.utils import *
import time
start = time.time()
pktnum = 0
pkts = rdpcap ('110kpackets.pcapng')
for pkt in pkts:
pktnum += 1
try:
print(pkt[DNS]["DNS Question Record"].qname)
except:
pass
end = time.time()
print("")
print("")
prin... | [
"luis-esquivel@Luiss-MacBook-Pro.local"
] | luis-esquivel@Luiss-MacBook-Pro.local |
33d8913ac39630086a9e415aa0d564315499abeb | 0b30cdc66866b93e3c892317a4d6475830475cf8 | /scripts/Solver.py | 1a8e43fb7b7ea4db0a6833e1bb45b0f345191076 | [
"MIT"
] | permissive | ciherrera20/MinesweeperSolver | 1dda7ac1f0d1fb595d5849a786c32b46d478a046 | 5426cacc0d1059a8d5b7e527b79218bef36de0bb | refs/heads/main | 2023-04-15T19:42:19.427789 | 2021-04-29T08:31:08 | 2021-04-29T08:31:08 | 362,274,558 | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 9,806 | py | import numpy as np
import time
from Board import *
class Solver:
def __init__(self, board):
self.board = board
def solveOne(self):
# Click any zeros and all of its neighbors
# Get list of squares: that touch non-clicked squaes and athe adjacent squares that have not been clicked
... | [
"ciherrera20@icloud.com"
] | ciherrera20@icloud.com |
66d6ad6714e58be21a827fe0220debbf5e1ea981 | c6673f34abda861d158f15f72c0fe7e327910b19 | /src/1_数据结构和算法/1.10_从序列中移除重复项且保持元素间顺序不变.py | 0b3f5fb03422a0ca34cc16d7b8497a33777cf6fb | [] | no_license | fgd-haha/cookbook | 0ac089516d39840bbc046add93b8f4dc2e46b292 | 068ee9f2cc4b90d0fbe5fa054acf78edf97823e0 | refs/heads/master | 2021-07-02T23:51:58.479230 | 2020-09-13T16:12:17 | 2020-09-13T16:12:17 | 164,295,672 | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 683 | py | """从序列中移除重复项且保持元素间顺序不变"""
a = [1, 5, 2, 1, 8, 10]
b = [{'a': 2, 'b': 3}, {'a': 1, 'b': 3, 'c': 3}, {'a': 2, 'b': 3}]
# 去除重复,无序
print(list(set(a)))
def dedupe(items, key=None):
"""
:param items: 要去重的对象
:param key: 作用是指定一个函数将item变为可hash的对象
:return:
"""
s = set()
for item in items:
v... | [
"fgd.freedom@gmail.com"
] | fgd.freedom@gmail.com |
646206d4febf8d2aefd2de7b3ee814dc8477a1ba | 2f3d8570407e96f978c3f3009920c7cce7ed3819 | /tests/tests.py | 4c151dba34fd5df040cb3fedf213a9ad6adb02e6 | [
"MIT"
] | permissive | dduong42/dbimage | b12006a55a168ecde0feede5fa6f0e8dbe722289 | a42ce84b9d4d0f904e43e7ca549280428ae3d386 | refs/heads/master | 2020-05-01T17:41:51.981347 | 2019-03-25T14:50:04 | 2019-03-25T14:50:04 | 177,606,141 | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 4,706 | py | from datetime import datetime
from unittest import mock
from dbimage.models import DBImage
from dbimage.views import ServeImageView
from django.http import Http404
from django.test import RequestFactory, TestCase
from django.utils.http import http_date
serve_image = ServeImageView.as_view()
class TestDBImage(TestCa... | [
"daniel.duong@outlook.com"
] | daniel.duong@outlook.com |
6ec0eab8f7da15e2da1d5070d96fc4234f6522ce | 8a21118dffc092bf28b20aadeaae8e333fc602eb | /Python_course/Part 3/request-handling/landing/app/views.py | 3552980558e03b436d57d192a791b7edd2742292 | [] | no_license | shattl2000/Netology | 7bb9fa54ecd30fc70c327caeb0b8575f46bba11a | 6357373160efa52c3563b53bd78d752f80973f5d | refs/heads/master | 2022-11-23T13:33:27.051130 | 2019-12-08T14:20:05 | 2019-12-08T14:20:05 | 193,401,160 | 1 | 0 | null | 2022-11-22T03:59:24 | 2019-06-23T22:25:57 | Python | UTF-8 | Python | false | false | 2,735 | py | from collections import Counter
from django.http import HttpResponse
from django.shortcuts import render_to_response
# Для отладки механизма ab-тестирования используйте эти счетчики
# в качестве хранилища количества показов и количества переходов.
# но помните, что в реальных проектах так не стоит делать
# так как пр... | [
"shattl2000@MacBook-Pro-Aleksandr.local"
] | shattl2000@MacBook-Pro-Aleksandr.local |
b4b756731874b115f76aa509cfd115c1f33441d6 | 7a54cefc06f1f4b9f8e0884ae38d9155ea4c015d | /Python/commitAndPushToRemote.py | 2390806306f26fd8739adb54f6637677778e2bdb | [
"Unlicense"
] | permissive | Giorox/script-collection | 2f98cd97af1e5c0eb5a47941c4cb62635c525b6b | aa87f6123a4f6c53398da67158c4ae651c77943f | refs/heads/master | 2023-07-16T04:41:05.929050 | 2021-08-31T15:22:10 | 2021-08-31T15:22:10 | 401,523,792 | 5 | 1 | Unlicense | 2021-08-31T15:19:39 | 2021-08-31T00:27:38 | Python | UTF-8 | Python | false | false | 1,354 | py | #!/usr/bin/python
# Script to commit and push to a remote repository using gitPython package
# Usage: python commitAndPushToRemote.py
# Author: Giovanni Fazolo Silva Rebouças
# Date: 18 July 2019
# Version: v0.0.2 (23 August 2019)
# NOTE: Repository should already exist and have a remote named 'origin' configured
from ... | [
"giovannireboucas@hotmail.com"
] | giovannireboucas@hotmail.com |
ec9b629eb9e34d72db4ddc25266b903037318372 | 17a20afc6bb39ae272b1a24610e5353b06fbb2ff | /analysisAR.py | 45796723abc9364d87eed1b66ddcb6ea045f8183 | [] | no_license | kopojs/data-assimilation-elections | f109941449489b680f8dfba70604678897346d9d | 2fc9d2bafa1cc463cd9b19840c39b0919ba8bb63 | refs/heads/master | 2022-12-17T06:41:21.988100 | 2020-09-08T19:34:02 | 2020-09-08T19:34:02 | null | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 4,260 | py | import pandas as pd
import datetime as dt
import methods as m
import matplotlib.pyplot as plt
import math
from statsmodels.tsa.ar_model import AutoReg
from sklearn.metrics import mean_squared_error
from pandas.plotting import lag_plot
from statsmodels.tsa.stattools import adfuller
from statsmodels.tsa.stattools import ... | [
"robinhendrickx@gmail.com"
] | robinhendrickx@gmail.com |
6bfb8ef28cd4b15180b19694a99bf170315d9632 | 02eacb2f5bf2ef6d37e2d8793e6958e55140378b | /auxi/spy_utils/request_tool.py | fdefd5ceda4449a717b25804697e93798dea1767 | [] | no_license | xx-zhang/spy2hy | 83a6817df15422c30dcdd924943b682e6d407bb4 | 6ebdd36b8056d13668882733d9f796bc13443f07 | refs/heads/master | 2023-05-27T02:13:11.547371 | 2020-06-27T05:24:44 | 2020-06-27T05:24:44 | 275,252,283 | 0 | 0 | null | 2021-06-10T23:06:04 | 2020-06-26T21:37:12 | Python | UTF-8 | Python | false | false | 1,780 | py | # coding:utf-8
# https://stackoverflow.com/questions/4685217/parse-raw-http-headers/
from email.parser import BytesParser
from http.server import BaseHTTPRequestHandler
from io import BytesIO
class HTTPRequest(BaseHTTPRequestHandler):
def __init__(self, request_text):
self.rfile = BytesIO(request_text)
... | [
"actanble@gmail.com"
] | actanble@gmail.com |
0a57942b9958442ababf76cf5c5edea1a6dacd8a | 13f4a06cd439f579e34bf38406a9d5647fe7a0f3 | /nn_ns/parse/MyLL1L/ProcessMatchResult_MyLL1L_of_SRRTL.py | 0aef1359eb2e3c4617306d57faaef7e442c70f50 | [] | no_license | edt-yxz-zzd/python3_src | 43d6c2a8ef2a618f750b59e207a2806132076526 | 41f3a506feffb5f33d4559e5b69717d9bb6303c9 | refs/heads/master | 2023-05-12T01:46:28.198286 | 2023-05-01T13:46:32 | 2023-05-01T13:46:32 | 143,530,977 | 2 | 2 | null | null | null | null | UTF-8 | Python | false | false | 5,673 | py |
from .tools_for_id2infoID_SRRTL import *
from .SRRTL_in_MyLL1L import mainID_MyLL1L_of_SRRTL
from .ProcessMatchResult_MyLL1L import ProcessMatchResult_MyLL1L
from .raw_tokenize_SRRTL import RawTokenizer_SRRTL
#from .id2infoID_MyLL1L_of_MyLL1L import tIDDict_MyLL1L_of_MyLL1L
class ProcessMatchResult_MyLL1L_of_SRRT... | [
"wuming_zher@zoho.com.cn"
] | wuming_zher@zoho.com.cn |
1d1ad508982878d2a7de6f98ca22edde4e5274f0 | b4556a9e9d5d46bbe4b94d59b220af72fb2ba96f | /multilingual/transformers/modeling_tf_transfo_xl_utilities.py | e6a6dfe686d1169b5c7afb9f6cdf298368f2fcde | [
"MIT"
] | permissive | HLTCHKUST/Xpersona | 9d12650f618f40bd0d7199c5cb08a32ef7aa5076 | 1da049a1bbf3b01548f98cc23ba75ef871416e50 | refs/heads/master | 2023-04-17T11:52:03.270677 | 2022-05-25T22:09:25 | 2022-05-25T22:09:25 | 253,739,477 | 66 | 17 | MIT | 2023-04-06T10:03:37 | 2020-04-07T08:56:18 | Python | UTF-8 | Python | false | false | 8,329 | py | # coding=utf-8
# Copyright 2018 Google AI, Google Brain and Carnegie Mellon University Authors and the HuggingFace Inc. team.
# Copyright (c) 2018, NVIDIA CORPORATION. All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the Lice... | [
"zlinao@connect.ust.hk"
] | zlinao@connect.ust.hk |
7376a63bba0d810d9b3569b2ade1ee4fa29cff6b | ce92f733e9a79a0aa5359afae370c69fe013b3bb | /univer_db/models/models.py | fe7e54dadf16503a44112bfde687423e0a29d2c7 | [] | no_license | yessenovuniversity/python_univer | afb15fac1328f6e3b9a0d2f7dd1fce69a5be4fd2 | f4000f541bd971c2c1d0c5fab2c0ef22fdd2298b | refs/heads/master | 2023-08-21T23:26:58.545578 | 2021-09-29T13:41:37 | 2021-09-29T13:41:37 | 294,068,654 | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 16,986 | py | from sqlalchemy import Column, Integer, String, Float, Boolean, ForeignKey, Date, DateTime
from sqlalchemy.orm import relationship
from univer_db.orm import get_base
Base = get_base()
class Speciality(Base):
"""
Модель "Специальность"
"""
__tablename__ = 'univer_speciality'
id = Column('speci... | [
"nauryzbek.aitbayev@yu.edu.kz"
] | nauryzbek.aitbayev@yu.edu.kz |
bc56e5dd54bb287f4e585e94a821577e92f6e4ad | 3d659c1c3a8aaa0f1f4628bb046787a01f9e513d | /bin/scripts/vc_usd_nt.py | 5799d66addf54b75f6e6d3e95201684be1255047 | [
"Apache-2.0"
] | permissive | sugimotokun/VirtualCurrencySplunk | 8ba12c6bd26ac3e7262bc5d4ad714cabc5c7f4f0 | e9797ec4924da5a6a4fe33f74e831611084cecf9 | refs/heads/master | 2021-01-23T00:48:45.950021 | 2017-06-30T12:11:37 | 2017-06-30T12:11:37 | 92,849,484 | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 1,321 | py | #
# Copyright (c) 2017 Sugimoto Takaaki
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to i... | [
"sugimotion@gmail.com"
] | sugimotion@gmail.com |
242081385cba0f8c8aa2b376756a72a97aec67d3 | 895ce4db2d46e1a6048b5540b9213a3961909233 | /pwn/partycreation/solve.py | 8b9b8c5c4833e41b6a9200125271de273889c1f6 | [] | no_license | AdnanSlef/csawred2020_fixed | 2a3e434f1dff51d9cf5b9e4c72cdd4db43c22963 | 1b2c996b7e1b68566bbf377bd3a3d6df71b28c0d | refs/heads/master | 2022-12-17T11:45:46.573481 | 2020-09-27T19:45:33 | 2020-09-27T19:45:33 | 297,501,259 | 1 | 0 | null | null | null | null | UTF-8 | Python | false | false | 3,308 | py | #!/usr/bin/env python3
from pwn import *
"""
Show character at index I: x/24c (char *)&party+0x18*I
Show values only at index I: x/8c (char *)&party+0x10+0x18*I
Leaking values is fine, but I can only rename, not revalue.
I can write nulls in name; it just has to end with a null byte.
"""
def menuChoice(n):
print... | [
"aself.school@gmail.com"
] | aself.school@gmail.com |
d53083f167fd05069cc03ea3f96e13596e56430a | 6c4f31eded1ab11b36b70bcf55263a13568509b2 | /geoservice/geoservice/wsgi.py | 119e140c1e9f4a028ea3e53468623409b35cf50f | [
"MIT"
] | permissive | ride90/postgis-geo-service | 202c55bee77f483f8e76be04b205ff683bbac188 | c9d1bacf6a154a3b3ec57cf52adc7b79c79c2941 | refs/heads/master | 2020-07-23T16:46:11.262073 | 2019-09-11T09:08:01 | 2019-09-11T09:08:01 | 207,635,123 | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 397 | py | """
WSGI config for geoservice project.
It exposes the WSGI callable as a module-level variable named ``application``.
For more information on this file, see
https://docs.djangoproject.com/en/2.2/howto/deployment/wsgi/
"""
import os
from django.core.wsgi import get_wsgi_application
os.environ.setdefault('DJANGO_SE... | [
"olegpshenichniy@gmail.com"
] | olegpshenichniy@gmail.com |
7029d9404d228661a4e2e7d27618a58caefe3e98 | 673e829dda9583c8dd2ac8d958ba1dc304bffeaf | /data/multilingual/Latn.SHP/Sans_8/pdf_to_json_test_Latn.SHP_Sans_8.py | a9ff90b902a1274df32bc2575bf41aceb7fb70ec | [
"BSD-3-Clause"
] | permissive | antoinecarme/pdf_to_json_tests | 58bab9f6ba263531e69f793233ddc4d33b783b7e | d57a024fde862e698d916a1178f285883d7a3b2f | refs/heads/master | 2021-01-26T08:41:47.327804 | 2020-02-27T15:54:48 | 2020-02-27T15:54:48 | 243,359,934 | 2 | 1 | null | null | null | null | UTF-8 | Python | false | false | 301 | py | import pdf_to_json as p2j
import json
url = "file:data/multilingual/Latn.SHP/Sans_8/udhr_Latn.SHP_Sans_8.pdf"
lConverter = p2j.pdf_to_json.pdf_to_json_converter()
lConverter.mImageHashOnly = True
lDict = lConverter.convert(url)
print(json.dumps(lDict, indent=4, ensure_ascii=False, sort_keys=True))
| [
"antoine.carme@laposte.net"
] | antoine.carme@laposte.net |
ba801aca965089f72776e5998d259a23802b74e6 | 8f3336bbf7cd12485a4c52daa831b5d39749cf9b | /Python/sliding-puzzle.py | 22a02e080a64c277d48f26a549604f17dc5dba51 | [] | no_license | black-shadows/LeetCode-Topicwise-Solutions | 9487de1f9a1da79558287b2bc2c6b28d3d27db07 | b1692583f7b710943ffb19b392b8bf64845b5d7a | refs/heads/master | 2022-05-30T22:16:38.536678 | 2022-05-18T09:18:32 | 2022-05-18T09:18:32 | 188,701,704 | 240 | 110 | null | 2020-05-08T13:04:36 | 2019-05-26T15:41:03 | C++ | UTF-8 | Python | false | false | 4,140 | py | # Time: O((m * n) * (m * n)!)
# Space: O((m * n) * (m * n)!)
import heapq
import itertools
# A* Search Algorithm
class Solution(object):
def slidingPuzzle(self, board):
"""
:type board: List[List[int]]
:rtype: int
"""
def dot(p1, p2):
return p1[... | [
"noreply@github.com"
] | black-shadows.noreply@github.com |
341573d4341b6db71284813bb7a55d035fcd1e4f | cf6377dc2db288fcfcbddb1fd46a167a02faf8e6 | /ocr-numbers/ocr_numbers.py | 16236c0060f426affaaf9d6736f8dfdf4e6cb65b | [] | no_license | galipkaya/exercism-python | a442f295612b8dcf30515057a3879c341c7acfd9 | 87ef99b3300dd940286cb52cc12f4a92368fc9fe | refs/heads/master | 2023-07-31T03:11:51.816801 | 2021-09-26T13:40:24 | 2021-09-26T13:40:24 | 295,388,085 | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 1,230 | py | ocr_numbers = {
" _ \n| |\n|_|\n ": "0",
" \n |\n |\n ": "1",
" _ \n _|\n|_ \n ": "2",
" _ \n _|\n _|\n ": "3",
" \n|_|\n |\n ": "4",
" _ \n|_ \n _|\n ": "5",
" _ \n|_ \n|_|\n ": "6",
" _ \n |\n |\n ": "7",
" _ \n|_|\n|_|\n ": "8",
" _ \n|_|\n _|\n ":... | [
"galip.kaya@udemy.com"
] | galip.kaya@udemy.com |
a0826789b291e73c8285516989eb8929b529ecda | 36afa10e2dcafb68325ab40641966a36283d312b | /news/urls.py | e61e6cde2fb6f613358871b3642dedda5a13e496 | [] | no_license | parulian1/foundation | 6b707bcbf8067165d80e3bdc58626e6bb9a4521b | 178b580f17fe3aad39824f8465cb5275dc019297 | refs/heads/master | 2021-01-10T05:22:25.360967 | 2016-02-11T03:58:59 | 2016-02-11T03:58:59 | 49,107,916 | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 436 | py | from django.conf.urls import url
from . import views
app_name = 'news'
urlpatterns = [
url(r'^$', views.news, name='news_main'),
url(r'^blog/$', views.blogs, name='blog_main'),
url(r'^press/$', views.press, name='news_press'),
url(r'^press/category/(?P<category_id>\d+)/$', views.view_press_by_category, n... | [
"martogi.parulian86@gmail.com"
] | martogi.parulian86@gmail.com |
c7e7e82e5e57eb7f5e8a25349533c08df1381489 | 4b6cc9a5850a19bec392144a2680a98757430a40 | /U-net_skip_connections.py | d4414060e814f731566958d77e1ae16b001e16e5 | [] | no_license | Saurabh-29/Image-Segmentation-with-U-net | 223585b3eff50e7993b1929d90467032f6427b97 | 45019866d9cae2a7394cedffdc1278aea77a974b | refs/heads/master | 2021-01-20T05:27:17.289403 | 2017-10-05T18:18:39 | 2017-10-05T18:18:39 | 101,447,023 | 1 | 0 | null | null | null | null | UTF-8 | Python | false | false | 6,859 | py |
# coding: utf-8
# In[1]:
#get_ipython().magic(u'matplotlib inline')
import numpy as np
import pandas as pd
import matplotlib.pyplot as plt
from keras.models import Sequential,Model
from keras.layers import Dense, Conv2D, Input, MaxPool2D, UpSampling2D, Concatenate, Conv2DTranspose, Add
from keras.optimizers import ... | [
"noreply@github.com"
] | Saurabh-29.noreply@github.com |
e167205a15456bb695455dcffd27e9746cb15092 | c03717080fc76c8f442e4fc45681f2faa6d87819 | /a__preprocess_step1__comma_remove.py | 57cc31fb6685cc2a974ca85bf5625636ccaffd2f | [] | no_license | PharrellWANG/proj_vcmd | a010cc8eedd396cc7f22486daa32fb322e30ec4d | 952733f71ee3c8f18016144ddf95e6a74bc866c7 | refs/heads/master | 2021-01-20T03:09:04.226185 | 2017-05-12T02:52:02 | 2017-05-12T02:52:02 | 89,501,320 | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 593 | py | # INPUT_FILE = '/Users/Pharrell_WANG/PycharmProjects/tf_dp/data/z_raw_partial_16.csv'
# OUTPUT_FILE = '/Users/Pharrell_WANG/PycharmProjects/tf_dp/data/z_partial_16.csv'
def comma_remover(INPUT_FILE, OUTPUT_FILE):
with open(INPUT_FILE, 'r') as r, \
open(OUTPUT_FILE, 'w') as w:
cnt = 0
f... | [
"15113029g@connect.polyu.hk"
] | 15113029g@connect.polyu.hk |
00f0d19f0d1b700cc76c6bded9bfe06280539b08 | 5c30b186c1e6753d12ee123a5b50f5208f64b466 | /Natural Language Processing/restaurant search chatbot/Rasa_basic_folder/actions.py | 4cedf058314d897af828ee96b182e54f66de6777 | [] | no_license | punithagirish/Assignment | 90085cf8ee37a38f7572f1e9cc00b74c438e57ff | 5914ba071906074aa79075f8c8fab13fd54886e4 | refs/heads/master | 2022-06-11T06:44:59.214022 | 2020-05-05T15:46:03 | 2020-05-05T15:46:03 | 260,674,800 | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 9,357 | py | from __future__ import absolute_import
from __future__ import division
from __future__ import unicode_literals
from rasa_core.actions.action import Action
from rasa_core.events import SlotSet, AllSlotsReset, Restarted
import re
import requests
import logging
from bs4 import BeautifulSoup
import urllib3
urllib3.disable... | [
"noreply@github.com"
] | punithagirish.noreply@github.com |
91bf99a2e6bbb2f2dbb60eb172f61a1ec01f2632 | a5a7a70348420b5815d4a49d74aa42e4ca41b4ba | /SAN/lib/utils/box_utils.py | ab81dc6b92ea5b149614c3bfed69a410239b17bb | [
"MIT"
] | permissive | 738654805/landmark-detection | 18f8692b0f81bb4198cb6a5baca42a3f9ec89e59 | 70f647752147592fd5f62f99e64c685a6cf45b4a | refs/heads/master | 2020-06-06T10:53:50.751520 | 2019-06-13T08:41:15 | 2019-06-13T08:41:15 | 192,720,661 | 1 | 0 | MIT | 2019-06-19T11:39:25 | 2019-06-19T11:39:25 | null | UTF-8 | Python | false | false | 1,836 | py | ##############################################################
### Copyright (c) 2018-present, Xuanyi Dong ###
### Style Aggregated Network for Facial Landmark Detection ###
### Computer Vision and Pattern Recognition, 2018 ###
##############################################################
impor... | [
"280835372@qq.com"
] | 280835372@qq.com |
e52324dcdebcdb2f34f4786fda22afbb8bd34b14 | 1b370961c5245e2606f0249170b7a6a041587f44 | /기초/sample_package/vietnam.py | ceb3789ffdbaccd07725281ebb6c7e250ebc4267 | [] | no_license | JooHeon-Lee/practicePython | 5becc3415c02bfb83a3dfefc8679ab32a60a39e0 | ce7a36b5116e1517968267182038ef6745e58376 | refs/heads/master | 2023-07-02T19:27:43.917856 | 2021-08-07T04:41:28 | 2021-08-07T04:41:28 | 389,360,737 | 1 | 0 | null | null | null | null | UTF-8 | Python | false | false | 88 | py | class VietnamPackage:
def detail(self):
print("[==========베트남======]") | [
"58197251+JooHeon-Lee@users.noreply.github.com"
] | 58197251+JooHeon-Lee@users.noreply.github.com |
d2a3619d1a99b718458ffed7e6bdd3f373536969 | 04eaab6d9a6707b950d7ec4688707a883a009889 | /where/cleaners/__init__.py | d225d68de08cd820429206b62eea119429a5ee10 | [
"MIT"
] | permissive | skjaeve/where | 3eae1036419e5f9c6b824b5f9b1dcedbe9d4da93 | 690558f64d54ce46c55a0bc3ef26f6fd992a3737 | refs/heads/master | 2020-04-05T03:35:01.737430 | 2018-11-28T11:04:59 | 2018-11-28T11:04:59 | 156,520,078 | 0 | 0 | null | 2018-11-07T09:13:35 | 2018-11-07T09:13:35 | null | UTF-8 | Python | false | false | 454 | py | """Framework for cleaning data
Description:
------------
Each data cleaner should be defined in a one of two directories:
+ `editors` - Editors can add new fields to the dataset.
+ `removers` - These cleaners only remove observations.
"""
# Make the apply-functions in subpackages available
from where.cleaners.edi... | [
"geirarne@gmail.com"
] | geirarne@gmail.com |
09b4d2980880ee3f36aa9300da47c0c4975b6020 | 058a0a3720e97ef269460727b16d41035fcf5be4 | /2048-3D-rl-master/py_2048_rl/learning/replay_memory.py | 908e81c5a1319285cb6e72b4b71251c4b123d93e | [] | no_license | aliciaxue/3D_2048_deep_q | 516e75693c76543f7868da6c3075950faabaea86 | f60cfefcfa611a0e7e39f5649bf7d72b18c0d384 | refs/heads/master | 2020-03-18T17:53:24.464854 | 2018-05-27T15:19:26 | 2018-05-27T15:19:26 | 135,057,860 | 1 | 0 | null | null | null | null | UTF-8 | Python | false | false | 1,189 | py | """Replay Memory"""
from __future__ import absolute_import
from __future__ import division
from __future__ import print_function
from collections import deque
import random
MEMORY_CAPACITY = 1e5
class ReplayMemory(object):
"""Keeps a set of Experiences in a Queue"""
def __init__(self):
self.queue = deque(... | [
"u3514240@hku.hk"
] | u3514240@hku.hk |
8989148a1e906ae9fa35e8e5f99f07891fdd0d91 | 17e9441138f8ad09eab3d017c0fa13fa27951589 | /blog17-networkx/test02.py | 837cd862a077033de44e123fefe0dbd0a98117bc | [] | no_license | My-lsh/Python-for-Data-Mining | 159a09e76b35efd46ca3e32ad6dd2174847d5ec4 | f2dd0b8f3c4f5f51a10613dff99041bca4fd64c5 | refs/heads/master | 2023-03-26T08:48:32.088713 | 2021-03-25T14:57:07 | 2021-03-25T14:57:07 | null | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 3,187 | py | # -*- coding: utf-8 -*-
"""
Created on Thu Nov 02 10:33:58 2017
@author: eastmount CSDN 杨秀璋
"""
import pandas as pd
import numpy as np
import codecs
import networkx as nx
import matplotlib.pyplot as plt
""" 第一步:读取数据并获取姓名 """
data = pd.read_csv("data.csv",encoding ="gb2312") #中文乱码
print data[:4]
print... | [
"noreply@github.com"
] | My-lsh.noreply@github.com |
ce56eb6e727648587f59e82414d069ed72386e63 | 37ac2a5e145687a8d3af1ae4e5fc28b5364afe52 | /engine/extensions/pythonize.py | 0f4666fec7432659b1c03027941f7509c16a1919 | [] | no_license | m64/PEG | ff961554199b09c33f8f74baeed0d6d01b403412 | 0f40a8538bbc0db6869eb81291e52574632f824c | refs/heads/master | 2020-12-24T15:49:37.670080 | 2009-12-21T00:39:26 | 2009-12-21T00:39:26 | null | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 3,458 | py | # -*- coding: utf-8 -*-
# ####################################################################
# Copyright (C) 2005-2009 by the FIFE team
# http://www.fifengine.de
# This file is part of FIFE.
#
# FIFE is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# ... | [
"m64@tryglaw.eu"
] | m64@tryglaw.eu |
1ec7d95d1793fcef3900410021a4866f130286d4 | 9e715dea01dc637ed91cde345df8ae81267f60a9 | /webapp/apps/taxbrain/migrations/0069_auto_20150314_2139.py | ffaec203e84da216bcbc53279e1dc8272924d4d0 | [
"MIT"
] | permissive | kdd0211/webapp-public | f08b76201a6a59116bcfdc382ba995a46dd629cd | bcf94d5d6458ac5c6e89d0cf33d7fed06c85030d | refs/heads/master | 2021-01-16T21:07:44.059049 | 2016-01-14T05:09:50 | 2016-01-14T05:09:50 | null | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 1,078 | py | # -*- coding: utf-8 -*-
from __future__ import unicode_literals
from django.db import models, migrations
class Migration(migrations.Migration):
dependencies = [
('taxbrain', '0068_auto_20150314_2137'),
]
operations = [
migrations.RenameField(
model_name='taxsaveinputs',
... | [
"tj.alumbaugh@continuum.io"
] | tj.alumbaugh@continuum.io |
ed5f6cde139950405c6ec1728493c26afb9a6799 | 9531e597cd3f865cc6b6f780498a18281c2413f8 | /comments/models.py | 956bf210ee9ab176d9e93f98dac9fd3202ac60d4 | [] | no_license | dpitkevics/DevNet | 7133b80ce5d56b9c11aa4c500d530faed7cb13f4 | 98ebc3916346e6c2bda79711a3896f7c2a8e2ac8 | refs/heads/master | 2020-04-15T12:04:00.245848 | 2015-09-14T17:45:39 | 2015-09-14T17:45:39 | 41,320,800 | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 570 | py | from django.db import models
from django.contrib.auth.models import User
from django.contrib.contenttypes.fields import GenericForeignKey
from django.contrib.contenttypes.models import ContentType
from model_utils.models import TimeStampedModel
class Comment(TimeStampedModel):
user = models.ForeignKey(User)
... | [
"daniels.pitkevics@gmail.com"
] | daniels.pitkevics@gmail.com |
1f9bffa254c80991e31249fa76370253815cca96 | f9356f2a83b3ccaa85053e7f31fd75faabc50ee8 | /network/migrations/0003_tweet_likes.py | 26916b43e92002f1deef633a3cf4683fcf001892 | [] | no_license | saperez17/SocialNetwork | b7986575c4453de6294b51b93fe9c724559e0779 | 3ed42b9501a8a9ad03b591aaf28b1ba9e98fae57 | refs/heads/master | 2023-03-18T03:01:16.213552 | 2021-03-10T00:45:28 | 2021-03-10T00:45:28 | 343,564,024 | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 381 | py | # Generated by Django 3.1.6 on 2021-02-27 21:05
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('network', '0002_auto_20210227_1104'),
]
operations = [
migrations.AddField(
model_name='tweet',
name='likes',
... | [
"saperez@unicauca.edu.co"
] | saperez@unicauca.edu.co |
db19cfcb078c465e52473648face80e1c17888e7 | de706b4cd4c02ec71486fbd4a262aacf337e7a8c | /lesson_5/hw05_hard.py | 2496fdd0c950dae02dca7ad5adb119ae9288c490 | [] | no_license | DuDaria/Homework_backend | c896a30af4db9c0e118f230b5f01c351d68ff695 | fa9e06e79c7b61896e53417e8b91fd69e87d6061 | refs/heads/master | 2023-03-19T17:39:56.364082 | 2021-03-11T21:53:39 | 2021-03-11T21:53:39 | 319,733,707 | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 3,616 | py | # Задание-1:
# Матрицы в питоне реализуются в виде вложенных списков:
# Пример. Дано:
matrix = [[1, 0, 8],
[3, 4, 1],
[0, 4, 2]]
print("matrix:")
for line in matrix:
print(line)
# Выполнить поворот (транспонирование) матрицы
# Пример. Результат:
# matrix_rotate = [[1, 3, 0],
# ... | [
"60156592+DuDaria@users.noreply.github.com"
] | 60156592+DuDaria@users.noreply.github.com |
fc963b7850cd888de5842085fc3a693b7e067296 | ae5e651fd65749534d954b208a7f1425331352dc | /code/utils.py | 096a599c322da76c1cc0b79067d6339a9445d8d9 | [] | no_license | reedan88/Isaias | d9d764c01754bcb0d13d59bbe8089e4417fb4c14 | aac64057df5fffab6fdbfe490bac939c5ef37775 | refs/heads/master | 2022-11-24T22:56:05.128373 | 2020-08-02T22:39:25 | 2020-08-02T22:39:25 | 284,553,671 | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 23,803 | py | import re
import os
import time
import requests
import datetime
import numpy as np
import pandas as pd
import xarray as xr
from xml.dom import minidom
from urllib.request import urlopen
from urllib.request import urlretrieve
import matplotlib.pyplot as plt
class OOINet():
def __init__(self, USERNAME, TOKEN):
... | [
"andrew.c.reed88@gmail.com"
] | andrew.c.reed88@gmail.com |
4905eb23d9b63be38aa3c7d1f8e8c1fd737cec27 | 28acabcd17f791eff443270e8828533b1feaf1a5 | /Scripts/text_generation/bert_generator.py | 673303e7b2dfbf110468028d435134861aac51c5 | [] | no_license | GiorgioBelli/FakeDocumentGenerator | 3e5c47db9d4f06515cbadba944e02878b96c22a8 | 2deda3e723aa44548c872d1bbc014f1f18fac126 | refs/heads/master | 2022-12-30T05:38:57.915006 | 2020-10-16T08:59:15 | 2020-10-16T08:59:15 | 269,558,052 | 4 | 0 | null | null | null | null | UTF-8 | Python | false | false | 150,978 | py | # -*- coding: utf-8 -*-
"""BERT-fine-tuning.ipynb
Automatically generated by Colaboratory.
Original file is located at
https://colab.research.google.com/drive/1x34tn3w-DyQwAbtlFKggkIr-p2GwwJ1x
"""
import torch
from transformers import AutoTokenizer, AutoModel,BertForMaskedLM
# import torch
from fitbert import ... | [
"belli.1797941@studenti.uniroma1.it"
] | belli.1797941@studenti.uniroma1.it |
d6161fc1725dc4dfcd4a909c2e194f14906fa65a | c529c17f5ea2acc86b19178927638ff4f21934e7 | /projet1/firstApi/urls.py | 6be3def263a6d686864c88e3cad0d077512cd3bf | [] | no_license | olivierdpn/incidentManagerRegressor | 4551e207eff83427931817726aa3093ab1e968d6 | caf2543506d39f940fd69f13e1bd2719504815dc | refs/heads/master | 2020-12-26T07:14:42.621896 | 2020-01-31T13:53:06 | 2020-01-31T13:53:06 | 237,429,958 | 0 | 1 | null | null | null | null | UTF-8 | Python | false | false | 838 | py | """firstApi URL Configuration
The `urlpatterns` list routes URLs to views. For more information please see:
https://docs.djangoproject.com/en/3.0/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-base... | [
"noreply@github.com"
] | olivierdpn.noreply@github.com |
45a165fafb8b93e28d4d46d0bc49be317be87a2e | ca7aa979e7059467e158830b76673f5b77a0f5a3 | /Python_codes/p02783/s004767524.py | 890487d6a124996654e2b4b0893b434c99a5cee2 | [] | 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 | 122 | py | H, A = (int(x) for x in input().split())
if A >= H:
print(1)
elif H%A == 0:
print(H//A)
else:
print(H//A + 1) | [
"66529651+Aastha2104@users.noreply.github.com"
] | 66529651+Aastha2104@users.noreply.github.com |
e5d6a8db13981145d31b06f0e1a24d7802a0b44e | 741bb642f449ae634bcb51ebe97090899d29b5ce | /PythonFiles2/src/pages/mapExplore.py | a3031758bcfb39b954ce029d763cbf7133280788 | [] | no_license | vihuma/QUIPUS_DASH | 8c0f67227fa1e967167e7d3a3335556d250979ab | 9351afe033cef219453a5d29133e9020377c0de7 | refs/heads/main | 2023-06-26T06:40:28.382863 | 2021-07-27T06:16:48 | 2021-07-27T06:16:48 | null | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 2,155 | py | import dash
import dash_bootstrap_components as dbc
import dash_core_components as dcc
import dash_html_components as html
import dash_cytoscape as cyto
from dash.dependencies import Input, Output, State
import pandas as pd
import keplergl
import geopandas as gpd
import urllib.request
import os
from pandas.tseries.off... | [
"noreply@github.com"
] | vihuma.noreply@github.com |
56369ddc8c1a98b044a2f85d4c3d2de04464af88 | 5020ce76812057bc56a6fcdbf95a316caea3a1c9 | /users/request.py | d0672b0d27dc78bbd8db3f62f780d9453d1bef4d | [] | no_license | NSS-Day-Cohort-42/rare-server-talking-heads | 820b488fb473101265c42b444ac2be329fdabe46 | 45817bc9215b30a09d8317dd43ccd2776a8f5169 | refs/heads/main | 2023-01-01T03:07:25.108146 | 2020-10-28T20:52:01 | 2020-10-28T20:52:01 | 306,053,924 | 1 | 0 | null | 2020-10-28T21:04:41 | 2020-10-21T14:36:46 | Python | UTF-8 | Python | false | false | 1,450 | py | import sqlite3
import json
from models import User
def create_user(new_user):
with sqlite3.connect("./rare.db") as conn:
db_cursor = conn.cursor()
db_cursor.execute("""
INSERT INTO User
( user_name, email, password, first_name, last_name, bio )
VALUES
( ?, ?... | [
"christopherjohnson1@gmail.com"
] | christopherjohnson1@gmail.com |
458e17eed0bc39f02d890a755f9aa6207076f831 | 2a9a136296e3d2abebf3a3dbfbbb091076e9f15f | /env/Lib/site-packages/pip/_vendor/html5lib/treeadapters/sax.py | 59b0a8ff79ffd1467ad8d32e2074685db1ed7e20 | [] | no_license | Lisukod/planet-tracker | a865e3920b858000f5d3de3b11f49c3d158e0e97 | 6714e6332b1dbccf7a3d44430620f308c9560eaa | refs/heads/master | 2023-02-18T19:26:16.705182 | 2021-01-23T01:51:58 | 2021-01-23T01:51:58 | 328,032,670 | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 1,697 | py | from __future__ import absolute_import, division, unicode_literals
from xml.sax.xmlreader import AttributesNSImpl
from ..constants import adjustForeignAttributes, unadjustForeignAttributes
prefix_mapping = {}
for prefix, localName, namespace in adjustForeignAttributes.values():
if prefix is not None:
pre... | [
"45397160+Lisukod@users.noreply.github.com"
] | 45397160+Lisukod@users.noreply.github.com |
b7fd1cc456cbd98d11801372c51c0829413781c4 | 88f0f48a4a92e7047bc04fd5020da9b977080710 | /PythonIntroduction/lesson-03/task07/len_function.py | 491e32f8f3da5f05a3ba80d1a0ba2a248354f561 | [] | no_license | jdegrave/Python | 1a2e2f9d074ebebb46e27cc11a7a31ede17a9f6c | 742f57c9aef3363fc9b81e692fc15c226b660200 | refs/heads/master | 2021-01-11T23:34:56.237814 | 2018-02-21T18:47:58 | 2018-02-21T18:47:58 | 78,603,292 | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 163 | py | phrase = """
It is a really long string
triple-quoted strings are used
to define multi-line strings
"""
first_half = phrase[:((len(phrase))//2)]
print(first_half)
| [
"jdegrave@earthlink.net"
] | jdegrave@earthlink.net |
84f566651ccbc2f88d67c30cfbb05c6b820cb111 | 85c260a899cf5d9e5d50ddfe0c5ad94cb1962178 | /e1-lista/triangulos.py | 355b52a218507047ed492b2c28aa5aae61ca6354 | [] | no_license | anniasebold/prog1-ufms | 4dc4c98604b3f31083a85c808977f0c32b27b7a9 | 391adc21da6f9f0f0260225ab7f34a162a52e70c | refs/heads/main | 2023-06-18T13:21:34.304666 | 2021-07-05T15:30:16 | 2021-07-05T15:30:16 | 356,414,610 | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 839 | py | a, b, c = input().split()
a = float(a)
b = float(b)
c = float(c)
meio = 0
if a > b:
if b > c:
a = a
b = b
c = c
elif a > c:
a = a
meio = b
b = c
c = meio
else:
meio = a
a = c
c = b
b = meio
elif b > c:
if a > c:
meio = a
a = b
b = meio
else:
meio ... | [
"anniasebold3.0@gmail.com"
] | anniasebold3.0@gmail.com |
0479016331065061923078c4af8dc446ce097c77 | dc19ea8a49c13d362d8852ff13ef7fc24e60e2e1 | /bind-shell.py | 2d2cfd84549821663993902397bd5899bc6c69bd | [] | no_license | Koploseus/Bind-Shell | 7bd63519acae1e41c436e720db1fc01dd00e14f1 | 2245c4c6ab0d1ae0749fb73164aaa97bc7be9394 | refs/heads/master | 2021-09-01T00:19:42.208646 | 2017-12-23T18:42:13 | 2017-12-23T18:42:13 | 115,214,824 | 5 | 0 | null | null | null | null | UTF-8 | Python | false | false | 2,392 | py | import socket
import os
import time
##FUNCTIONS
def banner():
print " ________________ "
print "< Reverso-shells >"
print "By Koploseus"
print " ---------------- "
print " \ "
print " \ "
print " .--."
print " |o_o |"
print " |:_/ |"
print " // \ \ "
print " (| | )"
p... | [
"noreply@github.com"
] | Koploseus.noreply@github.com |
f3e20417ec83107e1acc57c6066a12fe09ef2676 | 01df649dc7068c91be60b5d275b60f21e6f7d634 | /server.py | f044c21849945ca9eed277290f3ef40322739b32 | [] | no_license | bernard-david/login_registration | 2252e50d207da45dadbba3360560a5f05f7370dc | 884977ecd4e55b44cc449d89760dc4c258ed05d1 | refs/heads/master | 2023-06-06T01:35:32.807537 | 2021-06-22T19:30:45 | 2021-06-22T19:30:45 | 378,289,926 | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 118 | py | from flask_app import app
from flask_app.controllers import users
if __name__=="__main__":
app.run(debug=True) | [
"dpbernard18@gmail.com"
] | dpbernard18@gmail.com |
5ee54f5967f3f9202dbda9335e8bb897d19153f5 | e28bcd09d37f675c545a9648c3aa0be402065a5d | /grozozahyst/wsgi.py | 3c4436007e1a4dcb56b9cad18e6936d7822ba82e | [] | no_license | sashoki/grozozahyst | cc44ada58bcc73a20a9341800b3091290ef0c19f | c3533540bacdf6de7055c1680403bb06911f1dbc | refs/heads/master | 2021-08-26T07:29:39.975186 | 2017-11-22T09:09:35 | 2017-11-22T09:09:35 | 101,628,551 | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 584 | py | """
WSGI config for radioservice project.
It exposes the WSGI callable as a module-level variable named ``application``.
For more information on this file, see
https://docs.djangoproject.com/en/1.9/howto/deployment/wsgi/
"""
import site
site.addsitedir('/var/www/grozozahyst.com/lib/python2.7/site-packages')
import... | [
"sania_piter@mail.ru"
] | sania_piter@mail.ru |
dcf6bb640f9751ecee9553d97d552f8c75126a42 | 5d6ef1469740109d732441e88aed91890f2b8361 | /accounts/views.py | 9758580ce50b736a4f2a87156cc2586f2a14e758 | [] | no_license | boiyelove/workflow | 1ce88ee830fe4536db4423962296557629d81a7e | 273c168f0a0979f29f5154d3c67337091e0fe4b3 | refs/heads/master | 2023-07-17T16:40:05.178225 | 2020-08-08T16:59:06 | 2020-08-08T16:59:06 | 172,429,593 | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 12,354 | py | import datetime
from django.shortcuts import render, get_object_or_404
from django.contrib.auth import logout
from django.views.generic import TemplateView, ListView
from django.views.generic.base import View
from django.views.generic.edit import FormView, UpdateView, CreateView, DeleteView
from django.contrib.auth.dec... | [
"daahrmmieboiye@gmail.com"
] | daahrmmieboiye@gmail.com |
ecc6dff2ab0682187eb3eed3a628b4b5e2100a2a | 79e89d58e8a58110bb63377bd28be1317abea2ac | /faro_api/models/question.py | e3060725b1ae7e858f26decb4b46fe29c37b8312 | [] | no_license | Wakemakin/faro-api | 8ab6798c9ea478455fbfce73a867b05e08270e12 | fcdd6a55247a7508982e293a71075a74ca5df5bc | refs/heads/master | 2021-01-19T05:25:50.860912 | 2013-09-03T02:15:26 | 2013-09-03T02:15:26 | 10,831,896 | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 692 | py | import sqlalchemy as sa
import faro_api.models.item as item
import faro_common.utils as utils
class Question(item.Item):
id = sa.Column(sa.Unicode(36), sa.ForeignKey('items.id'),
primary_key=True)
__mapper_args__ = {
'polymorphic_identity': 'question',
}
def __init__(self... | [
"justin.hammond@rackspace.com"
] | justin.hammond@rackspace.com |
08de9528172825c36f456e7389df9749cff1e095 | 8dccae4838be38d2e025faf23197c13782489130 | /tests/test_is_consecutive.py | 860be248467eb7ec8d90aacd34142e31e2711677 | [
"MIT"
] | permissive | BME-MIT-IET/iet-hf2021-snek | 47c6465d797ebbe8b32077ec30936a29613baefd | 9780200ccfa1a102a78067345c0993382c835f3a | refs/heads/master | 2023-04-20T03:47:09.793996 | 2021-05-09T16:35:25 | 2021-05-09T16:35:25 | 360,850,724 | 0 | 1 | MIT | 2021-05-09T16:35:26 | 2021-04-23T10:44:04 | Python | UTF-8 | Python | false | false | 1,162 | py | import unittest
from algorithms.stack import first_is_consecutive, second_is_consecutive
class TestConsecutiveStack(unittest.TestCase):
one_element_is_always_consecutive = [24]
one_element_is_always_consecutive_2 = [24]
consecutive_stack = [1, 2, 3, 4, 5, 6]
consecutive_stack_2 = [1, 2, 3, 4, 5, 6]
... | [
"bence.kovacs.zoltan@gmail.com"
] | bence.kovacs.zoltan@gmail.com |
4ed8aacb5d5e8e915a445cc8c33ffb7f42a8ec4c | be0f3dfbaa2fa3d8bbe59229aef3212d032e7dd1 | /Gauss_v45r8/Gen/DecFiles/options/11134020.py | d61de03b13fd229fd8d73ea102ddc4195d7175b6 | [] | no_license | Sally27/backup_cmtuser_full | 34782102ed23c6335c48650a6eaa901137355d00 | 8924bebb935b96d438ce85b384cfc132d9af90f6 | refs/heads/master | 2020-05-21T09:27:04.370765 | 2018-12-12T14:41:07 | 2018-12-12T14:41:07 | 185,989,173 | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 947 | py | # file /home/hep/ss4314/cmtuser/Gauss_v45r8/Gen/DecFiles/options/11134020.py generated: Fri, 27 Mar 2015 15:47:57
#
# Event Type: 11134020
#
# ASCII decay Descriptor: {[[B0]nos -> (J/psi(1S) -> p+ p~-) (rho(770)0 -> pi+ pi-)]cc, [[B0]os -> (J/psi(1S) -> p+ p~-) (rho(770)0 -> pi- pi+)]cc}
#
from Configurables import Gen... | [
"slavomirastefkova@b2pcx39016.desy.de"
] | slavomirastefkova@b2pcx39016.desy.de |
3b9dd450c58558231ef96e8c726dcd9fbc794684 | 9d3fb5e27f4d98c5ea97878a1e1d53f8cf01fdbf | /vehicle/util/schema.py | 90e5f14badbba94e192d6d4796f8f0b29111a0c1 | [] | no_license | mhsueh2/sample_api | bb4e6e2e8b6222cae1e72fad5e019498919bb819 | f970712ef57adc73e5d859bb8158e93ee6bd4497 | refs/heads/master | 2020-06-27T07:10:17.524825 | 2019-07-31T15:20:51 | 2019-07-31T15:20:51 | 199,880,581 | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 328 | py | from voluptuous import Schema, All, Range, Coerce, Required
class Schema:
vehicle_id = Schema({
Required('vehicle_id'): All(Coerce(int), Range(min=1))
})
booking = Schema({
Required('vehicle_id'): All(Coerce(int), Range(min=1)),
Required('user_id'): All(Coerce(int), Range(min=1))... | [
"mhsueh2@gmail.com"
] | mhsueh2@gmail.com |
10e94a6f76c90c87c8acfcd4666f27e4f016ad82 | bc169f7ccd08c180f9c25af88e1c33788191da5a | /virginproject/virginproject/wsgi.py | fdbccd808c510d06b41f4bc6bc17ca9442d9844d | [] | no_license | pradeepreddyDev/virginexports2 | dec51472d3eb22a7b5afd63233121c53bd4d2c74 | 0c32816d410c4ceb70af6b14ea64be821163e586 | refs/heads/master | 2020-09-04T05:00:05.114732 | 2019-11-05T05:16:44 | 2019-11-05T05:16:44 | 219,663,073 | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 403 | py | """
WSGI config for virginproject project.
It exposes the WSGI callable as a module-level variable named ``application``.
For more information on this file, see
https://docs.djangoproject.com/en/2.2/howto/deployment/wsgi/
"""
import os
from django.core.wsgi import get_wsgi_application
os.environ.setdefault('DJANGO... | [
"pradeepnagireddy.it@gmail.com"
] | pradeepnagireddy.it@gmail.com |
48e2ee9bf74f32216e6bdd5b5583f8c382c79a1f | b4024f4190be23e4a0305f73790a483ac5bbb346 | /articles/schema.py | bb0da173009e565fabde127a4850eb99b0daa878 | [] | no_license | alexc957/newsRecommenderBackend | c3ffc5fb1113fe563e31f45060d8a5d670717787 | 33fbbe4fd0faee482407ddc41baeb91922ab67a7 | refs/heads/main | 2023-06-05T15:25:56.106685 | 2021-06-24T21:35:12 | 2021-06-24T21:35:12 | 315,438,187 | 0 | 0 | null | 2021-06-24T21:35:12 | 2020-11-23T20:53:39 | Python | UTF-8 | Python | false | false | 3,234 | py | import math
import graphene
from graphene_django import DjangoObjectType
from .models import Article, SimilarArticle
from django.db.models import Q
from django.db.models import Count
class ArticleType(DjangoObjectType):
"""
docstring
"""
class Meta:
model = Article
class SimilarArticleType(... | [
"alexcoronel1995@gmail.com"
] | alexcoronel1995@gmail.com |
2e1248ddd66dcbcd30e5183f86ce76ddf2f39fed | cc66665ed3abde76c684a15eafa50733301c416b | /基础/12_return_func.py | 24fb4c8e163c3b143f0cf01c11e547b6a66a87c1 | [] | no_license | gitchenhe/PythonStudy | 7c62ebab72f6ea5c90db4ec3a9e55ae41178582f | 2c72a796e41884bd36594dd24941fd373e4ad0cf | refs/heads/master | 2021-04-03T05:09:55.732741 | 2018-03-17T14:20:09 | 2018-03-17T14:20:09 | null | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 1,779 | py | # 参数求和,通常情况下函数是这样定义的
def calc_sum(*args):
ax = 0
for x in args:
ax = ax + x
return ax
# 但是,如果不需要立即求和,而是在后面的代码中,根据需要再计算怎么办?可以不返回求和的结果,而是返回求和的函数
def lazy_sum(*args):
def sum():
ax = 0
for x in args:
ax = ax + x
return ax
return sum
print("普通求和", calc_su... | [
"he.chen@lanmaoly.com"
] | he.chen@lanmaoly.com |
bdd0c6698fccacd6293e5026751984486fe11b4d | 0a7cf4842e4387541c0256f4b2c49e9d2e36d780 | /src/order/migrations/0016_auto_20200116_1414.py | faef2797dcfc86eba3024bc33a5e37945ed43b04 | [] | no_license | mehrab-nt/TeamGraphic | bb1f13055e54a51a85ff52e94425c538553bfd31 | dba5d86ec157f7e8c2f72e8cb077980055559aaf | refs/heads/master | 2020-12-01T17:08:20.336814 | 2020-01-21T14:10:03 | 2020-01-21T14:10:03 | 230,706,761 | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 1,345 | py | # Generated by Django 3.0.1 on 2020-01-16 10:44
from django.db import migrations
class Migration(migrations.Migration):
dependencies = [
('order', '0015_auto_20200116_1058'),
]
operations = [
migrations.AlterModelOptions(
name='cart',
options={'verbose_name': 'سب... | [
"mehrab_nt@yahoo.com"
] | mehrab_nt@yahoo.com |
dc081a3bdcb41c1fec957a206f7cd2c2a8b97677 | 3f6c16ea158a8fb4318b8f069156f1c8d5cff576 | /.PyCharm2019.1/system/python_stubs/-1850396913/lxml/etree/_Comment.py | d1bc71dd97ac493d449fb08c86cc8fe73d2b8f6e | [] | no_license | sarthak-patidar/dotfiles | 08494170d2c0fedc0bbe719cc7c60263ce6fd095 | b62cd46f3491fd3f50c704f0255730af682d1f80 | refs/heads/master | 2020-06-28T23:42:17.236273 | 2019-10-01T13:56:27 | 2019-10-01T13:56:27 | 200,369,900 | 0 | 0 | null | 2019-08-03T12:56:33 | 2019-08-03T11:53:29 | Shell | UTF-8 | Python | false | false | 1,038 | py | # encoding: utf-8
# module lxml.etree
# from /var/www/newsbytes/CricketPlayerDataScrapper/venv/lib/python3.6/site-packages/lxml/etree.cpython-36m-x86_64-linux-gnu.so
# by generator 1.147
""" The ``lxml.etree`` module implements the extended ElementTree API for XML. """
# imports
import builtins as __builtins__ # <modu... | [
"sarthakpatidar15@gmail.com"
] | sarthakpatidar15@gmail.com |
1d14a6463b2ceaf9f8bc13e5d1c1c6450675751c | 49b048b05330fcc7ebd1ea6d3b619085af46b433 | /exe01.py | 751128bf3dd018f9c1442b0a37477fe9a947ef8a | [] | no_license | andreplacet/reinforcement-tasks-python-strings | a26e2c8544a2dbb161ffd27c4f806398c2096b8f | 1ee8f16bbc97bca138feb41992205674a4e07a57 | refs/heads/master | 2023-01-08T23:09:40.872807 | 2020-11-06T17:54:51 | 2020-11-06T17:54:51 | 310,668,589 | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 525 | py | # Exercicio 01
print('Comparador de strings')
string_1 = str(input('Digite uma frase: ')).strip().split()
print(f'String 1: {string_1}')
string_1 = ''.join(string_1)
string_2 = str(input('Digite uma frase: ')).strip().split()
print(f'String 2: {string_2 = }')
string_2 = ''.join(string_2)
print(f'Tamanho da String 1... | [
"andreplacet@gmail.com"
] | andreplacet@gmail.com |
af47b8607981e7db97d30f4a6e9ad2dff26f99f0 | b8d80a23cb27af08a1c4d34b478c76228ae5fbb4 | /insights/parsr/examples/tests/test_json.py | 909b97d73ee25c2114382bb8aeaeaf7b2647beb3 | [
"Apache-2.0"
] | permissive | RedHatInsights/insights-core | bb243e2bf8a52446fefb95ebe05478d6e35efe2e | b0ea07fc3f4dd8801b505fe70e9b36e628152c4a | refs/heads/master | 2023-09-04T21:15:40.456257 | 2023-09-04T10:46:56 | 2023-09-04T10:46:56 | 92,518,221 | 144 | 290 | Apache-2.0 | 2023-09-14T02:40:13 | 2017-05-26T14:23:11 | Python | UTF-8 | Python | false | false | 2,956 | py | import json
from insights.parsr.examples.json_parser import (TRUE, FALSE, NULL, JsonArray,
JsonObject, JsonValue)
DATA0 = """
{
"name": "Adventure Lookup"
}
""".strip()
DATA1 = """
{
"name": "Adventure Lookup",
"icons": [
{
"src": "/android-chrome-192x192.png",
"si... | [
"bfahr@redhat.com"
] | bfahr@redhat.com |
71ef0ac38df7ff3711365479429d3a21f262af87 | 1b48b3980abbe11691310a7f35efef62bc0ae831 | /_msic/py/_fp/rxpy/test_rx.py | 7ae445bd4cd75655f4c4f14080afa7efe81709e5 | [] | no_license | FXTD-ODYSSEY/MayaScript | 7619b1ebbd664988a553167262c082cd01ab80d5 | 095d6587d6620469e0f1803d59a506682714da17 | refs/heads/master | 2022-11-05T08:37:16.417181 | 2022-10-31T11:50:26 | 2022-10-31T11:50:26 | 224,664,871 | 45 | 11 | null | null | null | null | UTF-8 | Python | false | false | 299 | py | from rx import Observable
from random import randint
three_emissions = Observable.range(1, 3)
(
three_emissions.map(lambda i: randint(1, 100000))
.subscribe(lambda i: print("Subscriber 1 Received: {0}".format(i)))
.subscribe(lambda i: print("Subscriber 2 Received: {0}".format(i)))
)
| [
"timmyliang@tencent.com"
] | timmyliang@tencent.com |
f726e7feb9caf10f0cc95c9830827b92f818cf2f | 7fbbbf06526002ced9530c4dbd146d9d0ca680a2 | /core/urls.py | f95bea7791f2e47b5ce096d1210e133926082570 | [
"MIT"
] | permissive | zwernberg/polls | f8b9262bca5f6828e1cf4648814306c9d61feb6b | 529087174c8d28d6f10d913de3e0d8f113576c74 | refs/heads/master | 2020-07-03T09:00:05.712009 | 2016-12-06T04:00:14 | 2016-12-06T04:00:14 | 74,185,183 | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 1,096 | py | """polls URL Configuration
The `urlpatterns` list routes URLs to views. For more information please see:
https://docs.djangoproject.com/en/1.10/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')
Class-base... | [
"zawerny@gmail.com"
] | zawerny@gmail.com |
10b52dbe5a748394da3f160139123149454504dc | db749b9d7350ac31d58ae5197b3569177ee8b832 | /models/profile.py | aba4baa25c9553dd3e226c3e541c96e94d816886 | [] | no_license | ppetroski/python-rest-sample | 258e7f65e273364732459a604dec1dd34a89476b | f264e2c5bf0eb6b076035e579f69fe5dfea5dec4 | refs/heads/master | 2023-03-24T13:26:06.492492 | 2021-03-17T14:48:09 | 2021-03-17T14:48:09 | 342,982,361 | 1 | 1 | null | null | null | null | UTF-8 | Python | false | false | 2,806 | py | from sqlalchemy import Column, String
from sqlalchemy.orm import relationship, validates
import components.validator as validator
from components.framework.baseModel import BaseModel, RelationsBase
def geo_location():
geo = None
try:
"""
Need license, but I think the "How to" was more importa... | [
"paul.petroski@hotmail.com"
] | paul.petroski@hotmail.com |
38e06d2734981a8eacafa7f9922bd4d97b493066 | 421e9f91b91e8e204513f51d64a5ed72deb35601 | /reports.py | 18eac399e474b45b1fd2577178c05850363b7227 | [] | no_license | earthsoul/Automate-updating-catalog-information- | 7d0b01fdfff226691c4c6c1e87aa6fb01e477a5a | bdd8cc470259e3fee2c020d577196d0284bf3d47 | refs/heads/master | 2022-11-24T12:55:58.257573 | 2020-07-26T07:22:35 | 2020-07-26T07:22:35 | 282,388,432 | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 731 | py | #!/usr/bin/env python3 # shebang
from reportlab.platypus import SimpleDocTemplate # used to generate PDFs
from reportlab.platypus import Paragraph, Spacer, Table, Image # flowables
from reportlab.lib.styles import getSampleStyleSheet # used for document styles
from reportlab.lib import colors # used for table sty... | [
"sarthakpahuja1603@protonmail.com"
] | sarthakpahuja1603@protonmail.com |
2f7af88afa5cca1b29507b3b2c6908608c582183 | caaa87102b710e1973f4a434d1ecf2c80a972395 | /newsletter/migrations/0002_auto_20151115_1402.py | 02edde8a5c0e3b8e32ecaffd2989e1809e3b32ed | [] | no_license | SKNIRBHAY/TechWise-1 | e0df8868af17133a32da8e2341fa30aa0349af10 | 027895cb91aada1d8eecc1ddbb79e41fa66cdc75 | refs/heads/master | 2020-05-24T21:22:31.458963 | 2017-03-14T02:11:05 | 2017-03-14T02:11:05 | 84,881,955 | 1 | 0 | null | 2017-03-13T22:48:51 | 2017-03-13T22:48:51 | null | UTF-8 | Python | false | false | 350 | py | # -*- coding: utf-8 -*-
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('newsletter', '0001_initial'),
]
operations = [
migrations.RenameModel(
old_name='Newsletter',
new_na... | [
"sangitdhanani@gmail.com"
] | sangitdhanani@gmail.com |
a753e07e6d28f973304135b49936433f388cb925 | 5f300f54929f2acdb2ab3959006d152c775f1b58 | /src/Products/TemporaryFolder/mount.py | 7132798470fe9f57bc4701d01dd7f7e0595191c3 | [
"ZPL-2.1"
] | permissive | plone-ve/Products.TemporaryFolder | a26a40d88dc65ee4bb04d740162dd68f0a1db2c0 | 26bd1c00503594e17722c7337c69d543f28fd14b | refs/heads/master | 2020-05-25T18:35:24.224661 | 2019-05-08T14:57:12 | 2019-05-08T14:57:12 | null | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 9,908 | py | ##############################################################################
#
# Copyright (c) 2001, 2002 Zope Foundation and Contributors.
# All Rights Reserved.
#
# This software is subject to the provisions of the Zope Public License,
# Version 2.1 (ZPL). A copy of the ZPL should accompany this distribution.
# TH... | [
"hanno@hannosch.eu"
] | hanno@hannosch.eu |
db860acf670514cdb3a4a8ac172160bfbafee046 | a8e3ddb269a8b959b3bce38e7b21aaa1a7e69dd4 | /tensorpack/trainv1/config.py | abc02ccaa6e417f64904e35095a3b993806a2fc4 | [
"Apache-2.0"
] | permissive | myelintek/tensorpack | 55945c7ea9d661b31f28c83e5477870d2f3dac86 | fcbf5869d78cf7f3b59c46318b6c883a7ea12056 | refs/heads/master | 2018-10-25T05:50:15.302077 | 2018-04-09T03:24:27 | 2018-04-09T03:24:27 | 114,971,878 | 0 | 2 | Apache-2.0 | 2022-09-29T03:16:20 | 2017-12-21T06:39:29 | Python | UTF-8 | Python | false | false | 150 | py | # -*- coding: utf-8 -*-
# File: config.py
# Author: Yuxin Wu <ppwwyyxxc@gmail.com>
__all__ = ['TrainConfig']
from ..train.config import TrainConfig
| [
"ppwwyyxxc@gmail.com"
] | ppwwyyxxc@gmail.com |
fc28e8962215eb1948964c9280e6b27ac215dd14 | 656590a98c1d086f16f7bbae8484a65e849f965f | /w5/Ch8e10.py | b7ce920e6b0ff7520d7e4ff118d90c3515826834 | [] | no_license | tmh327/learning_python | ed20469f106285e2b765e8eee5cc0206e3280089 | ab35e9edec810e76a002667498c13dff392d6a90 | refs/heads/master | 2020-04-21T22:25:52.260163 | 2019-05-10T18:11:22 | 2019-05-10T18:11:22 | 169,910,590 | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 226 | py | #!/usr/bin/env python3
def is_palindrome(word):
if word[:] == word[::-1]:
return True
else:
return False
print(is_palindrome('noon'))
print(is_palindrome('redivider'))
print(is_palindrome('haha'))
| [
"tmh327@drexel.edu"
] | tmh327@drexel.edu |
2cd2605da4aa19d982ad7e30a63ff935ef7d2481 | c03e41630cdb23665a2cdcc09d1009bd8c48f0e6 | /runFittingProblem.py | ed29bbdd12a12320b77efd8e77284857896c6a77 | [] | no_license | gabrevaya/SirIsaac | a5a70f2d241053a58b710e35f024bf521c0c1056 | 0bbb26f0f9b8359613b1f6c4526bd42302d1b40e | refs/heads/master | 2020-03-21T14:30:22.433693 | 2018-06-04T19:17:47 | 2018-06-04T19:17:47 | null | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 22,605 | py | # runFittingProblem.py
#
# Bryan Daniels
# 6.30.2009
#
# Code that reproduces the fitting done in the 2013 manuscript.
#
import scipy
from SloppyCell.ReactionNetworks import *
import FittingProblem
reload(FittingProblem)
import FakeData
reload(FakeData)
import os,sys,copy
from outputTag import nextFileNumString
im... | [
"bdaniels@discovery.wisc.edu"
] | bdaniels@discovery.wisc.edu |
e8449e5c52308db1066fe4840c2557f6f0605c14 | 2bb0a54827ce23ae96448ae8603452088f0539a5 | /2/JPMC-tech-task-2-PY3/node_modules/bufferutil/build/config.gypi | 82a132a4e40a83871eb9478055c8d0f224b47999 | [
"MIT"
] | permissive | ohzecodes/JP_Morgan_Chase_ | c0f6b7975a5c4ec5ac8c61f202dad701abf39d86 | 8d85eb8fd78e95a1ffe1dba025fc5136ab4f1a1b | refs/heads/main | 2023-01-24T04:34:49.232140 | 2020-12-04T02:25:55 | 2020-12-04T02:25:55 | 318,356,000 | 0 | 0 | null | null | null | null | UTF-8 | Python | false | false | 5,510 | 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,
"build_v8_with_gn": "false",
"coverage": "false",
"debug_ngh... | [
"mo.ze@outlook.com"
] | mo.ze@outlook.com |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.