This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
- версия от 03.03.2017 - большой рефакторинг | |
- версия от 01.03.20017 - небольшой рефакторинг | |
- версия от 20.02.2017 - первый прототип | |
""" | |
import sys, os, time, datetime, json | |
import JsonDataBase | |
from BiometricSDK.sdk import * |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#пока ненужный файл для тестов | |
import asyncio | |
from aiopg.sa import create_engine | |
import sqlalchemy as sa | |
metadata = sa.MetaData() | |
users = sa.Table('users',metadata, | |
sa.Column('id',sa.Integer,primary_key=True), | |
sa.Column('name',sa.String(255)), | |
sa.Column('date',sa.Date), | |
sa.Column('tag',sa.String(255)) |