index int64 | repo_name string | branch_name string | path string | content string | import_graph string |
|---|---|---|---|---|---|
81,954 | helloworldC2/VirtualRobot | refs/heads/master | /RobotAI.py | import pygame
import Entity
import Tile
import Keyboard
import random
import scoring
class RobotAI(Entity.Entity):
def __init__(self,level, x, y,destination,speed,health):
super(RobotAI,self).__init__(level,x,y)
self.destinations = destination
self.isSwimming = False
self.isMoving = False
self.img = ... | {"/Sounds.py": ["/Game.py"], "/CocktailSort.py": ["/Jobs.py"], "/Robot_Skin_selector.py": ["/Game.py"], "/leaderboardMenu.py": ["/cursor.py", "/gui.py", "/Game.py", "/LeaderboardClient.py"], "/porc/util.py": ["/lucenequerybuilder/__init__.py"], "/InsertionSort.py": ["/Jobs.py"], "/BogoSort.py": ["/Jobs.py"], "/Play.py"... |
81,955 | helloworldC2/VirtualRobot | refs/heads/master | /SorterRobot.py | import pygame
import Entity
import Tile
import Keyboard
import random
import scoring
import Jobs
import BubbleSort
import HeapSort
import BogoSort
import GeneticSort
import CocktailSort
#import mergeSort
class SorterRobot(Entity.Entity):
def __init__(self,level, x, y):
super(SorterRobot,self).__init__(level,x,y... | {"/Sounds.py": ["/Game.py"], "/CocktailSort.py": ["/Jobs.py"], "/Robot_Skin_selector.py": ["/Game.py"], "/leaderboardMenu.py": ["/cursor.py", "/gui.py", "/Game.py", "/LeaderboardClient.py"], "/porc/util.py": ["/lucenequerybuilder/__init__.py"], "/InsertionSort.py": ["/Jobs.py"], "/BogoSort.py": ["/Jobs.py"], "/Play.py"... |
81,956 | helloworldC2/VirtualRobot | refs/heads/master | /Play.py | import cursor
from cursor import *
import pygame
from pygame.locals import *
import sys
import Game
import gui
def playMenu(display) :
bg = pygame.image.load("menu/wallpaper.jpg")
#bg = pygame.transform.scale(bg,(1107,700))
bgpart = pygame.image.load("menu/bgpart.jpg")
robot = pygame.image.load("r... | {"/Sounds.py": ["/Game.py"], "/CocktailSort.py": ["/Jobs.py"], "/Robot_Skin_selector.py": ["/Game.py"], "/leaderboardMenu.py": ["/cursor.py", "/gui.py", "/Game.py", "/LeaderboardClient.py"], "/porc/util.py": ["/lucenequerybuilder/__init__.py"], "/InsertionSort.py": ["/Jobs.py"], "/BogoSort.py": ["/Jobs.py"], "/Play.py"... |
81,957 | helloworldC2/VirtualRobot | refs/heads/master | /porc/resource.py | from . import util
import json
import requests
from .response import Response
import copy
from requests_futures.sessions import FuturesSession
try:
# python 2
from urllib import quote
except ImportError:
# python 3
from urllib.parse import quote
class Resource(object):
def __init__(self, uri, use... | {"/Sounds.py": ["/Game.py"], "/CocktailSort.py": ["/Jobs.py"], "/Robot_Skin_selector.py": ["/Game.py"], "/leaderboardMenu.py": ["/cursor.py", "/gui.py", "/Game.py", "/LeaderboardClient.py"], "/porc/util.py": ["/lucenequerybuilder/__init__.py"], "/InsertionSort.py": ["/Jobs.py"], "/BogoSort.py": ["/Jobs.py"], "/Play.py"... |
81,958 | helloworldC2/VirtualRobot | refs/heads/master | /porc/pages.py | from .resource import Resource
from collections import Iterator
import copy
try:
# python 2
from urllib import quote
except ImportError:
# python 3
from urllib.parse import quote
class Pages(Iterator):
def __init__(self, opts, url, path, params):
if isinstance(path, list):
pag... | {"/Sounds.py": ["/Game.py"], "/CocktailSort.py": ["/Jobs.py"], "/Robot_Skin_selector.py": ["/Game.py"], "/leaderboardMenu.py": ["/cursor.py", "/gui.py", "/Game.py", "/LeaderboardClient.py"], "/porc/util.py": ["/lucenequerybuilder/__init__.py"], "/InsertionSort.py": ["/Jobs.py"], "/BogoSort.py": ["/Jobs.py"], "/Play.py"... |
81,959 | helloworldC2/VirtualRobot | refs/heads/master | /Tile.py | #import RobotAI
import pygame
import random
import scoring
import Config
import EmailClient
import threading
import gui
import Sounds
"""
Global list of tile objects
"""
tiles = []
"""
Class to hold the attributes of tiles
"""
class Tile(object):
"""Constructor for tile class
@Params:
... | {"/Sounds.py": ["/Game.py"], "/CocktailSort.py": ["/Jobs.py"], "/Robot_Skin_selector.py": ["/Game.py"], "/leaderboardMenu.py": ["/cursor.py", "/gui.py", "/Game.py", "/LeaderboardClient.py"], "/porc/util.py": ["/lucenequerybuilder/__init__.py"], "/InsertionSort.py": ["/Jobs.py"], "/BogoSort.py": ["/Jobs.py"], "/Play.py"... |
81,960 | helloworldC2/VirtualRobot | refs/heads/master | /camera.py | import Keyboard
class void:
def __init__(self,i):
self.x = 0
self.y = 0
return
def tick(self):
if self.x>=0 and self.y>=0 and self.x<=32*32 - 800 and self.y<=32*32 - 600:
if Keyboard.keys['w']:
self.y-=2
if Keyboard.keys['s']:
self.y+=2
if Keyboard.k... | {"/Sounds.py": ["/Game.py"], "/CocktailSort.py": ["/Jobs.py"], "/Robot_Skin_selector.py": ["/Game.py"], "/leaderboardMenu.py": ["/cursor.py", "/gui.py", "/Game.py", "/LeaderboardClient.py"], "/porc/util.py": ["/lucenequerybuilder/__init__.py"], "/InsertionSort.py": ["/Jobs.py"], "/BogoSort.py": ["/Jobs.py"], "/Play.py"... |
81,961 | helloworldC2/VirtualRobot | refs/heads/master | /textfield.py | # -*- coding: cp1252 -*-
import pygame
import sys
from pygame.locals import *
class textField :
def __init__(self,canvas,(x,y),(hossz,magassag),s,betumeret):
self.disp = canvas
self.posX = x
self.posY = y
self.fontY = y
self.w = hossz
self.h = magassag
self.... | {"/Sounds.py": ["/Game.py"], "/CocktailSort.py": ["/Jobs.py"], "/Robot_Skin_selector.py": ["/Game.py"], "/leaderboardMenu.py": ["/cursor.py", "/gui.py", "/Game.py", "/LeaderboardClient.py"], "/porc/util.py": ["/lucenequerybuilder/__init__.py"], "/InsertionSort.py": ["/Jobs.py"], "/BogoSort.py": ["/Jobs.py"], "/Play.py"... |
81,962 | helloworldC2/VirtualRobot | refs/heads/master | /lucenequerybuilder/tests.py | from lucenequerybuilder import Q
def test_lol():
a = 'a'
b = 'b'
c = 'c'
d = 'd d'
e = 'e'
f = 'f'
g = 1
h = 5
q1 = Q(a) | Q(b)
print repr(str(q1))
assert str(q1) == '('+a+' OR '+b+')'
q2 = Q(c) & q1
print q2
assert str(q2) == '('+c+' AND ('+a+' OR '+b+'))'
q... | {"/Sounds.py": ["/Game.py"], "/CocktailSort.py": ["/Jobs.py"], "/Robot_Skin_selector.py": ["/Game.py"], "/leaderboardMenu.py": ["/cursor.py", "/gui.py", "/Game.py", "/LeaderboardClient.py"], "/porc/util.py": ["/lucenequerybuilder/__init__.py"], "/InsertionSort.py": ["/Jobs.py"], "/BogoSort.py": ["/Jobs.py"], "/Play.py"... |
81,963 | helloworldC2/VirtualRobot | refs/heads/master | /porc/__init__.py | from .version import VERSION
__version__ = VERSION
from .client import Client
from .pages import Pages
from .patch import Patch
from .resource import Resource
from .response import Response
from . import util
| {"/Sounds.py": ["/Game.py"], "/CocktailSort.py": ["/Jobs.py"], "/Robot_Skin_selector.py": ["/Game.py"], "/leaderboardMenu.py": ["/cursor.py", "/gui.py", "/Game.py", "/LeaderboardClient.py"], "/porc/util.py": ["/lucenequerybuilder/__init__.py"], "/InsertionSort.py": ["/Jobs.py"], "/BogoSort.py": ["/Jobs.py"], "/Play.py"... |
81,964 | helloworldC2/VirtualRobot | refs/heads/master | /porc/setup.py | from setuptools import setup
import os
def read(*rnames):
return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
setup(
name='lucene-querybuilder',
version='0.1.2',
author='Edd Purcell',
author_email='epurcell3@gatech.edu',
maintainer='Matt Luongo',
maintainer_email='mhlu... | {"/Sounds.py": ["/Game.py"], "/CocktailSort.py": ["/Jobs.py"], "/Robot_Skin_selector.py": ["/Game.py"], "/leaderboardMenu.py": ["/cursor.py", "/gui.py", "/Game.py", "/LeaderboardClient.py"], "/porc/util.py": ["/lucenequerybuilder/__init__.py"], "/InsertionSort.py": ["/Jobs.py"], "/BogoSort.py": ["/Jobs.py"], "/Play.py"... |
81,965 | helloworldC2/VirtualRobot | refs/heads/master | /Packet.py | import time,string
class Packet(object):
packetID =-1
def __init__(self,iD):
self.packetID==iD
def getID(self, data):
return data[:2]
def readData(self, data):
return data[2:len(data)]
def writeData(self,server):
server.sendDataToAllClients(self.getData())
def writeDataToServer(self,client):
cli... | {"/Sounds.py": ["/Game.py"], "/CocktailSort.py": ["/Jobs.py"], "/Robot_Skin_selector.py": ["/Game.py"], "/leaderboardMenu.py": ["/cursor.py", "/gui.py", "/Game.py", "/LeaderboardClient.py"], "/porc/util.py": ["/lucenequerybuilder/__init__.py"], "/InsertionSort.py": ["/Jobs.py"], "/BogoSort.py": ["/Jobs.py"], "/Play.py"... |
81,966 | helloworldC2/VirtualRobot | refs/heads/master | /AStarWorker.py | import socket
import Tile
import math
import time
from Node import *
def getTile(x,y):
global width,height,tiles
if 0 > x or x >= width or 0 > y or y >= height:
return Tile.void
return Tile.tiles[tiles[x + y * width]]
def getDistance(a,b):
dx = a[0] - b[0]
dy = a[1] - b[1]
return mat... | {"/Sounds.py": ["/Game.py"], "/CocktailSort.py": ["/Jobs.py"], "/Robot_Skin_selector.py": ["/Game.py"], "/leaderboardMenu.py": ["/cursor.py", "/gui.py", "/Game.py", "/LeaderboardClient.py"], "/porc/util.py": ["/lucenequerybuilder/__init__.py"], "/InsertionSort.py": ["/Jobs.py"], "/BogoSort.py": ["/Jobs.py"], "/Play.py"... |
81,967 | helloworldC2/VirtualRobot | refs/heads/master | /porc/client.py | from datetime import datetime
from .resource import Resource
from .version import VERSION
from .pages import Pages
from .patch import Patch
from . import util
class Client(Resource):
def __init__(self, api_key, custom_url=None, use_async=False, **kwargs):
self.api_key = api_key
self.url = custom_... | {"/Sounds.py": ["/Game.py"], "/CocktailSort.py": ["/Jobs.py"], "/Robot_Skin_selector.py": ["/Game.py"], "/leaderboardMenu.py": ["/cursor.py", "/gui.py", "/Game.py", "/LeaderboardClient.py"], "/porc/util.py": ["/lucenequerybuilder/__init__.py"], "/InsertionSort.py": ["/Jobs.py"], "/BogoSort.py": ["/Jobs.py"], "/Play.py"... |
81,968 | helloworldC2/VirtualRobot | refs/heads/master | /cursor.py | import pygame
_HAND = (
" XX ",
" X..X ",
" X..X ",
" X..X ",
" X..XXXXX ",
" X..X..X.XX ",
" XX X..X..X.X.X ",
"X..XX.........X ",
"X...X.........X ",
" X.....X.X....X ",
" X....X.X....X ",
" X....X.X...X ",
" X...X.X...X ",
" X.......X ",
" X....X.X ... | {"/Sounds.py": ["/Game.py"], "/CocktailSort.py": ["/Jobs.py"], "/Robot_Skin_selector.py": ["/Game.py"], "/leaderboardMenu.py": ["/cursor.py", "/gui.py", "/Game.py", "/LeaderboardClient.py"], "/porc/util.py": ["/lucenequerybuilder/__init__.py"], "/InsertionSort.py": ["/Jobs.py"], "/BogoSort.py": ["/Jobs.py"], "/Play.py"... |
81,969 | helloworldC2/VirtualRobot | refs/heads/master | /GuiHUD.py | import scoring
import pygame
import gui
import Game
import selectBar
from selectBar import *
import Level
from Level import *
import Tile
import EntityTreasure
import Keyboard
from pygame.locals import *
from Image import *
class GuiHUD(object):
def __init__(self,screen):
self.ebg = image(screen,(5,5),... | {"/Sounds.py": ["/Game.py"], "/CocktailSort.py": ["/Jobs.py"], "/Robot_Skin_selector.py": ["/Game.py"], "/leaderboardMenu.py": ["/cursor.py", "/gui.py", "/Game.py", "/LeaderboardClient.py"], "/porc/util.py": ["/lucenequerybuilder/__init__.py"], "/InsertionSort.py": ["/Jobs.py"], "/BogoSort.py": ["/Jobs.py"], "/Play.py"... |
81,970 | helloworldC2/VirtualRobot | refs/heads/master | /selectBar.py | import pygame
from pygame import *
import sys
import TickBox
import textfield
from pygame.locals import *
import Image
import Button
class barItem( Button.button):
def __init__(self,surface,(posX,posY),kep):
self.tf1 = textfield.textField(surface,(30,50),(730,30),'',20)
self.tf2 = textfield.textFie... | {"/Sounds.py": ["/Game.py"], "/CocktailSort.py": ["/Jobs.py"], "/Robot_Skin_selector.py": ["/Game.py"], "/leaderboardMenu.py": ["/cursor.py", "/gui.py", "/Game.py", "/LeaderboardClient.py"], "/porc/util.py": ["/lucenequerybuilder/__init__.py"], "/InsertionSort.py": ["/Jobs.py"], "/BogoSort.py": ["/Jobs.py"], "/Play.py"... |
81,971 | helloworldC2/VirtualRobot | refs/heads/master | /Box.py | import pygame
from pygame import *
import sys
import Image
import Button
class box(object):
def __init__(self,screen,(posX,posY)):
self.canv = screen
self.x = posX
self.y = posY
self.status = 0
return
#detects if mouse is over the box
def collide(self,pos) :
... | {"/Sounds.py": ["/Game.py"], "/CocktailSort.py": ["/Jobs.py"], "/Robot_Skin_selector.py": ["/Game.py"], "/leaderboardMenu.py": ["/cursor.py", "/gui.py", "/Game.py", "/LeaderboardClient.py"], "/porc/util.py": ["/lucenequerybuilder/__init__.py"], "/InsertionSort.py": ["/Jobs.py"], "/BogoSort.py": ["/Jobs.py"], "/Play.py"... |
81,972 | helloworldC2/VirtualRobot | refs/heads/master | /Node.py | class Node(object):
def __init__(self,pos,parent,costSoFar,distanceToEnd):
self.pos = pos
self.parent = parent
self.costSoFar = costSoFar
self.distanceToEnd = distanceToEnd
self.totalCost = distanceToEnd +costSoFar
| {"/Sounds.py": ["/Game.py"], "/CocktailSort.py": ["/Jobs.py"], "/Robot_Skin_selector.py": ["/Game.py"], "/leaderboardMenu.py": ["/cursor.py", "/gui.py", "/Game.py", "/LeaderboardClient.py"], "/porc/util.py": ["/lucenequerybuilder/__init__.py"], "/InsertionSort.py": ["/Jobs.py"], "/BogoSort.py": ["/Jobs.py"], "/Play.py"... |
81,973 | helloworldC2/VirtualRobot | refs/heads/master | /scoring.py | import LeaderboardClient
import Sounds
class Score(object):
"""Initialises the Class "Score"
@Params:
score: the player's score
"""
def __init__(self):
self.score = 0
"""Uses incrementScore from LeaderboardClient
Increases score by 25 points
@Pa... | {"/Sounds.py": ["/Game.py"], "/CocktailSort.py": ["/Jobs.py"], "/Robot_Skin_selector.py": ["/Game.py"], "/leaderboardMenu.py": ["/cursor.py", "/gui.py", "/Game.py", "/LeaderboardClient.py"], "/porc/util.py": ["/lucenequerybuilder/__init__.py"], "/InsertionSort.py": ["/Jobs.py"], "/BogoSort.py": ["/Jobs.py"], "/Play.py"... |
81,974 | helloworldC2/VirtualRobot | refs/heads/master | /Player.py | import math
import Entity
import pygame
import Tile
import Keyboard
import Robot_Skin_selector
import VRClient
import scoring
import Client
import gui
import Sounds
import Duck
import StaticEntity
class Player(Entity.Entity):
def __init__(self,level,username, x, y):
super(Player,self).__init__(level,x,y)
self.x... | {"/Sounds.py": ["/Game.py"], "/CocktailSort.py": ["/Jobs.py"], "/Robot_Skin_selector.py": ["/Game.py"], "/leaderboardMenu.py": ["/cursor.py", "/gui.py", "/Game.py", "/LeaderboardClient.py"], "/porc/util.py": ["/lucenequerybuilder/__init__.py"], "/InsertionSort.py": ["/Jobs.py"], "/BogoSort.py": ["/Jobs.py"], "/Play.py"... |
81,975 | helloworldC2/VirtualRobot | refs/heads/master | /HeapSort.py | import random
import Jobs
def siftDown(l,start, end,jobs,isReversed):
root = start
while root*2+1<=end:
child = root*2+1
swap = root
if not isReversed:
if l[swap] < l[child]:#swap left child to top
swap = child
if child+1 <= end and l[swap] < l[ch... | {"/Sounds.py": ["/Game.py"], "/CocktailSort.py": ["/Jobs.py"], "/Robot_Skin_selector.py": ["/Game.py"], "/leaderboardMenu.py": ["/cursor.py", "/gui.py", "/Game.py", "/LeaderboardClient.py"], "/porc/util.py": ["/lucenequerybuilder/__init__.py"], "/InsertionSort.py": ["/Jobs.py"], "/BogoSort.py": ["/Jobs.py"], "/Play.py"... |
81,976 | helloworldC2/VirtualRobot | refs/heads/master | /VRClient.py | import socket
UDP_IP = "10.27.15.13" #ip of phone, use ifconfog in terminal
UDP_PORT = 1337
print "UDP target IP:", UDP_IP
print "UDP target port:", UDP_PORT
sock = socket.socket(socket.AF_INET, # Internet
socket.SOCK_DGRAM) # UDP
def move(x,y):
data = str(x)+","+str(y)
try:
soc... | {"/Sounds.py": ["/Game.py"], "/CocktailSort.py": ["/Jobs.py"], "/Robot_Skin_selector.py": ["/Game.py"], "/leaderboardMenu.py": ["/cursor.py", "/gui.py", "/Game.py", "/LeaderboardClient.py"], "/porc/util.py": ["/lucenequerybuilder/__init__.py"], "/InsertionSort.py": ["/Jobs.py"], "/BogoSort.py": ["/Jobs.py"], "/Play.py"... |
81,977 | helloworldC2/VirtualRobot | refs/heads/master | /Button.py | import Image
import pygame
class button(Image.image):
def collide(self,pos) :
rect = self.img.get_rect()
if pos[0] >= self.x and pos[0] <=self.x + rect.width and pos[1] >= self.y and pos[1] <= self.y + rect.height :
return 1
else :
return 0
def clicked(self)... | {"/Sounds.py": ["/Game.py"], "/CocktailSort.py": ["/Jobs.py"], "/Robot_Skin_selector.py": ["/Game.py"], "/leaderboardMenu.py": ["/cursor.py", "/gui.py", "/Game.py", "/LeaderboardClient.py"], "/porc/util.py": ["/lucenequerybuilder/__init__.py"], "/InsertionSort.py": ["/Jobs.py"], "/BogoSort.py": ["/Jobs.py"], "/Play.py"... |
81,978 | helloworldC2/VirtualRobot | refs/heads/master | /LeaderboardClient.py | from porc import Client
import random
"""Unscrammbles the fake key
just means the real one isn't on github so we are protected
a bit from scanning bots
@Params:
key (string): the key
@Return:
key (string): unscrammbled key
"""
def slightlyUnscrammbleKey(key):
keyy =""
for i in range(len... | {"/Sounds.py": ["/Game.py"], "/CocktailSort.py": ["/Jobs.py"], "/Robot_Skin_selector.py": ["/Game.py"], "/leaderboardMenu.py": ["/cursor.py", "/gui.py", "/Game.py", "/LeaderboardClient.py"], "/porc/util.py": ["/lucenequerybuilder/__init__.py"], "/InsertionSort.py": ["/Jobs.py"], "/BogoSort.py": ["/Jobs.py"], "/Play.py"... |
81,979 | helloworldC2/VirtualRobot | refs/heads/master | /lucenequerybuilder/__init__.py | __all__ = ['Q']
from query import Q
| {"/Sounds.py": ["/Game.py"], "/CocktailSort.py": ["/Jobs.py"], "/Robot_Skin_selector.py": ["/Game.py"], "/leaderboardMenu.py": ["/cursor.py", "/gui.py", "/Game.py", "/LeaderboardClient.py"], "/porc/util.py": ["/lucenequerybuilder/__init__.py"], "/InsertionSort.py": ["/Jobs.py"], "/BogoSort.py": ["/Jobs.py"], "/Play.py"... |
81,980 | helloworldC2/VirtualRobot | refs/heads/master | /Game.py | import cursor
from cursor import *
import pygame
from pygame.locals import *
import sys
import gui
import Play
import credit
import leaderboardMenu
import Robot_Skin_selector
import random
import Config
import Image
from Image import *
import Button
from Button import *
import TickBox
import textfield
import Sounds
imp... | {"/Sounds.py": ["/Game.py"], "/CocktailSort.py": ["/Jobs.py"], "/Robot_Skin_selector.py": ["/Game.py"], "/leaderboardMenu.py": ["/cursor.py", "/gui.py", "/Game.py", "/LeaderboardClient.py"], "/porc/util.py": ["/lucenequerybuilder/__init__.py"], "/InsertionSort.py": ["/Jobs.py"], "/BogoSort.py": ["/Jobs.py"], "/Play.py"... |
81,981 | helloworldC2/VirtualRobot | refs/heads/master | /credit.py | import cursor
from cursor import *
import pygame
from pygame.locals import *
import sys
import gui
import Game
def creditMenu(display):
bg = pygame.image.load("menu/wallpaper.jpg")
rollingCredit = pygame.image.load("menu/rolling.png").convert_alpha()
back = pygame.image.load("buttons/back.png").convert_al... | {"/Sounds.py": ["/Game.py"], "/CocktailSort.py": ["/Jobs.py"], "/Robot_Skin_selector.py": ["/Game.py"], "/leaderboardMenu.py": ["/cursor.py", "/gui.py", "/Game.py", "/LeaderboardClient.py"], "/porc/util.py": ["/lucenequerybuilder/__init__.py"], "/InsertionSort.py": ["/Jobs.py"], "/BogoSort.py": ["/Jobs.py"], "/Play.py"... |
81,982 | helloworldC2/VirtualRobot | refs/heads/master | /EmailClient.py | import requests
import random
import Config
"""Sends an email to the user to give them more info
about a landmark/treasure they just found
@Params:
email(string): Email address of user
landmark(string): name of landmark/treasure
landmarkImage(string): url to image of landmark/item
land... | {"/Sounds.py": ["/Game.py"], "/CocktailSort.py": ["/Jobs.py"], "/Robot_Skin_selector.py": ["/Game.py"], "/leaderboardMenu.py": ["/cursor.py", "/gui.py", "/Game.py", "/LeaderboardClient.py"], "/porc/util.py": ["/lucenequerybuilder/__init__.py"], "/InsertionSort.py": ["/Jobs.py"], "/BogoSort.py": ["/Jobs.py"], "/Play.py"... |
81,983 | helloworldC2/VirtualRobot | refs/heads/master | /Jobs.py | import SorterRobot
import EntityTreasure
class Job(object):
def __init__(self):
self.jobDone = False
def doneJob(self):
self.jobDone = True
def checkHasDone(self,worker):
return False
def doJob(self,worker):
worker.currentJob = self
#print "doing job"
class ... | {"/Sounds.py": ["/Game.py"], "/CocktailSort.py": ["/Jobs.py"], "/Robot_Skin_selector.py": ["/Game.py"], "/leaderboardMenu.py": ["/cursor.py", "/gui.py", "/Game.py", "/LeaderboardClient.py"], "/porc/util.py": ["/lucenequerybuilder/__init__.py"], "/InsertionSort.py": ["/Jobs.py"], "/BogoSort.py": ["/Jobs.py"], "/Play.py"... |
81,984 | helloworldC2/VirtualRobot | refs/heads/master | /Config.py | """File used to load in config info to be used in the program
"""
"""Variables to be saved and loaded
"""
config = {"email":"",
"receiveEmail":"",
"difficulty":"",
"numAI":"",
"name":"",
}
"""Loads the config file and stores the data in config(dict)
@Params:
None
@Ret... | {"/Sounds.py": ["/Game.py"], "/CocktailSort.py": ["/Jobs.py"], "/Robot_Skin_selector.py": ["/Game.py"], "/leaderboardMenu.py": ["/cursor.py", "/gui.py", "/Game.py", "/LeaderboardClient.py"], "/porc/util.py": ["/lucenequerybuilder/__init__.py"], "/InsertionSort.py": ["/Jobs.py"], "/BogoSort.py": ["/Jobs.py"], "/Play.py"... |
81,985 | helloworldC2/VirtualRobot | refs/heads/master | /test.py | import cursor
from cursor import *
import pygame
from pygame.locals import *
import sys
import game
import gui
from credit import *
def menu1():
canvas = pygame.display.set_mode((700,700))
canvas.fill((0,0,0))
startButton = pygame.image.load("buttons/start.png").convert_alpha()
leftAr... | {"/Sounds.py": ["/Game.py"], "/CocktailSort.py": ["/Jobs.py"], "/Robot_Skin_selector.py": ["/Game.py"], "/leaderboardMenu.py": ["/cursor.py", "/gui.py", "/Game.py", "/LeaderboardClient.py"], "/porc/util.py": ["/lucenequerybuilder/__init__.py"], "/InsertionSort.py": ["/Jobs.py"], "/BogoSort.py": ["/Jobs.py"], "/Play.py"... |
81,986 | helloworldC2/VirtualRobot | refs/heads/master | /StaticEntity.py | import Entity
import pygame
import Tile
import Keyboard
import random
import Client
import gui
import copy
class StaticEntity(Entity.Entity):
def __init__(self,level, x, y):
super(StaticEntity,self).__init__(level,x,y)
self.x = x
self.y = y
self.id = len(level.entities)
self.basicFont = pygame.font.SysFo... | {"/Sounds.py": ["/Game.py"], "/CocktailSort.py": ["/Jobs.py"], "/Robot_Skin_selector.py": ["/Game.py"], "/leaderboardMenu.py": ["/cursor.py", "/gui.py", "/Game.py", "/LeaderboardClient.py"], "/porc/util.py": ["/lucenequerybuilder/__init__.py"], "/InsertionSort.py": ["/Jobs.py"], "/BogoSort.py": ["/Jobs.py"], "/Play.py"... |
81,987 | bachrc/dg2r-update-daemon | refs/heads/master | /update_daemon/data.py | import base64
import io
import shutil
import traceback
import zipfile
from pathlib import Path
import pickle
from update_daemon.crypto import crypto
class UpdateObject:
def __init__(self, zip, signature, startup, destination_folder, autostart_file):
self.autostart_file = autostart_file
self.de... | {"/update_daemon/daemon.py": ["/update_daemon/gui/frame.py", "/update_daemon/threads.py"], "/update_daemon/threads.py": ["/update_daemon/data.py"], "/update_daemon/gui/frame.py": ["/update_daemon/threads.py"]} |
81,988 | bachrc/dg2r-update-daemon | refs/heads/master | /scripts/key_generation.py | def generate_rsa(passphrase, bits=2048):
"""
Generate an RSA keypair with an exponent of 65537 in PEM format
param: bits The key length in bits
Return private key and public key
"""
from Crypto.PublicKey import RSA
new_key = RSA.generate(bits, e=65537)
public_key = new_key.publickey().e... | {"/update_daemon/daemon.py": ["/update_daemon/gui/frame.py", "/update_daemon/threads.py"], "/update_daemon/threads.py": ["/update_daemon/data.py"], "/update_daemon/gui/frame.py": ["/update_daemon/threads.py"]} |
81,989 | bachrc/dg2r-update-daemon | refs/heads/master | /update_daemon/daemon.py | import argparse
from pathlib import Path
from queue import LifoQueue
import logging
from update_daemon import STATE
from update_daemon.gui.frame import Application
from update_daemon.threads import Update
def path_to_update(path):
path = Path(path)
if not path.is_dir():
raise argparse.ArgumentTypeE... | {"/update_daemon/daemon.py": ["/update_daemon/gui/frame.py", "/update_daemon/threads.py"], "/update_daemon/threads.py": ["/update_daemon/data.py"], "/update_daemon/gui/frame.py": ["/update_daemon/threads.py"]} |
81,990 | bachrc/dg2r-update-daemon | refs/heads/master | /update_daemon/settings.py | seconds_before_reboot = 20
seconds_before_quit = 10
| {"/update_daemon/daemon.py": ["/update_daemon/gui/frame.py", "/update_daemon/threads.py"], "/update_daemon/threads.py": ["/update_daemon/data.py"], "/update_daemon/gui/frame.py": ["/update_daemon/threads.py"]} |
81,991 | bachrc/dg2r-update-daemon | refs/heads/master | /update_daemon/crypto/crypto.py | import os
from Crypto.Hash import SHA512
from Crypto.PublicKey import RSA
from Crypto.Signature import pkcs1_15
def is_file_verified(zip_bytes, signature):
key_file = open("%s/rsa_public.pem" % os.path.dirname(__file__), "r")
key = RSA.importKey(key_file.read())
h = SHA512.new(zip_bytes)
try:
... | {"/update_daemon/daemon.py": ["/update_daemon/gui/frame.py", "/update_daemon/threads.py"], "/update_daemon/threads.py": ["/update_daemon/data.py"], "/update_daemon/gui/frame.py": ["/update_daemon/threads.py"]} |
81,992 | bachrc/dg2r-update-daemon | refs/heads/master | /update_daemon/threads.py | import traceback
from threading import Thread
from time import sleep
import logging
from update_daemon import STATE
from update_daemon.data import UpdateObject
class Update(Thread):
def __init__(self, state, path=None):
super().__init__()
self.state = state
self.path_to_file = path
... | {"/update_daemon/daemon.py": ["/update_daemon/gui/frame.py", "/update_daemon/threads.py"], "/update_daemon/threads.py": ["/update_daemon/data.py"], "/update_daemon/gui/frame.py": ["/update_daemon/threads.py"]} |
81,993 | bachrc/dg2r-update-daemon | refs/heads/master | /update_daemon/STATE.py | DISPLAYING = 0
UPDATING = 1
SUCCESS = 2
ERROR = 3
| {"/update_daemon/daemon.py": ["/update_daemon/gui/frame.py", "/update_daemon/threads.py"], "/update_daemon/threads.py": ["/update_daemon/data.py"], "/update_daemon/gui/frame.py": ["/update_daemon/threads.py"]} |
81,994 | bachrc/dg2r-update-daemon | refs/heads/master | /update_daemon/gui/frame.py | import os
import tkinter as tk
from queue import LifoQueue
from tkinter.font import Font
from PIL import Image, ImageTk
from update_daemon import STATE, settings
from update_daemon.threads import Update
def vertical_gradient_rectangle(canvas, x0, y0, x1, y1, start_red, start_green, start_blue, end_red, end_green, e... | {"/update_daemon/daemon.py": ["/update_daemon/gui/frame.py", "/update_daemon/threads.py"], "/update_daemon/threads.py": ["/update_daemon/data.py"], "/update_daemon/gui/frame.py": ["/update_daemon/threads.py"]} |
81,995 | MordehayM/NICE-Non-Linear-Independent-Components-Estimation | refs/heads/master | /nice.py | """NICE model
"""
import torch
import torch.nn as nn
from torch.distributions.transforms import Transform, SigmoidTransform, AffineTransform
from torch.distributions import Uniform, TransformedDistribution
import numpy as np
get_even = lambda xs: xs[:, 0::2] # step=2 start=0
get_odd = lambda xs: xs[:, 1::2] # ste... | {"/train.py": ["/nice.py"]} |
81,996 | MordehayM/NICE-Non-Linear-Independent-Components-Estimation | refs/heads/master | /train.py | """Training procedure for NICE.
"""
import argparse
import torch, torchvision
from torchvision import transforms
import numpy as np
import nice
import time
import pickle
import matplotlib.pyplot as plt
def train(flow, trainloader, optimizer, epoch, device, sample_shape, filename, train_loss):
running_loss = ... | {"/train.py": ["/nice.py"]} |
81,999 | punkscience/bdaplayer | refs/heads/main | /workers/downloader.py |
from PySide2.QtCore import *
from PySide2.QtGui import *
import requests
import os
class DownloadThread(QThread):
download_complete = Signal(object)
download_update = Signal(object)
def __init__(self, rootWebFolder, fileObj):
QThread.__init__(self)
self.fileObj = fileObj
self.roo... | {"/main.py": ["/workers/downloader.py"]} |
82,000 | punkscience/bdaplayer | refs/heads/main | /main.py | import os
import sys
import json
from datetime import datetime, timedelta
import vlc
import random
import pychromecast
import zeroconf
from PySide2.QtWidgets import QApplication, QDialog, QLineEdit, QPushButton, QVBoxLayout, QHBoxLayout, QListWidget, QProgressBar, QFileDialog
from workers.downloader import DownloadThr... | {"/main.py": ["/workers/downloader.py"]} |
82,002 | mHappah3019/Tick-Counter | refs/heads/main | /TickClass.py | my_dict = {}
class Tick:
ticks_count = 0 # this is supposed to hold the number of ticks we have instanced an object for
def __init__(self, identifier, macro):
self.identifier = identifier # creates an attribute called identifier and assigns to it
# the value of the... | {"/MainApplication.py": ["/csv_wip.py"]} |
82,003 | mHappah3019/Tick-Counter | refs/heads/main | /csv_wip.py | from datetime import datetime #https://stackoverflow.com/questions/15707532/import-datetime-v-s-from-datetime-import-datetime
import csv
import os
os.chdir("C:/Users/mkcam/Desktop/Tick Counter/Tick-Counter")
current_date = datetime.today() #for now current_date can be thought as a global variable too
def skip_last... | {"/MainApplication.py": ["/csv_wip.py"]} |
82,004 | mHappah3019/Tick-Counter | refs/heads/main | /MainApplication.py | from csv_wip import current_date, get_remaining_ms, save_daily_counts, is_same_date, check_count_reset, load_last_date, get_remaining_ms, skip_last
from datetime import datetime
import tkinter as tk
import csv
import os
import sys
#ATTENZIONEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEE
#https://stackoverflow.com/questions... | {"/MainApplication.py": ["/csv_wip.py"]} |
82,005 | mHappah3019/Tick-Counter | refs/heads/main | /info_add_template.py | import tkinter as tk
# Create a new window with the title "Address Entry Form"
window = tk.Tk()
window.title("Address Entry Form")
# Create a new frame `frm_form` to contain the Label
# and Entry widgets for entering address information.
frm_form = tk.Frame(relief=tk.SUNKEN, borderwidth=3)
# Pack the frame into the w... | {"/MainApplication.py": ["/csv_wip.py"]} |
82,021 | siauPatrick/seimur | refs/heads/master | /config/settings.py | from os.path import normpath, join, abspath
import logging
logging.basicConfig(level=logging.DEBUG)
ROOT_DIR = normpath(join(abspath(__file__), '../../'))
DATABASE = normpath(join(ROOT_DIR, './training_pairs'))
STATIC_ROOT = normpath(join(ROOT_DIR, './gui/build'))
| {"/pair/views.py": ["/pair/model.py"], "/app.py": ["/pair/views.py"]} |
82,022 | siauPatrick/seimur | refs/heads/master | /config/gunicorn.py | from os import mkdir
from os.path import normpath, join, abspath, isdir
import multiprocessing
SRC_DIR = normpath(join(abspath(__file__), '../../'))
LOG_DIR = normpath(join(SRC_DIR, '../logs'))
if not isdir(LOG_DIR):
mkdir(LOG_DIR)
bind = 'unix:{}'.format(normpath(join(SRC_DIR, '../seimur.sock')))
worker_class ... | {"/pair/views.py": ["/pair/model.py"], "/app.py": ["/pair/views.py"]} |
82,023 | siauPatrick/seimur | refs/heads/master | /pair/views.py | from datetime import datetime
from aiohttp import web
from pair.model import get_pair_list, get_pair, set_pair_label
class IndexView(web.View):
async def get(self):
body = """
<head>
<meta charset="UTF-8">
<title>Seimur</title>
<link rel="stylesheet" href="/static/s... | {"/pair/views.py": ["/pair/model.py"], "/app.py": ["/pair/views.py"]} |
82,024 | siauPatrick/seimur | refs/heads/master | /pair/model.py | from datetime import datetime
import json
import pickle
from aiohttp import web
def _unpickle_pairs():
with open('training_pairs', 'rb') as f:
return pickle.load(f)
def _pickle_pairs(pairs):
with open('training_pairs', 'wb') as f:
pickle.dump(pairs, f, pickle.HIGHEST_PROTOCOL)
def _pair_k... | {"/pair/views.py": ["/pair/model.py"], "/app.py": ["/pair/views.py"]} |
82,025 | siauPatrick/seimur | refs/heads/master | /app.py | from aiohttp import web
from config import settings
from pair.views import IndexView, PairListCreateAPIView, PairRetrieveUpdateAPIView
def init_func(*argv):
app = web.Application()
app.router.add_route('GET', '/', IndexView)
app.router.add_route('GET', '/pairs', IndexView)
app.router.add_route('GET',... | {"/pair/views.py": ["/pair/model.py"], "/app.py": ["/pair/views.py"]} |
82,026 | siauPatrick/seimur | refs/heads/master | /commands/convert_pairs.py | from collections import OrderedDict
from os.path import basename
from urllib.parse import urlparse
import json
import pickle
from fuzzywuzzy import fuzz
from pyspark import SparkContext
from pyspark.mllib.classification import LogisticRegressionWithSGD
from pyspark.mllib.evaluation import BinaryClassificationMetrics
f... | {"/pair/views.py": ["/pair/model.py"], "/app.py": ["/pair/views.py"]} |
82,027 | siauPatrick/seimur | refs/heads/master | /training_pairs.py | import json
import pickle
line_numbers = [
294378, 177867, 453715, 618294, 750420, 1155918, 1365732, 255018, 847438, 474500, 685866, 1838623, 987469, 585160,
1523323, 999994, 1379651, 1844557, 985440, 925176, 1357101, 564640, 1290841, 998935, 1307367, 1721690, 1537013,
1115831, 1091258, 978230, 946389, 901... | {"/pair/views.py": ["/pair/model.py"], "/app.py": ["/pair/views.py"]} |
82,063 | Kvatsx/Solve-for-tomorrow-hotels | refs/heads/master | /hotels/settings.py | import os
# SQLALCHEMY_DATABASE_URI = os.environ['DATABASE_URL']
SECRET_KEY = os.environ.get('SECRET_KEY') or 'you-will-never-guess' | {"/hotels/routes.py": ["/hotels/__init__.py"], "/hotels/__init__.py": ["/hotels/routes.py"]} |
82,064 | Kvatsx/Solve-for-tomorrow-hotels | refs/heads/master | /hotels/models.py | from hotels.db import db
class User(db.Model):
__tablename__ = "user"
id = db.Column(db.Integer, primary_key=True)
fullName = db.Column(db.String, nullable=False)
emailID = db.Column(db.String, nullable=False)
password = db.Column(db.String, nullable=False)
wishlist = db.relationship('W... | {"/hotels/routes.py": ["/hotels/__init__.py"], "/hotels/__init__.py": ["/hotels/routes.py"]} |
82,065 | Kvatsx/Solve-for-tomorrow-hotels | refs/heads/master | /hotels/imports.py | from sqlalchemy import create_engine
from sqlalchemy.orm import scoped_session, sessionmaker
engine = create_engine("postgres://cuhpqttlfncjia:ab42abc2241221dcd463d198a2c561fe0d1398137ac9945c1c749c5a932a088d@ec2-52-204-232-46.compute-1.amazonaws.com:5432/d2qn5k3635hjih")
db = scoped_session(sessionmaker(bind=engin... | {"/hotels/routes.py": ["/hotels/__init__.py"], "/hotels/__init__.py": ["/hotels/routes.py"]} |
82,066 | Kvatsx/Solve-for-tomorrow-hotels | refs/heads/master | /hotels/routes.py | from flask import Flask, session, render_template, request, redirect, url_for, abort, jsonify, flash
from flask_session import Session
from hotels import app
# from hotels.models import *
from addict import Dict
from sqlalchemy import create_engine
from sqlalchemy.orm import scoped_session, sessionmaker
from .getHote... | {"/hotels/routes.py": ["/hotels/__init__.py"], "/hotels/__init__.py": ["/hotels/routes.py"]} |
82,067 | Kvatsx/Solve-for-tomorrow-hotels | refs/heads/master | /hotels/__init__.py | from flask import Flask
app = Flask(__name__)
# app.config["SQLALCHEMY_DATABASE_URI"] = ""
import hotels.routes
if __name__ == '__main__':
app.run(debug=True)
| {"/hotels/routes.py": ["/hotels/__init__.py"], "/hotels/__init__.py": ["/hotels/routes.py"]} |
82,068 | dicara/flask-app | refs/heads/master | /bioweb_api/utilities/bio_utilities.py | '''
Copyright 2014 Bio-Rad Laboratories, 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 writi... | {"/bioweb_api/controller.py": ["/bioweb_api/__init__.py", "/bioweb_api/apis/ApiManager.py", "/bioweb_api/apis/ApiConstants.py", "/bioweb_api/utilities/logging_utilities.py"], "/bioweb_api/tests/test_utils.py": ["/bioweb_api/apis/ApiConstants.py"], "/bioweb_api/apis/dye_profiles_database/datastore/profiles.py": ["/biowe... |
82,069 | dicara/flask-app | refs/heads/master | /bioweb_api/apis/probe_design/ProbeExperimentDeleteFunction.py | '''
Copyright 2014 Bio-Rad Laboratories, 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 writi... | {"/bioweb_api/controller.py": ["/bioweb_api/__init__.py", "/bioweb_api/apis/ApiManager.py", "/bioweb_api/apis/ApiConstants.py", "/bioweb_api/utilities/logging_utilities.py"], "/bioweb_api/tests/test_utils.py": ["/bioweb_api/apis/ApiConstants.py"], "/bioweb_api/apis/dye_profiles_database/datastore/profiles.py": ["/biowe... |
82,070 | dicara/flask-app | refs/heads/master | /bioweb_api/apis/predator_file_generator/PredatorFileGeneratorPostFunction.py | '''
Copyright 2017 Bio-Rad Laboratories, 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 writi... | {"/bioweb_api/controller.py": ["/bioweb_api/__init__.py", "/bioweb_api/apis/ApiManager.py", "/bioweb_api/apis/ApiConstants.py", "/bioweb_api/utilities/logging_utilities.py"], "/bioweb_api/tests/test_utils.py": ["/bioweb_api/apis/ApiConstants.py"], "/bioweb_api/apis/dye_profiles_database/datastore/profiles.py": ["/biowe... |
82,071 | dicara/flask-app | refs/heads/master | /bioweb_api/controller.py | '''
Copyright 2014 Bio-Rad Laboratories, 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 writi... | {"/bioweb_api/controller.py": ["/bioweb_api/__init__.py", "/bioweb_api/apis/ApiManager.py", "/bioweb_api/apis/ApiConstants.py", "/bioweb_api/utilities/logging_utilities.py"], "/bioweb_api/tests/test_utils.py": ["/bioweb_api/apis/ApiConstants.py"], "/bioweb_api/apis/dye_profiles_database/datastore/profiles.py": ["/biowe... |
82,072 | dicara/flask-app | refs/heads/master | /bioweb_api/apis/drop_tools/library_generation_utilities.py | from collections import OrderedDict, Counter
import itertools
from matplotlib import pyplot as plt
import numpy
from scipy.spatial import distance
from bioweb_api import HOSTNAME
from bioweb_api.utilities.logging_utilities import APP_LOGGER
from profile_database.datastore import Datastore
from profile_database.consta... | {"/bioweb_api/controller.py": ["/bioweb_api/__init__.py", "/bioweb_api/apis/ApiManager.py", "/bioweb_api/apis/ApiConstants.py", "/bioweb_api/utilities/logging_utilities.py"], "/bioweb_api/tests/test_utils.py": ["/bioweb_api/apis/ApiConstants.py"], "/bioweb_api/apis/dye_profiles_database/datastore/profiles.py": ["/biowe... |
82,073 | dicara/flask-app | refs/heads/master | /bioweb_api/tests/test_utils.py | '''
Copyright 2014 Bio-Rad Laboratories, 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 writi... | {"/bioweb_api/controller.py": ["/bioweb_api/__init__.py", "/bioweb_api/apis/ApiManager.py", "/bioweb_api/apis/ApiConstants.py", "/bioweb_api/utilities/logging_utilities.py"], "/bioweb_api/tests/test_utils.py": ["/bioweb_api/apis/ApiConstants.py"], "/bioweb_api/apis/dye_profiles_database/datastore/profiles.py": ["/biowe... |
82,074 | dicara/flask-app | refs/heads/master | /bioweb_api/apis/dye_profiles_database/datastore/profiles.py | from bioweb_api.DbConnector import DbConnector
from bioweb_api.apis.dye_profiles_database.constants import DYE_STOCK_UUID, DETECTION_UUID, \
CONCENTRATION_UGML, PROFILE, PEAK_INTENSITY, PROFILES_COLLECTION
class Profiles(object):
"""
A container for Profile objects. Used to check database for
redunda... | {"/bioweb_api/controller.py": ["/bioweb_api/__init__.py", "/bioweb_api/apis/ApiManager.py", "/bioweb_api/apis/ApiConstants.py", "/bioweb_api/utilities/logging_utilities.py"], "/bioweb_api/tests/test_utils.py": ["/bioweb_api/apis/ApiConstants.py"], "/bioweb_api/apis/dye_profiles_database/datastore/profiles.py": ["/biowe... |
82,075 | dicara/flask-app | refs/heads/master | /bioweb_api/apis/ApiConstants.py | '''
Copyright 2014 Bio-Rad Laboratories, 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 writi... | {"/bioweb_api/controller.py": ["/bioweb_api/__init__.py", "/bioweb_api/apis/ApiManager.py", "/bioweb_api/apis/ApiConstants.py", "/bioweb_api/utilities/logging_utilities.py"], "/bioweb_api/tests/test_utils.py": ["/bioweb_api/apis/ApiConstants.py"], "/bioweb_api/apis/dye_profiles_database/datastore/profiles.py": ["/biowe... |
82,076 | dicara/flask-app | refs/heads/master | /bioweb_api/apis/image/ImageApiHelperFunctions.py | import os
import tarfile
import tempfile
from bioweb_api.apis.ApiConstants import VALID_HAM_IMAGE_EXTENSIONS
from bioweb_api.apis.ApiConstants import VALID_MON_IMAGE_EXTENSIONS
from bioweb_api.utilities.io_utilities import silently_remove_tree
def set_tar_permissions(tarinfo):
"""
This function is used as th... | {"/bioweb_api/controller.py": ["/bioweb_api/__init__.py", "/bioweb_api/apis/ApiManager.py", "/bioweb_api/apis/ApiConstants.py", "/bioweb_api/utilities/logging_utilities.py"], "/bioweb_api/tests/test_utils.py": ["/bioweb_api/apis/ApiConstants.py"], "/bioweb_api/apis/dye_profiles_database/datastore/profiles.py": ["/biowe... |
82,077 | dicara/flask-app | refs/heads/master | /bioweb_api/apis/drop_tools/drop_size_utilities.py | import itertools
import numpy
from scipy.spatial import distance
from sklearn import mixture
'''
CV_RATIO is the coefficient of variation (CV) scalar to adjust drop size
CV to intensity CV. BKGROUND_STD is the background standard deviation
to account for decomp and spectral noise. Both these values were
calculated ... | {"/bioweb_api/controller.py": ["/bioweb_api/__init__.py", "/bioweb_api/apis/ApiManager.py", "/bioweb_api/apis/ApiConstants.py", "/bioweb_api/utilities/logging_utilities.py"], "/bioweb_api/tests/test_utils.py": ["/bioweb_api/apis/ApiConstants.py"], "/bioweb_api/apis/dye_profiles_database/datastore/profiles.py": ["/biowe... |
82,078 | dicara/flask-app | refs/heads/master | /bioweb_api/apis/primary_analysis/PlotsPostFunction.py | '''
Copyright 2014 Bio-Rad Laboratories, 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 writi... | {"/bioweb_api/controller.py": ["/bioweb_api/__init__.py", "/bioweb_api/apis/ApiManager.py", "/bioweb_api/apis/ApiConstants.py", "/bioweb_api/utilities/logging_utilities.py"], "/bioweb_api/tests/test_utils.py": ["/bioweb_api/apis/ApiConstants.py"], "/bioweb_api/apis/dye_profiles_database/datastore/profiles.py": ["/biowe... |
82,079 | dicara/flask-app | refs/heads/master | /bioweb_api/apis/probe_design/AbsorptionPostFunction.py | '''
Copyright 2014 Bio-Rad Laboratories, 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 writi... | {"/bioweb_api/controller.py": ["/bioweb_api/__init__.py", "/bioweb_api/apis/ApiManager.py", "/bioweb_api/apis/ApiConstants.py", "/bioweb_api/utilities/logging_utilities.py"], "/bioweb_api/tests/test_utils.py": ["/bioweb_api/apis/ApiConstants.py"], "/bioweb_api/apis/dye_profiles_database/datastore/profiles.py": ["/biowe... |
82,080 | dicara/flask-app | refs/heads/master | /bioweb_api/apis/parameters/FloatParameter.py | '''
Copyright 2014 Bio-Rad Laboratories, 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 writi... | {"/bioweb_api/controller.py": ["/bioweb_api/__init__.py", "/bioweb_api/apis/ApiManager.py", "/bioweb_api/apis/ApiConstants.py", "/bioweb_api/utilities/logging_utilities.py"], "/bioweb_api/tests/test_utils.py": ["/bioweb_api/apis/ApiConstants.py"], "/bioweb_api/apis/dye_profiles_database/datastore/profiles.py": ["/biowe... |
82,081 | dicara/flask-app | refs/heads/master | /bioweb_api/execution_engine/ExecutionManager.py | '''
Copyright 2014 Bio-Rad Laboratories, 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 writi... | {"/bioweb_api/controller.py": ["/bioweb_api/__init__.py", "/bioweb_api/apis/ApiManager.py", "/bioweb_api/apis/ApiConstants.py", "/bioweb_api/utilities/logging_utilities.py"], "/bioweb_api/tests/test_utils.py": ["/bioweb_api/apis/ApiConstants.py"], "/bioweb_api/apis/dye_profiles_database/datastore/profiles.py": ["/biowe... |
82,082 | dicara/flask-app | refs/heads/master | /bioweb_api/apis/exp_def/ExpDefGetFunction.py | '''
Copyright 2016 Bio-Rad Laboratories, 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 writi... | {"/bioweb_api/controller.py": ["/bioweb_api/__init__.py", "/bioweb_api/apis/ApiManager.py", "/bioweb_api/apis/ApiConstants.py", "/bioweb_api/utilities/logging_utilities.py"], "/bioweb_api/tests/test_utils.py": ["/bioweb_api/apis/ApiConstants.py"], "/bioweb_api/apis/dye_profiles_database/datastore/profiles.py": ["/biowe... |
82,083 | dicara/flask-app | refs/heads/master | /bioweb_api/apis/image/ImagesPostFunction.py | '''
Copyright 2015 Bio-Rad Laboratories, 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 writi... | {"/bioweb_api/controller.py": ["/bioweb_api/__init__.py", "/bioweb_api/apis/ApiManager.py", "/bioweb_api/apis/ApiConstants.py", "/bioweb_api/utilities/logging_utilities.py"], "/bioweb_api/tests/test_utils.py": ["/bioweb_api/apis/ApiConstants.py"], "/bioweb_api/apis/dye_profiles_database/datastore/profiles.py": ["/biowe... |
82,084 | dicara/flask-app | refs/heads/master | /bioweb_api/apis/image/ReplayImagesPostFunction.py | '''
Copyright 2015 Bio-Rad Laboratories, 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 writi... | {"/bioweb_api/controller.py": ["/bioweb_api/__init__.py", "/bioweb_api/apis/ApiManager.py", "/bioweb_api/apis/ApiConstants.py", "/bioweb_api/utilities/logging_utilities.py"], "/bioweb_api/tests/test_utils.py": ["/bioweb_api/apis/ApiConstants.py"], "/bioweb_api/apis/dye_profiles_database/datastore/profiles.py": ["/biowe... |
82,085 | dicara/flask-app | refs/heads/master | /bioweb_api/apis/primary_analysis/ConvertImagesPostFunction.py | '''
Copyright 2014 Bio-Rad Laboratories, 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 writi... | {"/bioweb_api/controller.py": ["/bioweb_api/__init__.py", "/bioweb_api/apis/ApiManager.py", "/bioweb_api/apis/ApiConstants.py", "/bioweb_api/utilities/logging_utilities.py"], "/bioweb_api/tests/test_utils.py": ["/bioweb_api/apis/ApiConstants.py"], "/bioweb_api/apis/dye_profiles_database/datastore/profiles.py": ["/biowe... |
82,086 | dicara/flask-app | refs/heads/master | /bioweb_api/utilities/logging_utilities.py | '''
Copyright 2014 Bio-Rad Laboratories, 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 writi... | {"/bioweb_api/controller.py": ["/bioweb_api/__init__.py", "/bioweb_api/apis/ApiManager.py", "/bioweb_api/apis/ApiConstants.py", "/bioweb_api/utilities/logging_utilities.py"], "/bioweb_api/tests/test_utils.py": ["/bioweb_api/apis/ApiConstants.py"], "/bioweb_api/apis/dye_profiles_database/datastore/profiles.py": ["/biowe... |
82,087 | dicara/flask-app | refs/heads/master | /bioweb_api/apis/parameters/LowerCaseStringParameter.py | '''
Copyright 2014 Bio-Rad Laboratories, 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 writi... | {"/bioweb_api/controller.py": ["/bioweb_api/__init__.py", "/bioweb_api/apis/ApiManager.py", "/bioweb_api/apis/ApiConstants.py", "/bioweb_api/utilities/logging_utilities.py"], "/bioweb_api/tests/test_utils.py": ["/bioweb_api/apis/ApiConstants.py"], "/bioweb_api/apis/dye_profiles_database/datastore/profiles.py": ["/biowe... |
82,088 | dicara/flask-app | refs/heads/master | /bioweb_api/tests/apis/primary_analysis/test_primary_analysis_api.py | '''
Copyright 2014 Bio-Rad Laboratories, 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 writi... | {"/bioweb_api/controller.py": ["/bioweb_api/__init__.py", "/bioweb_api/apis/ApiManager.py", "/bioweb_api/apis/ApiConstants.py", "/bioweb_api/utilities/logging_utilities.py"], "/bioweb_api/tests/test_utils.py": ["/bioweb_api/apis/ApiConstants.py"], "/bioweb_api/apis/dye_profiles_database/datastore/profiles.py": ["/biowe... |
82,089 | dicara/flask-app | refs/heads/master | /bioweb_api/apis/full_analysis/FullAnalysisDeleteFunction.py | '''
Copyright 2016 Bio-Rad Laboratories, 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 writi... | {"/bioweb_api/controller.py": ["/bioweb_api/__init__.py", "/bioweb_api/apis/ApiManager.py", "/bioweb_api/apis/ApiConstants.py", "/bioweb_api/utilities/logging_utilities.py"], "/bioweb_api/tests/test_utils.py": ["/bioweb_api/apis/ApiConstants.py"], "/bioweb_api/apis/dye_profiles_database/datastore/profiles.py": ["/biowe... |
82,090 | dicara/flask-app | refs/heads/master | /bioweb_api/apis/probe_design/ProbeExperimentGetFunction.py | '''
Copyright 2014 Bio-Rad Laboratories, 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 writi... | {"/bioweb_api/controller.py": ["/bioweb_api/__init__.py", "/bioweb_api/apis/ApiManager.py", "/bioweb_api/apis/ApiConstants.py", "/bioweb_api/utilities/logging_utilities.py"], "/bioweb_api/tests/test_utils.py": ["/bioweb_api/apis/ApiConstants.py"], "/bioweb_api/apis/dye_profiles_database/datastore/profiles.py": ["/biowe... |
82,091 | dicara/flask-app | refs/heads/master | /bioweb_api/utilities/manual_run_report_update.py | #!/usr/bin/env python
'''
Copyright 2017 Bio-Rad Laboratories, 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... | {"/bioweb_api/controller.py": ["/bioweb_api/__init__.py", "/bioweb_api/apis/ApiManager.py", "/bioweb_api/apis/ApiConstants.py", "/bioweb_api/utilities/logging_utilities.py"], "/bioweb_api/tests/test_utils.py": ["/bioweb_api/apis/ApiConstants.py"], "/bioweb_api/apis/dye_profiles_database/datastore/profiles.py": ["/biowe... |
82,092 | dicara/flask-app | refs/heads/master | /bioweb_api/apis/secondary_analysis/AssayCallerModelGetFunction.py | '''
Copyright 2017 Bio-Rad Laboratories, 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 writi... | {"/bioweb_api/controller.py": ["/bioweb_api/__init__.py", "/bioweb_api/apis/ApiManager.py", "/bioweb_api/apis/ApiConstants.py", "/bioweb_api/utilities/logging_utilities.py"], "/bioweb_api/tests/test_utils.py": ["/bioweb_api/apis/ApiConstants.py"], "/bioweb_api/apis/dye_profiles_database/datastore/profiles.py": ["/biowe... |
82,093 | dicara/flask-app | refs/heads/master | /bioweb_api/apis/predator_file_generator/PredatorFileGeneratorApi.py | '''
Copyright 2017 Bio-Rad Laboratories, 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 writi... | {"/bioweb_api/controller.py": ["/bioweb_api/__init__.py", "/bioweb_api/apis/ApiManager.py", "/bioweb_api/apis/ApiConstants.py", "/bioweb_api/utilities/logging_utilities.py"], "/bioweb_api/tests/test_utils.py": ["/bioweb_api/apis/ApiConstants.py"], "/bioweb_api/apis/dye_profiles_database/datastore/profiles.py": ["/biowe... |
82,094 | dicara/flask-app | refs/heads/master | /bioweb_api/apis/AbstractDeleteJobFunction.py | '''
Copyright 2014 Bio-Rad Laboratories, 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 writi... | {"/bioweb_api/controller.py": ["/bioweb_api/__init__.py", "/bioweb_api/apis/ApiManager.py", "/bioweb_api/apis/ApiConstants.py", "/bioweb_api/utilities/logging_utilities.py"], "/bioweb_api/tests/test_utils.py": ["/bioweb_api/apis/ApiConstants.py"], "/bioweb_api/apis/dye_profiles_database/datastore/profiles.py": ["/biowe... |
82,095 | dicara/flask-app | refs/heads/master | /bioweb_api/apis/secondary_analysis/GenotyperGetFunction.py | '''
Copyright 2016 Bio-Rad Laboratories, 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 writi... | {"/bioweb_api/controller.py": ["/bioweb_api/__init__.py", "/bioweb_api/apis/ApiManager.py", "/bioweb_api/apis/ApiConstants.py", "/bioweb_api/utilities/logging_utilities.py"], "/bioweb_api/tests/test_utils.py": ["/bioweb_api/apis/ApiConstants.py"], "/bioweb_api/apis/dye_profiles_database/datastore/profiles.py": ["/biowe... |
82,096 | dicara/flask-app | refs/heads/master | /bioweb_api/apis/run_info/TagsDeleteFunction.py | '''
Copyright 2017 Bio-Rad Laboratories, 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 writi... | {"/bioweb_api/controller.py": ["/bioweb_api/__init__.py", "/bioweb_api/apis/ApiManager.py", "/bioweb_api/apis/ApiConstants.py", "/bioweb_api/utilities/logging_utilities.py"], "/bioweb_api/tests/test_utils.py": ["/bioweb_api/apis/ApiConstants.py"], "/bioweb_api/apis/dye_profiles_database/datastore/profiles.py": ["/biowe... |
82,097 | dicara/flask-app | refs/heads/master | /bioweb_api/apis/run_info/TagsGetFunction.py | '''
Copyright 2017 Bio-Rad Laboratories, 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 writi... | {"/bioweb_api/controller.py": ["/bioweb_api/__init__.py", "/bioweb_api/apis/ApiManager.py", "/bioweb_api/apis/ApiConstants.py", "/bioweb_api/utilities/logging_utilities.py"], "/bioweb_api/tests/test_utils.py": ["/bioweb_api/apis/ApiConstants.py"], "/bioweb_api/apis/dye_profiles_database/datastore/profiles.py": ["/biowe... |
82,098 | dicara/flask-app | refs/heads/master | /bioweb_api/apis/parameters/ParameterFactory.py | '''
Copyright 2014 Bio-Rad Laboratories, 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 writi... | {"/bioweb_api/controller.py": ["/bioweb_api/__init__.py", "/bioweb_api/apis/ApiManager.py", "/bioweb_api/apis/ApiConstants.py", "/bioweb_api/utilities/logging_utilities.py"], "/bioweb_api/tests/test_utils.py": ["/bioweb_api/apis/ApiConstants.py"], "/bioweb_api/apis/dye_profiles_database/datastore/profiles.py": ["/biowe... |
82,099 | dicara/flask-app | refs/heads/master | /bioweb_api/apis/parameters/DateParameter.py | '''
Copyright 2014 Bio-Rad Laboratories, 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 writi... | {"/bioweb_api/controller.py": ["/bioweb_api/__init__.py", "/bioweb_api/apis/ApiManager.py", "/bioweb_api/apis/ApiConstants.py", "/bioweb_api/utilities/logging_utilities.py"], "/bioweb_api/tests/test_utils.py": ["/bioweb_api/apis/ApiConstants.py"], "/bioweb_api/apis/dye_profiles_database/datastore/profiles.py": ["/biowe... |
82,100 | dicara/flask-app | refs/heads/master | /bioweb_api/tests/apis/drop_tools/__init__.py | __author__ = 'nbrown'
| {"/bioweb_api/controller.py": ["/bioweb_api/__init__.py", "/bioweb_api/apis/ApiManager.py", "/bioweb_api/apis/ApiConstants.py", "/bioweb_api/utilities/logging_utilities.py"], "/bioweb_api/tests/test_utils.py": ["/bioweb_api/apis/ApiConstants.py"], "/bioweb_api/apis/dye_profiles_database/datastore/profiles.py": ["/biowe... |
82,101 | dicara/flask-app | refs/heads/master | /bioweb_api/apis/melting_temperature/IdtFunction.py | '''
Copyright 2014 Bio-Rad Laboratories, 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 writi... | {"/bioweb_api/controller.py": ["/bioweb_api/__init__.py", "/bioweb_api/apis/ApiManager.py", "/bioweb_api/apis/ApiConstants.py", "/bioweb_api/utilities/logging_utilities.py"], "/bioweb_api/tests/test_utils.py": ["/bioweb_api/apis/ApiConstants.py"], "/bioweb_api/apis/dye_profiles_database/datastore/profiles.py": ["/biowe... |
82,102 | dicara/flask-app | refs/heads/master | /api_caller.py | #!/usr/bin/env python
# encoding: utf-8
#===============================================================================
# License
#===============================================================================
'''
Copyright 2017 Bio-Rad Laboratories, Inc.
@author: Dan DiCara
@date: 2017-04-20
'''
#===============... | {"/bioweb_api/controller.py": ["/bioweb_api/__init__.py", "/bioweb_api/apis/ApiManager.py", "/bioweb_api/apis/ApiConstants.py", "/bioweb_api/utilities/logging_utilities.py"], "/bioweb_api/tests/test_utils.py": ["/bioweb_api/apis/ApiConstants.py"], "/bioweb_api/apis/dye_profiles_database/datastore/profiles.py": ["/biowe... |
82,103 | dicara/flask-app | refs/heads/master | /bioweb_api/tests/apis/exp_def/test_exp_def_api.py | '''
Copyright 2016 Bio-Rad Laboratories, 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 writi... | {"/bioweb_api/controller.py": ["/bioweb_api/__init__.py", "/bioweb_api/apis/ApiManager.py", "/bioweb_api/apis/ApiConstants.py", "/bioweb_api/utilities/logging_utilities.py"], "/bioweb_api/tests/test_utils.py": ["/bioweb_api/apis/ApiConstants.py"], "/bioweb_api/apis/dye_profiles_database/datastore/profiles.py": ["/biowe... |
82,104 | dicara/flask-app | refs/heads/master | /bioweb_api/apis/primary_analysis/ConvertImagesDeleteFunction.py | '''
Copyright 2014 Bio-Rad Laboratories, 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 writi... | {"/bioweb_api/controller.py": ["/bioweb_api/__init__.py", "/bioweb_api/apis/ApiManager.py", "/bioweb_api/apis/ApiConstants.py", "/bioweb_api/utilities/logging_utilities.py"], "/bioweb_api/tests/test_utils.py": ["/bioweb_api/apis/ApiConstants.py"], "/bioweb_api/apis/dye_profiles_database/datastore/profiles.py": ["/biowe... |
82,105 | dicara/flask-app | refs/heads/master | /api_caller_tsvs.py | #!/usr/bin/env python
# encoding: utf-8
#===============================================================================
# License
#===============================================================================
'''
Copyright 2017 Bio-Rad Laboratories, Inc.
@author: Dan DiCara
@date: 2017-04-20
'''
#===============... | {"/bioweb_api/controller.py": ["/bioweb_api/__init__.py", "/bioweb_api/apis/ApiManager.py", "/bioweb_api/apis/ApiConstants.py", "/bioweb_api/utilities/logging_utilities.py"], "/bioweb_api/tests/test_utils.py": ["/bioweb_api/apis/ApiConstants.py"], "/bioweb_api/apis/dye_profiles_database/datastore/profiles.py": ["/biowe... |
82,106 | dicara/flask-app | refs/heads/master | /bioweb_api/apis/image/GenerateSimluationConfigurationFunction.py | '''
Copyright 2015 Bio-Rad Laboratories, 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 writi... | {"/bioweb_api/controller.py": ["/bioweb_api/__init__.py", "/bioweb_api/apis/ApiManager.py", "/bioweb_api/apis/ApiConstants.py", "/bioweb_api/utilities/logging_utilities.py"], "/bioweb_api/tests/test_utils.py": ["/bioweb_api/apis/ApiConstants.py"], "/bioweb_api/apis/dye_profiles_database/datastore/profiles.py": ["/biowe... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.