Dataset Viewer
Auto-converted to Parquet Duplicate
src
stringlengths
721
1.04M
""" [2014-11-26] Challenge #190 [Intermediate] Words inside of words https://www.reddit.com/r/dailyprogrammer/comments/2nihz6/20141126_challenge_190_intermediate_words_inside/ #Description This weeks challenge is a short yet interesting one that should hopefully help you exercise elegant solutions to a problem rather...
import ConfigParser import os import sys # Dealing with registering match and target modules match_modules_registered = {} target_modules_registered = {} def register_target_module(name, func): target_modules_registered[name.lower()] = func def get_target_module_func(name): if name.lower() in target_modules_regi...
#!/usr/bin/env python ''' Created on Mars 20 2016 @author: popotvin ''' import mqtt_zway_test import mqtt_zway import paho.mqtt.client as mqtt import time import traceback date_time = mqtt_zway_test.date_time # Main variables mqtt_old_payload = [] mqtt_new_payload = [] payload = {} publish_string = "" # MQTT confi...
from __future__ import division from itertools import product from nltk.tokenize import RegexpTokenizer from nltk.translate.bleu_score import sentence_bleu from nltk.util import skipgrams from nltk.corpus import wordnet from treetagger import TreeTagger import numpy as np import text2int as t2i import copy import sys i...
#!/usr/bin/env python2 import re import os import sys import time import json import zlib import argparse import requests from dateutil.parser import parse # Regular expression patterns re_commit_author = re.compile( r'^author (?P<name>.+) <(?P<email>.+)> (?P<time>\d+) (?P<tz>[+-]\d+)$', re.MULTILINE ) # ...
from mpl_toolkits.mplot3d import axes3d import numpy as np import matplotlib.pyplot as plt from matplotlib.animation import FuncAnimation from socket import * import time # Объявляем все глобальные переменные HOST = '192.168.0.76' PORT = 21566 BUFSIZ = 512 ADDR = (HOST, PORT) bad_packet = 0 good_packet = 0 # fig, ax...
import asyncio import fcntl import logging import os import sys import threading import time import uvloop import unittest import weakref from unittest import mock from uvloop._testbase import UVTestCase, AIOTestCase class _TestBase: def test_close(self): self.assertFalse(self.loop._closed) self...
""" Stochastic Gradient Descent. TODO: write more documentation """ __docformat__ = 'restructedtext en' __authors__ = ("Razvan Pascanu " "KyungHyun Cho " "Caglar Gulcehre ") __contact__ = "Razvan Pascanu <r.pascanu@gmail>" import numpy import time import logging import theano import th...
#!/usr/bin/python2.4 -tt # Copyright 2010 Google Inc. # Licensed under the Apache License, Version 2.0 # http://www.apache.org/licenses/LICENSE-2.0 # Google's Python Class # http://code.google.com/edu/languages/google-python-class/ # Additional basic string exercises # D. verbing # Given a string, if its length is a...
import logging from pele.potentials import LJ from nestedbasinsampling import ( NoGUTSSampler, NestedOptimizerKalman, HardShellConstraint, random_structure, RecordMinimization, CompareStructures, LOG_CONFIG, Database) logger = logging.getLogger("LJ31.system") logger = logging.getLogger("NBS.LJ_syste...
"""Docblock manipulation utilities.""" from pprint import pformat def append_to_docs(fn, text): """Append text to a functions existing docblock.""" if not text: return if fn.__doc__: min_indent = _getindent(fn.__doc__) fn.__doc__ = '%s\n\n%s' % (fn.__doc__, _indent(text, min_inden...
import os import re import luigi import luigi.hadoop import luigi.hdfs class InputText(luigi.ExternalTask): path = luigi.Parameter() def output(self): return luigi.hdfs.HdfsTarget(self.path) class Ngrams(luigi.hadoop.JobTask): source = luigi.Parameter() destination = luigi.Parameter() ...
from __future__ import unicode_literals from frappe import _ def get_data(): return [ { "label": _("Form Customization"), "icon": "fa fa-glass", "items": [ { "type": "doctype", "name": "Customize Form", "description": _("Change field properties (hide, readonly, permission etc.)") }, ...
#!/usr/bin/env python # -*- coding: utf-8 -*- """ 0 paikannimi 1 nimen kielikoodi 2 kielen nimi 3 paikkatyypin koodi 4 paikkatyypin selite 5 kkj/pkj pohjoinen 6 kkj/pkj itä 7 kkj/ykj pohjoinen 8 kkj/ykj itä 9 etrs/tm35fin pohjoinen 10 etrs/tm35fin itä 11 kuntakoodi 12 ku...
# -*- coding: utf-8 -*- # # The MIT License (MIT) # # Copyright (c) 2014 Edward Mountjoy # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal # in the Software without restriction, including without limitation th...
# Copyright 2020 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, ...
""" SALTS XBMC Addon Copyright (C) 2015 tknorris This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. T...
import os os.environ['CUDA_LAUNCH_BLOCKING'] = '1' import pandas as pd import matplotlib import numpy as np import math import matplotlib.pyplot as plt from sklearn.preprocessing import Imputer from sklearn.cross_validation import train_test_split from sklearn import preprocessing import plotly.tools as tls import pand...
# -*- coding: utf-8 -*- from setuptools import setup, find_packages from dnsimple_zoneimport import meta f = open('requirements.txt', 'r') lines = f.readlines() requirements = [l.strip().strip('\n') for l in lines if l.strip() and not l.strip().startswith('#')] readme = open('README.rst').read() setup(name='dnsimple...
# -*- coding: utf-8 -*- # Copyright (C) 2012 Yahoo! Inc. All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain # a copy of the License at # # http://www.apache.org/licenses/LICENSE-2...
#!/usr/bin/env python """Encoding and decoding of a question once for each codec. Example execution: $ ./question.py ASN.1 specification: -- A simple protocol taken from Wikipedia. Foo DEFINITIONS ::= BEGIN Question ::= SEQUENCE { id INTEGER, question IA5String } Answer ::= SE...
# -*- coding: utf-8 -*- # Copyright (C) 2014 Johannes Baiter <johannes.baiter@gmail.com> # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as # published by the Free Software Foundation, either version 3 of the # License, or (at your ...
from cumulusci.core.exceptions import TaskOptionsError from cumulusci.tasks.metadata_etl import MetadataSingleEntityTransformTask from cumulusci.utils.xml.metadata_tree import MetadataElement class AddValueSetEntries(MetadataSingleEntityTransformTask): entity = "StandardValueSet" task_options = { **Me...
#************************************************************************************* # Copyright 2018 OSIsoft, 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 # # <http://www.apache.org...
End of preview. Expand in Data Studio
README.md exists but content is empty.
Downloads last month
4