Did I find the right examples for you? yes no Crawl my project Python Jobs
All Samples(79) | Call(64) | Derive(0) | Import(15)
src/x/b/xbob.db.nist_sre12-1.2.0/xbob/db/nist_sre12/models.py xbob.db.nist_sre12(Download)
import bob.db.utils from sqlalchemy import Table, Column, Integer, String, ForeignKey, or_, and_, not_ from bob.db.sqlalchemy_migration import Enum, relationship from sqlalchemy.orm import backref from sqlalchemy.ext.declarative import declarative_base
# for Python client = relationship("Client", backref=backref("files", order_by=id)) def __init__(self, client_id, path):
# For Python: A direct link to the Protocol object that this ProtocolPurpose belongs to protocol = relationship("Protocol", backref=backref("purposes", order_by=id)) # For Python: A direct link to the File objects associated with this ProtcolPurpose files = relationship("File", secondary=protocolPurpose_file_association, backref=backref("protocolPurposes", order_by=id)) # For Python: A direct link to the Client objects associated with this ProtcolPurpose clients = relationship("Client", secondary=protocolPurpose_client_association, backref=backref("protocolPurposes", order_by=id))
src/x/b/xbob.db.lfwidentification-0.0.3/xbob/db/lfwidentification/models.py xbob.db.lfwidentification(Download)
import bob.db.utils from sqlalchemy import Table, Column, Integer, String, Boolean, ForeignKey, or_, and_, not_ from bob.db.sqlalchemy_migration import Enum, relationship from sqlalchemy.orm import backref from sqlalchemy.ext.declarative import declarative_base
# a back-reference from file to client client = relationship("Client", backref=backref("files", order_by=id)) def __init__(self, client_id, shot_id):
# a back-reference from file to client client = relationship("Client", backref=backref("filesets", order_by=id)) # For Python: A direct link to the File objects associated with this Fileset files = relationship("File", secondary=fileset_file_association, backref=backref("filesets", order_by=id))
# For Python: A direct link to the Protocol object that this ProtocolPurpose belongs to protocol = relationship("Protocol", backref=backref("purposes", order_by=id)) # For Python: A direct link to the File objects associated with this ProtocolPurpose files = relationship("File", secondary=protocolPurpose_file_association, backref=backref("protocolPurposes", order_by=id))
src/x/b/xbob.db.mobio-1.2.1/xbob/db/mobio/models.py xbob.db.mobio(Download)
import bob.db.utils from sqlalchemy import Table, Column, Integer, String, ForeignKey, or_, and_, not_ from bob.db.sqlalchemy_migration import Enum, relationship from sqlalchemy.orm import backref from sqlalchemy.ext.declarative import declarative_base
# for Python: A direct link to the client clients = relationship("Client", secondary=subworld_client_association, backref=backref("subworld", order_by=id)) # for Python: A direct link to the files files = relationship("File", secondary=subworld_file_association, backref=backref("subworld", order_by=id))
# for Python: A direct link to the client client = relationship("Client", backref=backref("tmodels", order_by=id)) # for Python: A direct link to the protocol protocol = relationship("Protocol", backref=backref("tmodels", order_by=id))
src/x/b/xbob.db.caspeal-1.1.1/xbob/db/caspeal/models.py xbob.db.caspeal(Download)
import sqlalchemy from sqlalchemy import Column, Integer, String, Boolean, ForeignKey, or_, and_, not_ from bob.db.sqlalchemy_migration import Enum, relationship from sqlalchemy.orm import backref from sqlalchemy.ext.declarative import declarative_base
# one-to-one relationship between annotations and files annotation = relationship("Annotation", backref=backref("file", order_by=id, uselist=False), uselist=False) # a back-reference from the client class to a list of files client = relationship("Client", backref=backref("files", order_by=id)) protocol = relationship("Protocol", backref=backref("files", order_by=id))
src/x/b/xbob.db.multipie-1.1.1/xbob/db/multipie/models.py xbob.db.multipie(Download)
import bob.db.utils from sqlalchemy import Table, Column, Integer, String, ForeignKey, or_, and_, not_ from bob.db.sqlalchemy_migration import Enum, relationship from sqlalchemy.orm import backref from sqlalchemy.ext.declarative import declarative_base
# for Python: A direct link to the client clients = relationship("Client", secondary=subworld_client_association, backref=backref("subworld", order_by=id)) def __init__(self, name):
# for Python client = relationship("Client", backref=backref("files", order_by=id)) def __init__(self, client_id, path, session_id, recording_id, img_type, expression_id):
# for Python file = relationship("File", uselist=False, backref=backref("file_multiview", uselist=False, order_by=id)) def __init__(self, file_id, shot_id, camera_id):
# for Python: A direct link to the files with this expression files = relationship("File", backref=backref("expression", order_by=id)) def __init__(self, name):
src/x/b/xbob.db.replay-1.0.4/xbob/db/replay/models.py xbob.db.replay(Download)
import os from sqlalchemy import Table, Column, Integer, String, ForeignKey from bob.db.sqlalchemy_migration import Enum, relationship import bob.db.utils from sqlalchemy.orm import backref
# for Python client = relationship(Client, backref=backref('files', order_by=id)) """A direct link to the client object that this file belongs to"""
# for Python file = relationship(File, backref=backref('realaccess', order_by=id)) """A direct link to the :py:class:`.File` object this real-access belongs to""" protocols = relationship("Protocol", secondary=realaccesses_protocols,
# for Python file = relationship(File, backref=backref('attack', order_by=id)) """A direct link to the :py:class:`.File` object bound to this attack"""
src/x/b/xbob.db.banca-1.2.2/xbob/db/banca/models.py xbob.db.banca(Download)
import bob.db.utils from sqlalchemy import Table, Column, Integer, String, ForeignKey, or_, and_ from bob.db.sqlalchemy_migration import Enum, relationship from sqlalchemy.orm import backref from sqlalchemy.ext.declarative import declarative_base
# for Python: A direct link to the client clients = relationship("Client", secondary=subworld_client_association, backref=backref("subworld", order_by=id)) def __init__(self, name):
# For Python: A direct link to the client object that this file belongs to real_client = relationship("Client", backref=backref("files", order_by=id)) def __init__(self, client_id, path, claimed_id, shot_id, session_id):
# For Python: A direct link to the Protocol object that this ProtocolPurpose belongs to protocol = relationship("Protocol", backref=backref("purposes", order_by=id)) # For Python: A direct link to the File objects associated with this ProtcolPurpose files = relationship("File", secondary=protocolPurpose_file_association, backref=backref("protocolPurposes", order_by=id))
src/x/b/xbob.db.scface-1.2.1/xbob/db/scface/models.py xbob.db.scface(Download)
import bob.db.utils from sqlalchemy import Table, Column, Integer, Boolean, String, ForeignKey, or_, and_, not_ from bob.db.sqlalchemy_migration import Enum, relationship from sqlalchemy.orm import backref from sqlalchemy.ext.declarative import declarative_base
# for Python: A direct link to the client clients = relationship("Client", secondary=subworld_client_association, backref=backref("subworld", order_by=id)) def __init__(self, name):
# For Python: A direct link to the client object that this file belongs to client = relationship("Client", backref=backref("files", order_by=id)) def __init__(self, client_id, path, camera, distance):
# For Python: A direct link to the Protocol object that this ProtocolPurpose belongs to protocol = relationship("Protocol", backref=backref("purposes", order_by=id)) # For Python: A direct link to the File objects associated with this ProtcolPurpose files = relationship("File", secondary=protocolPurpose_file_association, backref=backref("protocol_purposes", order_by=id))
src/x/b/xbob.db.lfw-1.2.0/xbob/db/lfw/models.py xbob.db.lfw(Download)
import sqlalchemy from sqlalchemy import Column, Integer, String, Boolean, ForeignKey, or_, and_, not_ from bob.db.sqlalchemy_migration import Enum, relationship from sqlalchemy.orm import backref from sqlalchemy.ext.declarative import declarative_base
# a back-reference from file to client client = relationship("Client", backref=backref("files", order_by=id)) # many-to-one relationship between annotations and files annotations = relationship("Annotation", backref=backref("file", order_by=id, uselist=False))
enrol_file_id = Column(String(100), ForeignKey('file.id')) probe_file_id = Column(String(100), ForeignKey('file.id')) enrol_file = relationship("File", backref=backref("enrol_files", order_by=id), primaryjoin="Pair.enrol_file_id==File.id") probe_file = relationship("File", backref=backref("probe_files", order_by=id), primaryjoin="Pair.probe_file_id==File.id") is_match = Column(Boolean)
src/x/b/xbob.db.biosecurid.face-0.0.1a0/xbob/db/biosecurid/face/models.py xbob.db.biosecurid.face(Download)
import bob.db.utils from sqlalchemy import Table, Column, Integer, String, ForeignKey, or_, and_, not_ from bob.db.sqlalchemy_migration import Enum, relationship from sqlalchemy.orm import backref from sqlalchemy.ext.declarative import declarative_base
# For Python: A direct link to the client object that this file belongs to client = relationship("Client", backref=backref("files", order_by=id)) def __init__(self, client_id, path, session_id, shot_id):
# For Python: A direct link to the Protocol object that this ProtocolPurpose belongs to protocol = relationship("Protocol", backref=backref("purposes", order_by=id)) # For Python: A direct link to the File objects associated with this ProtcolPurpose files = relationship("File", secondary=protocolPurpose_file_association, backref=backref("protocolPurposes", order_by=id))
1 | 2 Next