text
stringlengths
1
927k
#encoding=utf8 ''' Detection with SSD In this example, we will load a SSD model and use it to detect objects. ''' import os import sys import argparse import numpy as np from PIL import Image, ImageDraw # Make sure that caffe is on the python path: caffe_root = './' os.chdir(caffe_root) sys.path.insert(0, os.path.join...
from django.contrib.auth.models import AbstractUser from django.db.models import CharField from django.urls import reverse from django.utils.translation import gettext_lazy as _ class User(AbstractUser): """Default user for Openapi Documentor.""" #: First and last name do not cover name patterns around the g...
import itertools import dgl import torch from rdkit import Chem from scipy.sparse import csr_matrix from scipy.sparse.csgraph import minimum_spanning_tree from fgh_gnn.utils import FGROUP_MOLS, get_ring_fragments, ogb_graph_to_mol class FGroupHetGraphBuilder: def __init__(self, vocab): self.vocab = voc...
# 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 # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, so...
from .api.config.application_config import ApplicationConfig from .console_application import ConsoleApplication from .config.default_application_config import DefaultApplicationConfig __version__ = "0.2.4"
#!/bin/env python #========================================================================== # (c) 2004-2005 Total Phase, Inc. #-------------------------------------------------------------------------- # Project : Aardvark Sample Code # File : aamonitor_filtered.py #-----------------------------------------------...
# -*- coding: utf-8 -*- # Markdown parsers. # # # Author: Moogen Tian <http://blog.galeo.me> # # Legal: # # This file is published under BSD License. # # And the code structure references: # # * pagewise (by ainm <ainm at gmx.com>, with personal public license) # # * mynt (by Andrew Fricke, the autho...
import unittest from moment import moment class TestIsSameOrBefore(unittest.TestCase): def test_default(self): a = moment('2021-04-22 04:02:09.957000 +0800') b = moment('2021-2-2 13:02:09.957000 +0800') self.assertTrue(a.isSameOrBefore([2021, 5, 1])) self.assertFalse(a.isSameOrBef...
""" Version Sofware: 0.0.0 Version Python: 3.7 """
import os import sys root_path = os.path.abspath("../") if root_path not in sys.path: sys.path.append(root_path) import tensorflow as tf class Optimizer: def __init__(self, lr=1e-3): self._lr = lr self._opt = None @property def name(self): return str(self) def minimize(s...
import os.path import sys from setuptools import setup with open("README.md", encoding="utf-8") as fh: long_description = fh.read() requirements = ["numpy"] if sys.version_info[1] == 6: requirements.append("dataclasses") here = os.path.abspath(os.path.dirname(__file__)) about = {} with open(os.path.join(h...
# Copyright (c) 2018, WSO2 Inc. (http://wso2.com) All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by ap...
from datetime import datetime import os import pickle import argparse import numpy as np import torch import torch.nn.functional as F from mcmc_unlearner import sgmcmcUnlearner import utils import models class myUnlearner(sgmcmcUnlearner): def _apply_sample(self, z): x, y = z if not self.cpu: x, ...
"""Arq-based queue worker lifecycle configuration.""" from __future__ import annotations import uuid from typing import Any, Dict import httpx import structlog from safir.dependencies.db_session import db_session_dependency from safir.logging import configure_logging from timessquare.config import config from times...
# Copyright (C) 2018 SignalFx, Inc. All rights reserved. from bson import json_util as json from opentracing.ext import tags import pymongo.monitoring from six import text_type import opentracing class CommandTracing(pymongo.monitoring.CommandListener): _scopes = {} def __init__(self, tracer=None, span_tags...
# Importar as bibliotecas necessárias import pandas as pd import numpy as np import matplotlib import matplotlib.pyplot as plt from sklearn.linear_model import LinearRegression from sklearn.metrics import mean_squared_error import seaborn as sns from sklearn.linear_model import LinearRegression # Leitura do dataset ...
""" Python 2 and 3 code to generate 4 and 5 digit NACA profiles The NACA airfoils are airfoil shapes for aircraft wings developed by the National Advisory Committee for Aeronautics (NACA). The shape of the NACA airfoils is described using a series of digits following the word "NACA". The parameters in the numerical co...
#!/usr/bin/env python3 # -*- coding: utf-8 -*- """ data6 = Breast cancer """ from chip_clas_new import chip_clas_new import statistics from functions import remove_noise from sklearn.model_selection import train_test_split, KFold from sklearn.preprocessing import MinMaxScaler import numpy as np import pandas as pd da...
import fire import snowflake.connector import configparser import secrets import pathlib class Bufu(): def connect(self): cp = configparser.ConfigParser() path = pathlib.Path('~/.snowsql/config') cp.read(path.expanduser()) conn = snowflake.connector.connect( user = cp['c...
import os import sys import math import numpy as np import torch src_dir = os.path.dirname(os.path.realpath(__file__)) while not src_dir.endswith("sfa"): src_dir = os.path.dirname(src_dir) if src_dir not in sys.path: sys.path.append(src_dir) from config import kitti_config as cnf def angle_in_limit(angle):...
from typing import Dict, List, Optional, Tuple, Union from typing_extensions import TypedDict import numpy as np import torch from torch import Tensor from tqdm import tqdm from transformers import PreTrainedTokenizer from neuro_comma.augmentation import AUGMENTATIONS from neuro_comma.pretrained import TOKEN_IDX cl...
i = 0 while True: try: nome = input('Por favor digite o seu nome: ') ind = int(input('Digite um indice do nome digitado: ')) print(nome[ind]) break except ValueError: print('Oops! Nome invalido. Tente novamente...') except IndexError: print('Oops! Indice inval...
# -*- coding: utf-8 -*- # Copyright (C) 2005-2006 Joe Wreschnig # 2013 Christoph Reiter # # 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 2 of the License, or...
# Implementazione openflow di un hub tramite controller # # In ogni switch viene caricata un'unica regola # di default (table miss) con azione di invio al controller # dell'intero pacchetto. Il controller risponde con una # packet out con azione flood # # NOTA: OpenVSwitch ignora l'opzione OFPCML_NO_BUFFER # nelle rego...
from grouper.fe.forms import ServiceAccountCreateForm from grouper.fe.settings import settings from grouper.fe.util import GrouperHandler from grouper.models.group import Group from grouper.service_account import ( BadMachineSet, can_create_service_account, create_service_account, DuplicateServiceAccoun...
from generate_params import * n_params = 50 for _ in range(n_params): random_params_cont_bath(beta=beta, U_range=[1., 8.], eps_range=[-1., 1.], D_range=[2. , 8.], filename=name("params_cont_bath", beta,...
# -*- coding: utf-8 -*- from django.core.urlresolvers import reverse from cms.toolbar_base import CMSToolbar from cms.toolbar_pool import toolbar_pool @toolbar_pool.register class SeoCheckToolbar(CMSToolbar): def populate(self): seo_check_menu = self.toolbar.get_or_create_menu( 'seo_check...
from dataclasses import dataclass import pele_platform.Adaptive.simulation as si import pele_platform.Utilities.Parameters.parameters as pv @dataclass class GpcrLauncher: args: pv.ParametersBuilder def run_gpcr_simulation(self) -> pv.ParametersBuilder: # Set parameters for GPCR and launch simulation...
# # @lc app=leetcode id=172 lang=python3 # # [172] Factorial Trailing Zeroes # # @lc code=start class Solution: def trailingZeroes(self, n): # zero generated by 2 and 5 if n < 5: return 0 ans = 0 base = 5 while n >= base: ans += n//base ba...
#from .Opt import BayesianOptimization from .GaussianProcess import GP from .GaussianProcess.Kernel import RBF from .Opt import BayesianOptimization from .Acquisition import Acquistion
import search import string from math import(cos, pi) # A sample map problem # sumner_map = search.UndirectedGraph(dict( # Portland=dict(Mitchellville=7, Fairfield=17, Cottontown=18), # Cottontown=dict(Portland=18), # Fairfield=dict(Mitchellville=21, Portland=17), # Mitchellville=dict(Portland=7, Fairfield...
# Copyright 2018-2021 Streamlit Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in wr...
print('a b'.split('.s'))
"""BipHelp URL Configuration The `urlpatterns` list routes URLs to views. For more information please see: https://docs.djangoproject.com/en/1.11/topics/http/urls/ Examples: Function views 1. Add an import: from my_app import views 2. Add a URL to urlpatterns: url(r'^$', views.home, name='home') Class-ba...
from django.db import models class Manufacturer(models.Model): name = models.CharField(max_length=255) class Product(models.Model): name = models.CharField(max_length=255) price = models.DecimalField() description = models.TextField() release_date = models.DateField() manufacturer = models.F...
""" python test.py --model pointMLP --msg 20220209053148-404 """ import argparse import os import datetime import torch import torch.nn.parallel import torch.backends.cudnn as cudnn import torch.optim import torch.utils.data import torch.utils.data.distributed from torch.utils.data import DataLoader import models as mo...
#!/usr/bin/env python2 # Copyright (c) 2014-2015 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 -reindex with CheckBlockIndex # from test_framework.test_framework import FilbitTestFramework fr...
import winreg import sys def check_hide() -> bool: """check if hidguardian is used and controller is hidden """ if sys.platform.startswith('win32'): try: access_reg = winreg.ConnectRegistry(None, winreg.HKEY_LOCAL_MACHINE) access_key = winreg.OpenKey(...
from .helpers import * class TestFilterRuleId: def test_filter_rule_id_exact_match(self): arguments = [ "--filter-rule-id", "12", "--append-tag", "foo" ] rule_string = """ SecRule ARGS|ARGS:foo|!ARGS:bar "@rx foo" "id:12" """ expected = """ SecRule ARGS|ARGS:...
#!/usr/bin/env python # -*- coding:utf-8 -*- # author:jingtongyu # datetime:2020/6/7 10:14 下午 # software: PyCharm from flask import current_app from . import db from .base import BaseModel from sqlalchemy.exc import SQLAlchemyError from werkzeug.security import generate_password_hash, check_password_hash import time ...
<warning descr="Python versions 3.5, 3.6, 3.7, 3.8, 3.9, 3.10 do not have type long. Use int instead.">long("abc")</warning>
#!/usr/bin/env python3 # # Copyright (c) 2019, The OpenThread Authors. # All rights reserved. # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are met: # 1. Redistributions of source code must retain the above copyright # ...
import _plotly_utils.basevalidators class LightpositionValidator(_plotly_utils.basevalidators.CompoundValidator): def __init__(self, plotly_name="lightposition", parent_name="volume", **kwargs): super(LightpositionValidator, self).__init__( plotly_name=plotly_name, parent_name=pare...
import numpy as np #import skimage.draw as skdraw def add_bbox(img,bbox,color=[0,0,0],fill=False,alpha=1): x1,y1,x2,y2 = bbox # Clockwise starting from top left r = [y1,y1,y2,y2] c = [x1,x2,x2,x1] if fill: coords = skdraw.polygon(r,c,shape=img.shape[0:2]) skdraw.set_color...
from neo4j import GraphDatabase import json import os def create_beers(tx): """ Load from the results of cloudburst site scraper """ with open('data/beers.json', 'r') as f: beer_hops = json.load(f) beers = beer_hops['beers'] query = """ UNWIND $beers as beer MERGE (b:Bee...
from pprint import pprint d = { 'A' : 10, 'B' : 50, 'C' : 40, } print(sorted(d)) # ['A', 'B', 'C'] print(sorted(d, key=d.get)) # ['A', 'C', 'B'] print(sorted(d, key=d.get, reverse=True)) # ['B', 'C', 'A'] l = [ { 'id' : 'A', 'keyword' : 10, }, { 'id' : 'B', 'keyword' : 50, }, {...
# # Strelka - Small Variant Caller # Copyright (c) 2009-2018 Illumina, Inc. # # 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 vers...
import os import argparse import warnings import numpy as np from scipy.io import wavfile from hmmlearn import hmm from python_speech_features import mfcc # Function to parse input arguments def build_arg_parser(): parser = argparse.ArgumentParser(description='Trains the HMM classifier') parser.add_argument("-...
#!/usr/bin/python # -*- coding: utf-8 -*- # 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. # # This progra...
#!/usr/bin/env python3 # -*- coding: UTF-8 -*- # ----------------------------------------------------------------------------- # # P A G E B O T N A N O # # Copyright (c) 2020+ Buro Petr van Blokland + Claudia Mens # www.pagebot.io # Licensed under MIT conditions # # Supporting DrawBot, www.drawbot.com # ---...
class hypSyntaxError(Exception): pass class hypFileError(Exception): pass class hypObjectError(Exception): pass
# The Computer Language Benchmarks Game # http://benchmarksgame.alioth.debian.org/ # # originally by Kevin Carson # modified by Tupteq, Fredrik Johansson, and Daniel Nanz # modified by Maciej Fijalkowski # 2to3 import pyjion import timeit import gc def combinations(l): result = [] for x in range(len(l) - 1): ...
# Copyright 2011 OpenStack Foundation # 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 requ...
import logging from django.conf import settings as django_settings from django.contrib.auth import authenticate, get_user_model, login, logout from django.http import Http404, HttpResponse, HttpResponseRedirect from django.utils.decorators import method_decorator from django.views.decorators.cache import never_cache f...
# generated by appcreator from django.conf.urls import url from . import views from . import stats_views app_name = 'archiv' urlpatterns = [ url( r'^match-binary/$', stats_views.MatchBinaryView.as_view(), name='match-binary' ), url( r'^actor/$', views.ActorListView.a...
# -*- coding: utf-8 -*- # 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 # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or...
from django import forms from .models import Comment, Answer class CommentForm(forms.ModelForm): class Meta: model = Comment fields = ('text',) widgets = { #'author':forms.TextInput(attrs={'class':'textinputclass'}), 'text':forms.Textarea(attrs={'class':'editable m...
import sys import unittest from test import support pwd = support.import_module('pwd') class PwdTest(unittest.TestCase): @unittest.skipUnless(hasattr(pwd, 'getpwall'), 'pwd module does not expose getpwall()') def test_values(self): entries = pwd.getpwall() for e in entries: self.ass...
# strip puncuation custom module # 12 / 03 / 2015 # Brandon # https://www.facebook.com/AiiYourBaseRBel0ngToUs """ This program was designed to strip puncuation from a string This program was made by Brandon in February 2015 and was finished in February 2015 If you have any suggestions or want to help contact me at h...
# coding=utf-8 import numpy as np import unittest import pystella as ps # from pystella.rf import band # from pystella.rf.lc import LightCurve # from pystella.util.reader_table import read_table_header_float, table2curves, read_obs_table_header, curves2table __author__ = 'bakl' def lc_create(b, m=-19, dt=0.): n...
# Licensed to the Apache Software Foundation (ASF) under one # or more contributor license agreements. See the NOTICE file # distributed with this work for additional information # regarding copyright ownership. The ASF licenses this file # to you under the Apache License, Version 2.0 (the # "License"); you may not u...
from tensorflow_v2_examples.cli import main def test_main(): main([])
import math import operator from datetime import date, datetime from operator import methodcaller import pandas as pd import pandas.testing as tm import pytest from pytest import param import ibis import ibis.expr.datatypes as dt import ibis.expr.types as ir from ibis import literal as L clickhouse_driver = pytest.i...
#!/usr/bin/env python # -*- coding: utf-8 -*- # Copyright (c) 2009, Giampaolo Rodola'. All rights reserved. # Use of this source code is governed by a BSD-style license that can be # found in the LICENSE file. """ Notes about unicode handling in psutil ====================================== In psutil these are the A...
# Copyright (c) 2010-2013, 2016 ARM Limited # All rights reserved. # # The license below extends only to copyright in the software and shall # not be construed as granting a license to any other intellectual # property including but not limited to intellectual property relating # to a hardware implementation of the fun...
import random import math from django.shortcuts import render, get_object_or_404 from django.http import JsonResponse from django.contrib.auth.decorators import permission_required from django.db.models import Q from django.shortcuts import redirect, reverse from django.utils import timezone from mittab.apps.tab.help...
import sys import traceback import uuid import os import importlib import yaml import subprocess import cProfile import io import pstats import logging import asyncio import appdaemon.utils as utils from appdaemon.appdaemon import AppDaemon class AppManagement: def __init__(self, ad: AppDaemon, config): ...
from statsmodels.compat.pandas import assert_frame_equal, make_dataframe from datetime import datetime import numpy as np from numpy.testing import (assert_almost_equal, assert_equal, assert_allclose, assert_raises, assert_) from numpy import array, column_stack from statsmodels.tsa.filters...
#!/usr/bin/env python from __future__ import division, print_function import os import sys from io import BytesIO, IOBase if sys.version_info[0] < 3: from __builtin__ import xrange as range from future_builtins import ascii, filter, hex, map, oct, zip def main(): pass # region fastio BUFSIZE = 8192 ...
#!/usr/bin/env python3 import xmlrpc.client import os, sys, shutil, json, subprocess, time, yara, hashlib, datetime, requests, magic, redis, socket, pefile from pathlib import Path from pymongo import MongoClient from rq import get_current_job, Queue from read_avclass_report import run_avclass from redis import Redis ...
# Copyright (C) 2019 The Raphielscape Company LLC. # # Licensed under the Raphielscape Public License, Version 1.d (the "License"); # you may not use this file except in compliance with the License. # # Ported for Lord-Userbot By liualvinas/Alvin from telethon import events from userbot import CMD_HANDLER as cmd from...
# -*- coding: utf-8 -*- # 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 the rights to use, copy, modify, merge, publish, # distribute, sub...
"""Warn about binary operations used as exceptions.""" from __future__ import print_function try: pass except Exception or BaseException: # [binary-op-exception] print("caught1") except Exception and BaseException: # [binary-op-exception] print("caught2") except Exception or BaseException: # [binary-op-e...
import importlib from collections import OrderedDict from django.conf import settings class ProviderRegistry(object): def __init__(self): self.provider_map = OrderedDict() self.loaded = False def get_list(self, request=None): self.load() return [provider_cls(request) for prov...
#!/usr/bin/env python """Module to deal with halos, to be used with HaloMaker. This module is heavily inspired by the set of IDL routines originally found in the Ramses Analysis ToolSuite (RATS). TODO: Some more documentation """ import numpy as np import pandas as pd import yt from yt.utilities.logger import ytLo...
from PIL import Image from django.conf import settings from . import forms, recognition from . import utils from . import models from django.shortcuts import render, redirect from django.contrib import admin from django.core.mail import send_mail from django.http import JsonResponse from django.views.decorators.csrf im...
from setuptools import setup import sys import os if sys.version_info.major < 3: raise Exception("python3 is required to run this script") # also cleanup the info.json file before building if os.path.exists('totpauth/database/info.json'): os.remove('totpauth/database/info.json') open('totpauth/database/info.json'...
from . import * class Album(Base): __tablename__ = "album_view" id = Column(Integer, primary_key=True) fullname = Column(Text) name = Column(Text) prefix = Column(Text)
class Solution: def invalidTransactions(self, transactions): helper = [] helper_back = [] for transaction in transactions: tmp_transaction = transaction.split(",") helper.append(tmp_transaction) for record in helper: if int(record[2]) > 1000: ...
# flake8: noqa import os from tempfile import TemporaryDirectory from pytest import mark import torch from torch import nn, optim from torch.nn import functional as F from torch.utils.data import DataLoader from catalyst import dl from catalyst.contrib.datasets import MNIST from catalyst.data import ToTensor from ca...
import json import requests import pprint def api_get_request(url): # In this exercise, you want to call the last.fm API to get a list of the # top artists in Spain. # # Once you've done this, return the name of the number 1 top artist in Spain. data = requests.get(url).text data = json.loads(d...
from infynipy.models.group import ReferrerGroup from .. import IntegrationTest, vcrr class TestReferrerGroup(IntegrationTest): @vcrr.use_cassette def test_referrer_group_get_multiple(self): for group in self.infynity.referrer_groups: assert isinstance(group, ReferrerGroup) @vcrr.use_...
# Copyright 2022 The TensorFlow Authors. All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applica...
#!/usr/bin/python3 # ------------------------------------------------------------------------------ """@package ble_lights.py Sets the attached light values and notifies when they change. """ # ------------------------------------------------------------------------------ # Kris Dunning ippie52@gmail....
# Copyright 2018-present Kensho Technologies, LLC. import six from ..blocks import Filter, GlobalOperationsStart from ..ir_lowering_common import (extract_optional_location_root_info, extract_simple_optional_location_info, lower_context_field_existenc...
# -*- coding: utf-8 -*- r""" `p`-adic `L`-functions of elliptic curves To an elliptic curve `E` over the rational numbers and a prime `p`, one can associate a `p`-adic L-function; at least if `E` does not have additive reduction at `p`. This function is defined by interpolation of L-values of `E` at twists. Through th...
#!/usr/bin/python import monkDebug as debug import sys import monkTools import re ## ## @brief Transcode: ## [http://votre_site.con] => http://votre_site.con ## [http://votre_site.con | text displayed] => text displayed ## [http://votre_site.con text displayed] => text displayed. ## ## @param[in] value String to tra...
#!/usr/bin/python import numpy as np from scipy import signal class RandomMapGenerator(): def __init__(self,size=(5,6)): self.initialize_thresh = 0.5 self.size = size def initialize(self): self.map = np.random.random(self.size) super_thresh_indices = self.map >= self.initial...
#!/usr/bin/env python # -*- coding: utf-8 -*- # # This file is part of Karesansui Core. # # Copyright (C) 2009-2012 HDE, Inc. # # 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 restric...
# --------------------------------------------------------------------- # Interface Classification Rules models # --------------------------------------------------------------------- # Copyright (C) 2007-2020 The NOC Project # See LICENSE for details # ------------------------------------------------------------------...
import time import hashlib import torch from torch_geometric.data import DataLoader from cgl.utils.params import ParamDict from cgl.data.graph_data import CircuitInMemDataset, CircuitGraphDataset # from cgl.models.gnn import DeepGENNet s = time.time() print('Loading the dataset ...') root = '/store/nosnap/results/n...
# -*- coding: utf-8 -*- # Copyright (c) 2016-2019 by University of Kassel and Fraunhofer Institute for Energy Economics # and Energy System Technology (IEE), Kassel. All rights reserved. import math import numpy as np import pandas as pd from packaging import version from collections.abc import Iterable from panda...
# -*- coding: utf-8 -*- import pytest import os import numpy as np import pandas as pd from pandas.testing import assert_frame_equal, assert_series_equal import numpy.testing as npt from numpy.linalg import norm, lstsq from numpy.random import randn from flaky import flaky from lifelines import CoxPHFitter, WeibullA...
#!/usr/bin/env python # -*- coding: utf-8 -*- import sys import os import ctypes import platform import cgi import re import hashlib import stat import codecs import common.print_color environment_check_shm = None global_opts = None global_cahce = dict(id_offset=0, services_type=[]) server_opts = None server_name = '...
import keyboard from utils.custom_mouse import mouse from char import IChar from pather import Pather from logger import Logger from screen import convert_abs_to_monitor, convert_screen_to_abs, grab from config import Config from utils.misc import wait, rotate_vec, unit_vector import random from pather import Location,...
import copy import math import numpy as np from tqdm import tqdm from utils.model_util import triad_to_matrix, nonzero_user_mean, nonzero_item_mean # 相似度计算库 from scipy.stats import pearsonr from sklearn.metrics.pairwise import cosine_similarity class IPCCModel(object): def __init__(self) -> None: super()...
from date_class import Date def test_init_repr(day, month, year): obj = Date(day, month, year) print(obj) def test_get_day(d, m, y): obj = Date(d, m, y) print(obj.get_day()) def test_set_day(d, m, y, day): obj = Date(d, m, y) obj.set_day(day) print(obj) def test_get_month(d, m, y): ...
# Copyright (c) 2015 Riverbed Technology, Inc. # # This software is licensed under the terms and conditions of the MIT License # accompanying the software ("License"). This software is distributed "AS IS" # as set forth in the License. class NetSharkException(Exception): pass
#!/usr/local/bin/python ############################################################# # Simple MD of Lennard Jones charged or uncharged particles # # Alexandre Bonvin, Aalt Jan van Dijk, Utrecht University # # Updated to a singular script with a modern look by Douwe # # Schulte, Utrecht University (2022) ...
import os from setuptools import setup, find_packages version = '0.2.5.2' description = "A command-line interface to the GitHub Issues API v2." cur_dir = os.path.dirname(__file__) try: long_description = open(os.path.join(cur_dir, 'README.rst')).read() except: long_description = description setup( name =...