Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
E
evm-store
Project overview
Project overview
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wanli
evm-store
Commits
05abb229
Commit
05abb229
authored
Jun 15, 2021
by
wanliofficial
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'release' of
ssh://47.105.117.50:2224/wanli/evm-store
into release
parents
e3e00bb5
110522f3
Changes
14
Hide whitespace changes
Inline
Side-by-side
Showing
14 changed files
with
153 additions
and
639 deletions
+153
-639
backend/model/__init__.py
backend/model/__init__.py
+1
-0
backend/model/build_logs.py
backend/model/build_logs.py
+1
-0
backend/schema/apps.py
backend/schema/apps.py
+1
-0
backend/schema/system.py
backend/schema/system.py
+0
-32
backend/view/__init__.py
backend/view/__init__.py
+1
-3
backend/view/api.py
backend/view/api.py
+13
-0
tools/build_out/logs/running.log
tools/build_out/logs/running.log
+88
-572
tools/build_out/views/app.py
tools/build_out/views/app.py
+8
-6
tools/build_out/views/area.py
tools/build_out/views/area.py
+8
-6
tools/build_out/views/login.py
tools/build_out/views/login.py
+4
-4
tools/build_out/views/package.py
tools/build_out/views/package.py
+4
-4
tools/build_out/views/user.py
tools/build_out/views/user.py
+8
-6
tools/config.json
tools/config.json
+8
-0
tools/templates/view.tpl
tools/templates/view.tpl
+8
-6
No files found.
backend/model/__init__.py
View file @
05abb229
...
...
@@ -9,6 +9,7 @@ from pony.flask import Pony
logger
=
logging
.
getLogger
(
__name__
)
class
FullStackDB
(
object
):
def
__init__
(
self
):
...
...
backend/model/build_logs.py
View file @
05abb229
...
...
@@ -16,6 +16,7 @@ class BuildLogs(db.Entity):
app
=
Required
(
"Apps"
,
reverse
=
"app_build_log"
)
app_path
=
Optional
(
str
,
default
=
""
)
app_info
=
Optional
(
Json
,
default
=
{})
source
=
Optional
(
int
,
default
=
0
)
# 打包来源 1管理中心 2后端接口
create_at
=
Required
(
datetime
,
default
=
datetime
.
now
)
create_by
=
Required
(
"User"
,
reverse
=
'build_logs_creator'
)
# BuildLogs与User一对一关系
update_at
=
Required
(
datetime
,
default
=
datetime
.
now
)
...
...
backend/schema/apps.py
View file @
05abb229
...
...
@@ -31,6 +31,7 @@ class DeleteSchema(BaseSchema):
class
QuerySchema
(
BaseSchema
):
uuid
=
fields
.
UUID
(
required
=
False
)
app_name
=
fields
.
String
(
required
=
False
)
category
=
fields
.
String
(
required
=
False
)
scope_type
=
fields
.
String
(
required
=
False
)
pagenum
=
fields
.
Int
(
required
=
False
)
pagesize
=
fields
.
Int
(
required
=
False
,
max
=
50
)
# 防止用户传特别大的数,导致数据库查询阻塞
...
...
backend/schema/system.py
View file @
05abb229
...
...
@@ -2,38 +2,6 @@ from datetime import datetime
from
.
import
BaseSchema
from
marshmallow
import
fields
,
validate
,
RAISE
,
INCLUDE
,
EXCLUDE
class
AddProjectSchema
(
BaseSchema
):
type
=
fields
.
String
(
required
=
False
,
allow_none
=
True
)
title
=
fields
.
String
(
required
=
True
,
validate
=
validate
.
Length
(
min
=
2
,
max
=
50
))
code
=
fields
.
String
(
required
=
False
,
allow_none
=
True
)
amount
=
fields
.
Decimal
(
required
=
False
,
default
=
0
,
allow_none
=
True
)
# 总金额
consult_type
=
fields
.
String
(
required
=
False
,
allow_none
=
True
)
# 咨询项目类型
contract_sign_at
=
fields
.
String
(
required
=
False
,
allow_none
=
True
)
# 项目签订日期
party_a
=
fields
.
String
(
required
=
False
,
allow_none
=
True
)
# 项目甲方
party_b
=
fields
.
String
(
required
=
False
,
allow_none
=
True
)
# 项目乙方
leader
=
fields
.
String
(
required
=
False
,
allow_none
=
True
)
# 项目开发人
level
=
fields
.
String
(
required
=
False
,
allow_none
=
True
)
# 项目开发级别
source
=
fields
.
String
(
required
=
False
,
allow_none
=
True
)
# 项目来源
introducer
=
fields
.
String
(
required
=
False
,
allow_none
=
True
)
# 同业引进人
standard_type
=
fields
.
String
(
required
=
False
,
allow_none
=
True
)
# 体系类型
review_type
=
fields
.
String
(
required
=
False
,
allow_none
=
True
)
# 审核类型
customer_addr
=
fields
.
String
(
required
=
False
,
allow_none
=
True
)
# 客户地址
customer_contact
=
fields
.
String
(
required
=
False
,
allow_none
=
True
)
# 客户联系人
customer_phone
=
fields
.
String
(
required
=
False
,
allow_none
=
True
)
# 客户联系电话
ascription
=
fields
.
String
(
required
=
False
,
allow_none
=
True
)
# 项目归属
risk
=
fields
.
String
(
required
=
False
,
allow_none
=
True
)
# 风险级别
people_nums
=
fields
.
Int
(
required
=
False
,
allow_none
=
True
)
# 人数
start_time
=
fields
.
DateTime
(
required
=
True
,
default
=
datetime
.
now
)
# 项目开始时间
end_time
=
fields
.
DateTime
(
required
=
True
,
default
=
datetime
.
now
)
# 项目结束时间
users
=
fields
.
List
(
fields
.
String
(),
required
=
True
)
# 项目参与者
flow
=
fields
.
List
(
fields
.
Dict
(),
required
=
False
,
allow_none
=
True
)
# 流程节点列表
payback
=
fields
.
List
(
fields
.
Dict
(),
required
=
False
,
allow_none
=
True
)
# 回款计划列表
production
=
fields
.
Dict
(
required
=
False
,
allow_none
=
True
)
# 项目费用相关
remarks
=
fields
.
String
(
required
=
False
,
allow_none
=
True
)
# 备注
class
Meta
:
unknown
=
EXCLUDE
class
QuerySchema
(
BaseSchema
):
project
=
fields
.
UUID
(
required
=
True
)
...
...
backend/view/__init__.py
View file @
05abb229
...
...
@@ -18,9 +18,7 @@ from .app_logs import appLogs_api
from
.ws
import
NotifyHandler
,
ThreadNotifyHandler
from
model
import
fullStackDB
from
fullstack.response
import
ResponseCode
,
response_result
from
app
import
config
,
signalManager
from
flask_login
import
LoginManager
from
app
import
config
logger
=
logging
.
getLogger
(
__name__
)
...
...
backend/view/api.py
View file @
05abb229
...
...
@@ -5,6 +5,7 @@ import json
import
logging
import
traceback
import
uuid
import
sqlite3
from
datetime
import
datetime
from
flask
import
Blueprint
,
request
,
redirect
,
url_for
,
json
,
Response
,
send_file
,
make_response
,
send_from_directory
...
...
@@ -98,6 +99,18 @@ def update_db():
print
(
index
)
result
.
append
(
str
(
uuid
.
uuid1
()))
# conn = sqlite3.connect('./app-store.db')
# cur = conn.cursor()
# update_sql = """update test set name = 'noname' where id = ?"""
# x = (1, )
# cur.execute(update_sql, x)
# # commit()提交事务
# conn.commit()
# # 关闭游标
# cur.close()
# # 关闭连接
# conn.close()
return
response_result
(
ResponseCode
.
OK
,
data
=
result
)
@
api
.
route
(
"/system/convertString"
,
methods
=
[
'POST'
])
...
...
tools/build_out/logs/running.log
View file @
05abb229
[2021-06-11 12:40:58,850][ INFO] [ _internal.py _log 225] * Restarting with stat
[2021-06-11 12:41:00,112][WARNING] [ _internal.py _log 225] * Debugger is active!
[2021-06-11 12:43:07,401][ INFO] [ _internal.py _log 225] * Restarting with stat
[2021-06-11 12:43:08,659][WARNING] [ _internal.py _log 225] * Debugger is active!
[2021-06-11 12:43:08,703][ INFO] [ _internal.py _log 225] * Debugger PIN: 182-666-074
[2021-06-11 12:43:08,947][ INFO] [ _internal.py _log 225] * Running on http://127.0.0.1:3000/ (Press CTRL+C to quit)
[2021-06-11 14:40:15,041][ INFO] [ _internal.py _log 225] * Restarting with stat
[2021-06-11 14:40:16,231][WARNING] [ _internal.py _log 225] * Debugger is active!
[2021-06-11 14:40:16,277][ INFO] [ _internal.py _log 225] * Debugger PIN: 182-666-074
[2021-06-11 14:40:16,534][ INFO] [ _internal.py _log 225] * Running on http://127.0.0.1:3000/ (Press CTRL+C to quit)
[2021-06-11 14:43:10,955][ INFO] [ _internal.py _log 225] * Detected change in 'D:\\projects\\scriptiot\\evm-store\\tools\\build_out\\models\\area.py', reloading
[2021-06-11 14:43:11,060][ INFO] [ _internal.py _log 225] * Restarting with stat
[2021-06-11 14:43:12,320][WARNING] [ _internal.py _log 225] * Debugger is active!
[2021-06-11 14:43:12,366][ INFO] [ _internal.py _log 225] * Debugger PIN: 182-666-074
[2021-06-11 14:43:12,608][ INFO] [ _internal.py _log 225] * Running on http://127.0.0.1:3000/ (Press CTRL+C to quit)
[2021-06-11 14:44:01,431][ INFO] [ _internal.py _log 225] * Restarting with stat
[2021-06-11 14:44:02,654][WARNING] [ _internal.py _log 225] * Debugger is active!
[2021-06-11 14:44:02,697][ INFO] [ _internal.py _log 225] * Debugger PIN: 182-666-074
[2021-06-11 14:44:02,939][ INFO] [ _internal.py _log 225] * Running on http://127.0.0.1:3000/ (Press CTRL+C to quit)
[2021-06-11 14:45:29,362][ INFO] [ _internal.py _log 225] * Restarting with stat
[2021-06-11 14:45:30,577][WARNING] [ _internal.py _log 225] * Debugger is active!
[2021-06-11 14:45:30,620][ INFO] [ _internal.py _log 225] * Debugger PIN: 182-666-074
[2021-06-11 14:45:30,858][ INFO] [ _internal.py _log 225] * Running on http://127.0.0.1:3000/ (Press CTRL+C to quit)
[2021-06-11 14:47:47,199][ INFO] [ _internal.py _log 225] * Detected change in 'D:\\projects\\scriptiot\\evm-store\\tools\\build_out\\models\\__init__.py', reloading
[2021-06-11 14:47:47,318][ INFO] [ _internal.py _log 225] * Restarting with stat
[2021-06-11 14:47:48,587][WARNING] [ _internal.py _log 225] * Debugger is active!
[2021-06-11 14:47:48,631][ INFO] [ _internal.py _log 225] * Debugger PIN: 182-666-074
[2021-06-11 14:47:48,872][ INFO] [ _internal.py _log 225] * Running on http://127.0.0.1:3000/ (Press CTRL+C to quit)
[2021-06-11 14:47:56,835][ INFO] [ _internal.py _log 225] * Restarting with stat
[2021-06-11 14:47:58,041][WARNING] [ _internal.py _log 225] * Debugger is active!
[2021-06-11 14:47:58,085][ INFO] [ _internal.py _log 225] * Debugger PIN: 182-666-074
[2021-06-11 14:47:58,345][ INFO] [ _internal.py _log 225] * Running on http://127.0.0.1:3000/ (Press CTRL+C to quit)
[2021-06-11 14:49:51,074][ INFO] [ _internal.py _log 225] * Detected change in 'D:\\projects\\scriptiot\\evm-store\\tools\\build_out\\application\\config.py', reloading
[2021-06-11 14:49:51,191][ INFO] [ _internal.py _log 225] * Restarting with stat
[2021-06-11 14:49:52,460][WARNING] [ _internal.py _log 225] * Debugger is active!
[2021-06-11 14:49:52,503][ INFO] [ _internal.py _log 225] * Debugger PIN: 182-666-074
[2021-06-11 14:49:52,743][ INFO] [ _internal.py _log 225] * Running on http://127.0.0.1:3000/ (Press CTRL+C to quit)
[2021-06-11 14:50:07,737][ INFO] [ _internal.py _log 225] * Restarting with stat
[2021-06-11 14:50:08,957][WARNING] [ _internal.py _log 225] * Debugger is active!
[2021-06-11 14:50:09,003][ INFO] [ _internal.py _log 225] * Debugger PIN: 182-666-074
[2021-06-11 14:50:09,245][ INFO] [ _internal.py _log 225] * Running on http://127.0.0.1:3000/ (Press CTRL+C to quit)
[2021-06-11 16:12:57,794][ INFO] [ _internal.py _log 225] * Restarting with stat
[2021-06-11 16:12:59,016][WARNING] [ _internal.py _log 225] * Debugger is active!
[2021-06-11 16:12:59,063][ INFO] [ _internal.py _log 225] * Debugger PIN: 182-666-074
[2021-06-11 16:12:59,325][ INFO] [ _internal.py _log 225] * Running on http://127.0.0.1:3000/ (Press CTRL+C to quit)
[2021-06-11 16:16:55,176][ INFO] [ _internal.py _log 225] * Detected change in 'D:\\projects\\scriptiot\\evm-store\\tools\\build_out\\manager.py', reloading
[2021-06-11 16:16:55,288][ INFO] [ _internal.py _log 225] * Restarting with stat
[2021-06-11 16:16:56,593][WARNING] [ _internal.py _log 225] * Debugger is active!
[2021-06-11 16:16:56,639][ INFO] [ _internal.py _log 225] * Debugger PIN: 182-666-074
[2021-06-11 16:16:56,884][ INFO] [ _internal.py _log 225] * Running on http://127.0.0.1:3000/ (Press CTRL+C to quit)
[2021-06-11 16:17:05,775][ INFO] [ _internal.py _log 225] * Restarting with stat
[2021-06-11 16:17:07,038][WARNING] [ _internal.py _log 225] * Debugger is active!
[2021-06-11 16:17:07,085][ INFO] [ _internal.py _log 225] * Debugger PIN: 182-666-074
[2021-06-11 16:17:07,345][ INFO] [ _internal.py _log 225] * Running on http://127.0.0.1:3000/ (Press CTRL+C to quit)
[2021-06-11 18:49:26,185][ INFO] [ _internal.py _log 225] * Detected change in 'D:\\projects\\scriptiot\\evm-store\\tools\\build_out\\webcreator\\response.py', reloading
[2021-06-11 18:49:26,381][ INFO] [ _internal.py _log 225] * Restarting with stat
[2021-06-11 18:49:27,732][WARNING] [ _internal.py _log 225] * Debugger is active!
[2021-06-11 18:49:27,778][ INFO] [ _internal.py _log 225] * Debugger PIN: 182-666-074
[2021-06-11 18:49:28,047][ INFO] [ _internal.py _log 225] * Running on http://127.0.0.1:3000/ (Press CTRL+C to quit)
[2021-06-11 18:49:35,635][ INFO] [ _internal.py _log 225] * Restarting with stat
[2021-06-11 18:49:36,910][WARNING] [ _internal.py _log 225] * Debugger is active!
[2021-06-11 18:49:36,957][ INFO] [ _internal.py _log 225] * Debugger PIN: 182-666-074
[2021-06-11 18:49:37,213][ INFO] [ _internal.py _log 225] * Running on http://127.0.0.1:3000/ (Press CTRL+C to quit)
[2021-06-11 18:51:50,181][ INFO] [ _internal.py _log 225] * Detected change in 'D:\\projects\\scriptiot\\evm-store\\tools\\build_out\\views\\__init__.py', reloading
[2021-06-11 18:51:50,302][ INFO] [ _internal.py _log 225] * Restarting with stat
[2021-06-11 18:51:51,588][WARNING] [ _internal.py _log 225] * Debugger is active!
[2021-06-11 18:51:58,520][ INFO] [ _internal.py _log 225] * Restarting with stat
[2021-06-11 18:51:59,826][WARNING] [ _internal.py _log 225] * Debugger is active!
[2021-06-11 18:56:00,015][ INFO] [ _internal.py _log 225] * Restarting with stat
[2021-06-11 18:56:01,323][WARNING] [ _internal.py _log 225] * Debugger is active!
[2021-06-11 18:56:01,371][ INFO] [ _internal.py _log 225] * Debugger PIN: 182-666-074
[2021-06-11 18:56:01,621][ INFO] [ _internal.py _log 225] * Running on http://127.0.0.1:3000/ (Press CTRL+C to quit)
[2021-06-11 18:57:31,701][ INFO] [ _internal.py _log 225] * Detected change in 'D:\\projects\\scriptiot\\evm-store\\tools\\build_out\\controllers\\__init__.py', reloading
[2021-06-11 18:57:31,820][ INFO] [ _internal.py _log 225] * Restarting with stat
[2021-06-11 18:57:33,088][WARNING] [ _internal.py _log 225] * Debugger is active!
[2021-06-11 18:57:33,135][ INFO] [ _internal.py _log 225] * Debugger PIN: 182-666-074
[2021-06-11 18:57:33,393][ INFO] [ _internal.py _log 225] * Running on http://127.0.0.1:3000/ (Press CTRL+C to quit)
[2021-06-11 18:57:59,997][ INFO] [ _internal.py _log 225] * Restarting with stat
[2021-06-11 18:58:01,272][WARNING] [ _internal.py _log 225] * Debugger is active!
[2021-06-11 18:58:01,320][ INFO] [ _internal.py _log 225] * Debugger PIN: 182-666-074
[2021-06-11 18:58:01,577][ INFO] [ _internal.py _log 225] * Running on http://127.0.0.1:3000/ (Press CTRL+C to quit)
[2021-06-11 19:00:51,955][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:00:51] "[33mPOST /api/v1 HTTP/1.1[0m" 404 -
[2021-06-11 19:00:54,103][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:00:54] "[33mPOST /api/v1 HTTP/1.1[0m" 404 -
[2021-06-11 19:00:55,294][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:00:55] "[33mPOST /api/v1 HTTP/1.1[0m" 404 -
[2021-06-11 19:01:06,306][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:01:06] "[33mPOST /api/v1 HTTP/1.1[0m" 404 -
[2021-06-11 19:01:07,409][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:01:07] "[33mPOST /api/v1 HTTP/1.1[0m" 404 -
[2021-06-11 19:04:45,073][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:04:45] "[33mPOST /api/v1/area HTTP/1.1[0m" 404 -
[2021-06-11 19:04:46,435][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:04:46] "[33mPOST /api/v1/area HTTP/1.1[0m" 404 -
[2021-06-11 19:04:47,782][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:04:47] "[33mPOST /api/v1/area HTTP/1.1[0m" 404 -
[2021-06-11 19:04:53,207][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:04:53] "[33mGET /api/v1/area HTTP/1.1[0m" 404 -
[2021-06-11 19:04:54,357][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:04:54] "[33mGET /api/v1/area HTTP/1.1[0m" 404 -
[2021-06-11 19:07:08,309][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:07:08] "[33mGET /api/v1/area HTTP/1.1[0m" 404 -
[2021-06-11 19:07:09,180][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:07:09] "[33mGET /api/v1/area HTTP/1.1[0m" 404 -
[2021-06-11 19:07:09,892][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:07:09] "[33mGET /api/v1/area HTTP/1.1[0m" 404 -
[2021-06-11 19:07:10,544][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:07:10] "[33mGET /api/v1/area HTTP/1.1[0m" 404 -
[2021-06-11 19:07:21,568][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:07:21] "[33mGET /api/v1/area HTTP/1.1[0m" 404 -
[2021-06-11 19:07:21,617][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:07:21] "[33mGET /favicon.ico HTTP/1.1[0m" 404 -
[2021-06-11 19:07:24,634][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:07:24] "[33mGET /api/v1/area HTTP/1.1[0m" 404 -
[2021-06-11 19:07:25,323][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:07:25] "[33mGET /api/v1/area HTTP/1.1[0m" 404 -
[2021-06-11 19:07:26,678][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:07:26] "[33mGET /api/v1/area HTTP/1.1[0m" 404 -
[2021-06-11 19:07:27,196][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:07:27] "[33mGET /api/v1/area HTTP/1.1[0m" 404 -
[2021-06-11 19:07:27,677][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:07:27] "[33mGET /api/v1/area HTTP/1.1[0m" 404 -
[2021-06-11 19:07:28,355][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:07:28] "[33mGET /api/v1/area HTTP/1.1[0m" 404 -
[2021-06-11 19:07:40,689][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:07:40] "[33mGET /api/v1/area¡¢ HTTP/1.1[0m" 404 -
[2021-06-11 19:07:43,852][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:07:43] "[33mGET /api/v1/area/ HTTP/1.1[0m" 404 -
[2021-06-11 19:07:45,391][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:07:45] "[33mGET /api/v1/area/ HTTP/1.1[0m" 404 -
[2021-06-11 19:07:45,688][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:07:45] "[33mGET /api/v1/area/ HTTP/1.1[0m" 404 -
[2021-06-11 19:07:45,915][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:07:45] "[33mGET /api/v1/area/ HTTP/1.1[0m" 404 -
[2021-06-11 19:07:46,117][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:07:46] "[33mGET /api/v1/area/ HTTP/1.1[0m" 404 -
[2021-06-11 19:07:46,318][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:07:46] "[33mGET /api/v1/area/ HTTP/1.1[0m" 404 -
[2021-06-11 19:07:53,535][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:07:53] "[33mGET /api/v1/area/ HTTP/1.1[0m" 404 -
[2021-06-11 19:07:54,725][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:07:54] "[33mGET /api/v1/area/ HTTP/1.1[0m" 404 -
[2021-06-11 19:07:55,528][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:07:55] "[33mGET /api/v1/area/ HTTP/1.1[0m" 404 -
[2021-06-11 19:07:56,513][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:07:56] "[33mGET /api/v1/area/ HTTP/1.1[0m" 404 -
[2021-06-11 19:09:46,505][ INFO] [ _internal.py _log 225] * Detected change in 'D:\\projects\\scriptiot\\evm-store\\tools\\build_out\\application\\signal_manager.py', reloading
[2021-06-11 19:09:46,629][ INFO] [ _internal.py _log 225] * Restarting with stat
[2021-06-11 19:09:47,979][WARNING] [ _internal.py _log 225] * Debugger is active!
[2021-06-11 19:09:48,024][ INFO] [ _internal.py _log 225] * Debugger PIN: 182-666-074
[2021-06-11 19:09:48,278][ INFO] [ _internal.py _log 225] * Running on http://127.0.0.1:3000/ (Press CTRL+C to quit)
[2021-06-11 19:09:56,500][ INFO] [ _internal.py _log 225] * Restarting with stat
[2021-06-11 19:09:57,802][WARNING] [ _internal.py _log 225] * Debugger is active!
[2021-06-11 19:09:57,848][ INFO] [ _internal.py _log 225] * Debugger PIN: 182-666-074
[2021-06-11 19:09:58,103][ INFO] [ _internal.py _log 225] * Running on http://127.0.0.1:3000/ (Press CTRL+C to quit)
[2021-06-11 19:10:25,113][ INFO] [ _internal.py _log 225] * Detected change in 'D:\\projects\\scriptiot\\evm-store\\tools\\build_out\\views\\area.py', reloading
[2021-06-11 19:10:25,245][ INFO] [ _internal.py _log 225] * Restarting with stat
[2021-06-11 19:10:26,689][WARNING] [ _internal.py _log 225] * Debugger is active!
[2021-06-11 19:10:26,742][ INFO] [ _internal.py _log 225] * Debugger PIN: 182-666-074
[2021-06-11 19:10:27,004][ INFO] [ _internal.py _log 225] * Running on http://127.0.0.1:3000/ (Press CTRL+C to quit)
[2021-06-11 19:10:53,976][ INFO] [ _internal.py _log 225] * Detected change in 'D:\\projects\\scriptiot\\evm-store\\tools\\build_out\\views\\area.py', reloading
[2021-06-11 19:10:54,105][ INFO] [ _internal.py _log 225] * Restarting with stat
[2021-06-11 19:10:55,689][WARNING] [ _internal.py _log 225] * Debugger is active!
[2021-06-11 19:10:55,739][ INFO] [ _internal.py _log 225] * Debugger PIN: 182-666-074
[2021-06-11 19:10:56,013][ INFO] [ _internal.py _log 225] * Running on http://127.0.0.1:3000/ (Press CTRL+C to quit)
[2021-06-11 19:10:59,048][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:10:59] "[33mGET /api/v1/area/ HTTP/1.1[0m" 404 -
[2021-06-11 19:11:00,206][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:11:00] "[33mGET /api/v1/area/ HTTP/1.1[0m" 404 -
[2021-06-11 19:12:34,889][ INFO] [ _internal.py _log 225] * Detected change in 'D:\\projects\\scriptiot\\evm-store\\tools\\build_out\\application\\app.py', reloading
[2021-06-11 19:12:35,018][ INFO] [ _internal.py _log 225] * Restarting with stat
[2021-06-11 19:12:36,452][WARNING] [ _internal.py _log 225] * Debugger is active!
[2021-06-11 19:12:36,502][ INFO] [ _internal.py _log 225] * Debugger PIN: 182-666-074
[2021-06-11 19:12:36,775][ INFO] [ _internal.py _log 225] * Running on http://127.0.0.1:3000/ (Press CTRL+C to quit)
[2021-06-11 19:12:39,005][ INFO] [ _internal.py _log 225] * Detected change in 'D:\\projects\\scriptiot\\evm-store\\tools\\build_out\\application\\app.py', reloading
[2021-06-11 19:12:39,129][ INFO] [ _internal.py _log 225] * Restarting with stat
[2021-06-11 19:12:40,558][WARNING] [ _internal.py _log 225] * Debugger is active!
[2021-06-11 19:12:40,606][ INFO] [ _internal.py _log 225] * Debugger PIN: 182-666-074
[2021-06-11 19:12:40,884][ INFO] [ _internal.py _log 225] * Running on http://127.0.0.1:3000/ (Press CTRL+C to quit)
[2021-06-11 19:12:50,990][ INFO] [ _internal.py _log 225] * Detected change in 'D:\\projects\\scriptiot\\evm-store\\tools\\build_out\\application\\app.py', reloading
[2021-06-11 19:12:51,120][ INFO] [ _internal.py _log 225] * Restarting with stat
[2021-06-11 19:12:52,518][WARNING] [ _internal.py _log 225] * Debugger is active!
[2021-06-11 19:12:52,571][ INFO] [ _internal.py _log 225] * Debugger PIN: 182-666-074
[2021-06-11 19:12:52,871][ INFO] [ _internal.py _log 225] * Running on http://127.0.0.1:3000/ (Press CTRL+C to quit)
[2021-06-11 19:13:36,989][ INFO] [ _internal.py _log 225] * Detected change in 'D:\\projects\\scriptiot\\evm-store\\tools\\build_out\\application\\app.py', reloading
[2021-06-11 19:13:37,125][ INFO] [ _internal.py _log 225] * Restarting with stat
[2021-06-11 19:13:38,620][WARNING] [ _internal.py _log 225] * Debugger is active!
[2021-06-11 19:13:38,669][ INFO] [ _internal.py _log 225] * Debugger PIN: 182-666-074
[2021-06-11 19:13:38,952][ INFO] [ _internal.py _log 225] * Running on http://127.0.0.1:3000/ (Press CTRL+C to quit)
[2021-06-11 19:14:21,925][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:14:21] "[33mGET /api/v1/area/ HTTP/1.1[0m" 404 -
[2021-06-11 19:14:22,826][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:14:22] "[33mGET /api/v1/area/ HTTP/1.1[0m" 404 -
[2021-06-11 19:14:23,452][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:14:23] "[33mGET /api/v1/area/ HTTP/1.1[0m" 404 -
[2021-06-11 19:14:28,210][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:14:28] "[33mGET /api/v1/area/ HTTP/1.1[0m" 404 -
[2021-06-11 19:14:29,350][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:14:29] "[33mGET /api/v1/area/ HTTP/1.1[0m" 404 -
[2021-06-11 19:14:30,287][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:14:30] "[33mGET /api/v1/area/ HTTP/1.1[0m" 404 -
[2021-06-11 19:14:31,357][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:14:31] "[33mGET /api/v1/area/ HTTP/1.1[0m" 404 -
[2021-06-11 19:14:32,377][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:14:32] "[33mGET /api/v1/area/ HTTP/1.1[0m" 404 -
[2021-06-11 19:20:37,862][ INFO] [ _internal.py _log 225] * Detected change in 'D:\\projects\\scriptiot\\evm-store\\tools\\build_out\\manager.py', reloading
[2021-06-11 19:20:37,996][ INFO] [ _internal.py _log 225] * Restarting with stat
[2021-06-11 19:20:39,658][WARNING] [ _internal.py _log 225] * Debugger is active!
[2021-06-11 19:20:39,719][ INFO] [ _internal.py _log 225] * Debugger PIN: 182-666-074
[2021-06-11 19:20:40,048][ INFO] [ _internal.py _log 225] * Running on http://127.0.0.1:3000/ (Press CTRL+C to quit)
[2021-06-11 19:20:47,973][ INFO] [ _internal.py _log 225] * Detected change in 'D:\\projects\\scriptiot\\evm-store\\tools\\build_out\\manager.py', reloading
[2021-06-11 19:20:48,109][ INFO] [ _internal.py _log 225] * Restarting with stat
[2021-06-11 19:20:49,759][WARNING] [ _internal.py _log 225] * Debugger is active!
[2021-06-11 19:20:49,812][ INFO] [ _internal.py _log 225] * Debugger PIN: 182-666-074
[2021-06-11 19:20:50,092][ INFO] [ _internal.py _log 225] * Running on http://127.0.0.1:3000/ (Press CTRL+C to quit)
[2021-06-11 19:21:08,199][ INFO] [ _internal.py _log 225] * Detected change in 'D:\\projects\\scriptiot\\evm-store\\tools\\build_out\\manager.py', reloading
[2021-06-11 19:21:08,344][ INFO] [ _internal.py _log 225] * Restarting with stat
[2021-06-11 19:21:09,917][WARNING] [ _internal.py _log 225] * Debugger is active!
[2021-06-11 19:21:09,968][ INFO] [ _internal.py _log 225] * Debugger PIN: 182-666-074
[2021-06-11 19:21:10,262][ INFO] [ _internal.py _log 225] * Running on http://127.0.0.1:3000/ (Press CTRL+C to quit)
[2021-06-11 19:21:11,414][ INFO] [ _internal.py _log 225] * Detected change in 'D:\\projects\\scriptiot\\evm-store\\tools\\build_out\\manager.py', reloading
[2021-06-11 19:21:11,551][ INFO] [ _internal.py _log 225] * Restarting with stat
[2021-06-11 19:22:40,302][ INFO] [ _internal.py _log 225] * Restarting with stat
[2021-06-11 19:22:41,595][WARNING] [ _internal.py _log 225] * Debugger is active!
[2021-06-11 19:22:41,642][ INFO] [ _internal.py _log 225] * Debugger PIN: 182-666-074
[2021-06-11 19:22:41,907][ INFO] [ _internal.py _log 225] * Running on http://127.0.0.1:3000/ (Press CTRL+C to quit)
[2021-06-11 19:22:46,797][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:22:46] "[33mGET /api/v1/area/ HTTP/1.1[0m" 404 -
[2021-06-11 19:22:48,044][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:22:48] "[33mGET /api/v1/area/ HTTP/1.1[0m" 404 -
[2021-06-11 19:22:51,817][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:22:51] "[33mGET /api/v1/area/ HTTP/1.1[0m" 404 -
[2021-06-11 19:22:56,203][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:22:56] "[33mGET /api/v1/area/ HTTP/1.1[0m" 404 -
[2021-06-11 19:22:56,421][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:22:56] "[33mGET /api/v1/area/ HTTP/1.1[0m" 404 -
[2021-06-11 19:22:56,629][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:22:56] "[33mGET /api/v1/area/ HTTP/1.1[0m" 404 -
[2021-06-11 19:22:56,926][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:22:56] "[33mGET /api/v1/area/ HTTP/1.1[0m" 404 -
[2021-06-11 19:22:57,138][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:22:57] "[33mGET /api/v1/area/ HTTP/1.1[0m" 404 -
[2021-06-11 19:22:57,356][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:22:57] "[33mGET /api/v1/area/ HTTP/1.1[0m" 404 -
[2021-06-11 19:22:57,692][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:22:57] "[33mGET /api/v1/area/ HTTP/1.1[0m" 404 -
[2021-06-11 19:22:57,777][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:22:57] "[33mGET /api/v1/area/ HTTP/1.1[0m" 404 -
[2021-06-11 19:22:57,980][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:22:57] "[33mGET /api/v1/area/ HTTP/1.1[0m" 404 -
[2021-06-11 19:22:58,166][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:22:58] "[33mGET /api/v1/area/ HTTP/1.1[0m" 404 -
[2021-06-11 19:22:58,367][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:22:58] "[33mGET /api/v1/area/ HTTP/1.1[0m" 404 -
[2021-06-11 19:28:01,598][ INFO] [ _internal.py _log 225] * Restarting with stat
[2021-06-11 19:28:02,847][WARNING] [ _internal.py _log 225] * Debugger is active!
[2021-06-11 19:28:02,895][ INFO] [ _internal.py _log 225] * Debugger PIN: 182-666-074
[2021-06-11 19:28:03,162][ INFO] [ _internal.py _log 225] * Running on http://127.0.0.1:3000/ (Press CTRL+C to quit)
[2021-06-11 19:29:02,301][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:29:02] "[33mGET /api/v1/area/ HTTP/1.1[0m" 404 -
[2021-06-11 19:29:03,067][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:29:03] "[33mGET /api/v1/area/ HTTP/1.1[0m" 404 -
[2021-06-11 19:29:04,292][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:29:04] "[33mGET /api/v1/area/ HTTP/1.1[0m" 404 -
[2021-06-11 19:29:11,021][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:29:11] "[33mGET /api/v1/area/ HTTP/1.1[0m" 404 -
[2021-06-11 19:29:11,658][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:29:11] "[33mGET /api/v1/area/ HTTP/1.1[0m" 404 -
[2021-06-11 19:29:12,545][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:29:12] "[33mGET /api/v1/area/ HTTP/1.1[0m" 404 -
[2021-06-11 19:29:13,288][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:29:13] "[33mGET /api/v1/area/ HTTP/1.1[0m" 404 -
[2021-06-11 19:29:14,725][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:29:14] "[33mGET /api/v1/area/ HTTP/1.1[0m" 404 -
[2021-06-11 19:29:16,587][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:29:16] "[33mGET /api/v1/area/ HTTP/1.1[0m" 404 -
[2021-06-11 19:29:17,292][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:29:17] "[33mGET /api/v1/area/ HTTP/1.1[0m" 404 -
[2021-06-11 19:29:17,973][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:29:17] "[33mGET /api/v1/area/ HTTP/1.1[0m" 404 -
[2021-06-11 19:29:18,852][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:29:18] "[33mGET /api/v1/area/ HTTP/1.1[0m" 404 -
[2021-06-11 19:29:38,999][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:29:38] "[33mGET /api/v1/area/ HTTP/1.1[0m" 404 -
[2021-06-11 19:29:42,703][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:29:42] "[33mGET /api/v1/area/ HTTP/1.1[0m" 404 -
[2021-06-11 19:29:43,534][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:29:43] "[33mGET /api/v1/area/ HTTP/1.1[0m" 404 -
[2021-06-11 19:30:13,638][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:30:13] "[33mGET /api/v1/area/ HTTP/1.1[0m" 404 -
[2021-06-11 19:30:17,939][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:30:17] "[33mGET /api/v1/area/ HTTP/1.1[0m" 404 -
[2021-06-11 19:30:19,223][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:30:19] "[33mGET /api/v1/area/ HTTP/1.1[0m" 404 -
[2021-06-11 19:30:19,673][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:30:19] "[33mGET /api/v1/area/ HTTP/1.1[0m" 404 -
[2021-06-11 19:30:20,286][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:30:20] "[33mGET /api/v1/area/ HTTP/1.1[0m" 404 -
[2021-06-11 19:31:20,902][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:31:20] "[33mGET /api/area/ HTTP/1.1[0m" 404 -
[2021-06-11 19:31:22,178][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:31:22] "[33mGET /api/area/ HTTP/1.1[0m" 404 -
[2021-06-11 19:31:29,722][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:31:29] "[33mGET /api/v1/area/ HTTP/1.1[0m" 404 -
[2021-06-11 19:31:29,911][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:31:29] "[33mGET /api/v1/area/ HTTP/1.1[0m" 404 -
[2021-06-11 19:31:30,127][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:31:30] "[33mGET /api/v1/area/ HTTP/1.1[0m" 404 -
[2021-06-11 19:31:30,427][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:31:30] "[33mGET /api/v1/area/ HTTP/1.1[0m" 404 -
[2021-06-11 19:31:33,445][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:31:33] "[33mGET /api/area/ HTTP/1.1[0m" 404 -
[2021-06-11 19:33:04,277][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:33:04] "[33mGET /api/area/ HTTP/1.1[0m" 404 -
[2021-06-11 19:33:07,472][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:33:07] "[35m[1mGET /api/area HTTP/1.1[0m" 500 -
[2021-06-11 19:33:08,756][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:33:08] "[35m[1mGET /api/area HTTP/1.1[0m" 500 -
[2021-06-11 19:34:18,638][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:34:18] "[33mGET /api/v1/area HTTP/1.1[0m" 404 -
[2021-06-11 19:34:19,879][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:34:19] "[33mGET /api/v1/area HTTP/1.1[0m" 404 -
[2021-06-11 19:34:20,895][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:34:20] "[33mGET /api/v1/area HTTP/1.1[0m" 404 -
[2021-06-11 19:34:24,750][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:34:24] "[33mGET /api/v1/area/ HTTP/1.1[0m" 404 -
[2021-06-11 19:34:25,913][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:34:25] "[33mGET /api/v1/area/ HTTP/1.1[0m" 404 -
[2021-06-11 19:34:44,234][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:34:44] "[33mGET /api/v1/area/ HTTP/1.1[0m" 404 -
[2021-06-11 19:34:45,303][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:34:45] "[33mGET /api/v1/area/ HTTP/1.1[0m" 404 -
[2021-06-11 19:34:59,949][ INFO] [ _internal.py _log 225] * Detected change in 'D:\\projects\\scriptiot\\evm-store\\tools\\build_out\\controllers\\area.py', reloading
[2021-06-11 19:35:00,063][ INFO] [ _internal.py _log 225] * Restarting with stat
[2021-06-11 19:35:01,500][WARNING] [ _internal.py _log 225] * Debugger is active!
[2021-06-11 19:35:01,545][ INFO] [ _internal.py _log 225] * Debugger PIN: 182-666-074
[2021-06-11 19:35:01,805][ INFO] [ _internal.py _log 225] * Running on http://127.0.0.1:3000/ (Press CTRL+C to quit)
[2021-06-11 19:35:11,425][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:35:11] "[33mGET /api/v1/area/ HTTP/1.1[0m" 404 -
[2021-06-11 19:35:13,567][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:35:13] "[33mGET /api/v1/area/ HTTP/1.1[0m" 404 -
[2021-06-11 19:35:20,287][ INFO] [ _internal.py _log 225] * Restarting with stat
[2021-06-11 19:35:21,573][WARNING] [ _internal.py _log 225] * Debugger is active!
[2021-06-11 19:35:21,623][ INFO] [ _internal.py _log 225] * Debugger PIN: 182-666-074
[2021-06-11 19:35:21,898][ INFO] [ _internal.py _log 225] * Running on http://127.0.0.1:3000/ (Press CTRL+C to quit)
[2021-06-11 19:35:25,357][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:35:25] "[33mGET /api/v1/area/ HTTP/1.1[0m" 404 -
[2021-06-11 19:35:26,793][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:35:26] "[33mGET /api/v1/area/ HTTP/1.1[0m" 404 -
[2021-06-11 19:35:27,877][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:35:27] "[33mGET /api/v1/area/ HTTP/1.1[0m" 404 -
[2021-06-11 19:35:55,452][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:35:55] "[35m[1mGET /api/v1/area HTTP/1.1[0m" 500 -
[2021-06-11 19:35:55,477][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:35:55] "GET /api/v1/area?__debugger__=yes&cmd=resource&f=style.css HTTP/1.1" 200 -
[2021-06-11 19:35:55,792][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:35:55] "GET /api/v1/area?__debugger__=yes&cmd=resource&f=debugger.js HTTP/1.1" 200 -
[2021-06-11 19:35:56,112][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:35:56] "GET /api/v1/area?__debugger__=yes&cmd=resource&f=ubuntu.ttf HTTP/1.1" 200 -
[2021-06-11 19:35:56,151][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:35:56] "GET /api/v1/area?__debugger__=yes&cmd=resource&f=console.png HTTP/1.1" 200 -
[2021-06-11 19:35:56,353][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:35:56] "GET /api/v1/area?__debugger__=yes&cmd=resource&f=console.png HTTP/1.1" 200 -
[2021-06-11 19:35:57,801][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:35:57] "[35m[1mGET /api/v1/area HTTP/1.1[0m" 500 -
[2021-06-11 19:35:58,082][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:35:58] "GET /api/v1/area?__debugger__=yes&cmd=resource&f=style.css HTTP/1.1" 200 -
[2021-06-11 19:35:58,120][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:35:58] "GET /api/v1/area?__debugger__=yes&cmd=resource&f=debugger.js HTTP/1.1" 200 -
[2021-06-11 19:35:58,430][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:35:58] "GET /api/v1/area?__debugger__=yes&cmd=resource&f=ubuntu.ttf HTTP/1.1" 200 -
[2021-06-11 19:35:58,435][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:35:58] "GET /api/v1/area?__debugger__=yes&cmd=resource&f=console.png HTTP/1.1" 200 -
[2021-06-11 19:35:58,699][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:35:58] "[35m[1mGET /api/v1/area HTTP/1.1[0m" 500 -
[2021-06-11 19:35:58,746][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:35:58] "GET /api/v1/area?__debugger__=yes&cmd=resource&f=style.css HTTP/1.1" 200 -
[2021-06-11 19:35:58,795][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:35:58] "GET /api/v1/area?__debugger__=yes&cmd=resource&f=debugger.js HTTP/1.1" 200 -
[2021-06-11 19:35:59,020][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:35:59] "GET /api/v1/area?__debugger__=yes&cmd=resource&f=console.png HTTP/1.1" 200 -
[2021-06-11 19:35:59,021][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:35:59] "GET /api/v1/area?__debugger__=yes&cmd=resource&f=ubuntu.ttf HTTP/1.1" 200 -
[2021-06-11 19:35:59,189][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:35:59] "GET /api/v1/area?__debugger__=yes&cmd=resource&f=console.png HTTP/1.1" 200 -
[2021-06-11 19:38:03,375][ INFO] [ _internal.py _log 225] * Detected change in 'D:\\projects\\scriptiot\\evm-store\\tools\\build_out\\models\\area.py', reloading
[2021-06-11 19:38:03,496][ INFO] [ _internal.py _log 225] * Restarting with stat
[2021-06-11 19:38:04,994][WARNING] [ _internal.py _log 225] * Debugger is active!
[2021-06-11 19:38:05,041][ INFO] [ _internal.py _log 225] * Debugger PIN: 182-666-074
[2021-06-11 19:38:05,294][ INFO] [ _internal.py _log 225] * Running on http://127.0.0.1:3000/ (Press CTRL+C to quit)
[2021-06-11 19:38:11,717][ INFO] [ _internal.py _log 225] * Restarting with stat
[2021-06-11 19:38:13,011][WARNING] [ _internal.py _log 225] * Debugger is active!
[2021-06-11 19:38:13,057][ INFO] [ _internal.py _log 225] * Debugger PIN: 182-666-074
[2021-06-11 19:38:13,312][ INFO] [ _internal.py _log 225] * Running on http://127.0.0.1:3000/ (Press CTRL+C to quit)
[2021-06-11 19:38:17,197][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:38:17] "[33mGET /api/v1/area/ HTTP/1.1[0m" 404 -
[2021-06-11 19:38:20,571][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:38:20] "[35m[1mGET /api/v1/area HTTP/1.1[0m" 500 -
[2021-06-11 19:38:20,590][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:38:20] "GET /api/v1/area?__debugger__=yes&cmd=resource&f=style.css HTTP/1.1" 200 -
[2021-06-11 19:38:20,803][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:38:20] "GET /api/v1/area?__debugger__=yes&cmd=resource&f=debugger.js HTTP/1.1" 200 -
[2021-06-11 19:38:21,200][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:38:21] "GET /api/v1/area?__debugger__=yes&cmd=resource&f=ubuntu.ttf HTTP/1.1" 200 -
[2021-06-11 19:38:21,202][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:38:21] "GET /api/v1/area?__debugger__=yes&cmd=resource&f=console.png HTTP/1.1" 200 -
[2021-06-11 19:38:21,365][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:38:21] "GET /api/v1/area?__debugger__=yes&cmd=resource&f=console.png HTTP/1.1" 200 -
[2021-06-11 19:39:11,214][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:39:11] "[35m[1mGET /api/v1/area HTTP/1.1[0m" 500 -
[2021-06-11 19:39:12,727][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:39:12] "[35m[1mGET /api/v1/area HTTP/1.1[0m" 500 -
[2021-06-11 19:39:48,683][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:39:48] "[35m[1mGET /api/v1/area HTTP/1.1[0m" 500 -
[2021-06-11 19:39:48,700][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:39:48] "GET /api/v1/area?__debugger__=yes&cmd=resource&f=style.css HTTP/1.1" 200 -
[2021-06-11 19:39:48,918][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:39:48] "GET /api/v1/area?__debugger__=yes&cmd=resource&f=debugger.js HTTP/1.1" 200 -
[2021-06-11 19:39:49,229][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:39:49] "GET /api/v1/area?__debugger__=yes&cmd=resource&f=ubuntu.ttf HTTP/1.1" 200 -
[2021-06-11 19:39:49,235][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:39:49] "GET /api/v1/area?__debugger__=yes&cmd=resource&f=console.png HTTP/1.1" 200 -
[2021-06-11 19:39:49,479][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:39:49] "GET /api/v1/area?__debugger__=yes&cmd=resource&f=console.png HTTP/1.1" 200 -
[2021-06-11 19:39:55,586][ INFO] [ _internal.py _log 225] * To enable the debugger you need to enter the security pin:
[2021-06-11 19:39:55,586][ INFO] [ _internal.py _log 225] * Debugger pin code: 182-666-074
[2021-06-11 19:39:55,586][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:39:55] "GET /api/v1/area?__debugger__=yes&cmd=printpin&s=IhT3hL5vfZFkro1LcRSv HTTP/1.1" 200 -
[2021-06-11 19:40:39,563][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:40:39] "[35m[1mGET /api/v1/area HTTP/1.1[0m" 500 -
[2021-06-11 19:40:59,933][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:40:59] "[35m[1mGET /api/v1/area HTTP/1.1[0m" 500 -
[2021-06-11 19:41:04,856][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:41:04] "[35m[1mGET /api/v1/area HTTP/1.1[0m" 500 -
[2021-06-11 19:41:04,873][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:41:04] "GET /api/v1/area?__debugger__=yes&cmd=resource&f=style.css HTTP/1.1" 200 -
[2021-06-11 19:41:05,133][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:41:05] "GET /api/v1/area?__debugger__=yes&cmd=resource&f=debugger.js HTTP/1.1" 200 -
[2021-06-11 19:41:05,443][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:41:05] "GET /api/v1/area?__debugger__=yes&cmd=resource&f=ubuntu.ttf HTTP/1.1" 200 -
[2021-06-11 19:41:05,452][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:41:05] "GET /api/v1/area?__debugger__=yes&cmd=resource&f=console.png HTTP/1.1" 200 -
[2021-06-11 19:41:05,694][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:41:05] "GET /api/v1/area?__debugger__=yes&cmd=resource&f=console.png HTTP/1.1" 200 -
[2021-06-11 19:42:21,380][ INFO] [ _internal.py _log 225] * Detected change in 'D:\\projects\\scriptiot\\evm-store\\tools\\build_out\\views\\area.py', reloading
[2021-06-11 19:42:21,506][ INFO] [ _internal.py _log 225] * Restarting with stat
[2021-06-11 19:42:22,869][WARNING] [ _internal.py _log 225] * Debugger is active!
[2021-06-11 19:42:22,917][ INFO] [ _internal.py _log 225] * Debugger PIN: 182-666-074
[2021-06-11 19:42:23,176][ INFO] [ _internal.py _log 225] * Running on http://127.0.0.1:3000/ (Press CTRL+C to quit)
[2021-06-11 19:42:38,766][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:42:38] "[35m[1mGET /api/v1/area HTTP/1.1[0m" 500 -
[2021-06-11 19:42:39,929][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:42:39] "[35m[1mGET /api/v1/area HTTP/1.1[0m" 500 -
[2021-06-11 19:43:37,391][ INFO] [ _internal.py _log 225] * Detected change in 'D:\\projects\\scriptiot\\evm-store\\tools\\build_out\\application\\signal_manager.py', reloading
[2021-06-11 19:43:37,502][ INFO] [ _internal.py _log 225] * Restarting with stat
[2021-06-11 19:43:38,962][WARNING] [ _internal.py _log 225] * Debugger is active!
[2021-06-11 19:43:39,011][ INFO] [ _internal.py _log 225] * Debugger PIN: 182-666-074
[2021-06-11 19:43:43,290][ INFO] [ _internal.py _log 225] * Restarting with stat
[2021-06-11 19:43:44,660][WARNING] [ _internal.py _log 225] * Debugger is active!
[2021-06-11 19:43:44,710][ INFO] [ _internal.py _log 225] * Debugger PIN: 182-666-074
[2021-06-11 19:43:44,973][ INFO] [ _internal.py _log 225] * Running on http://127.0.0.1:3000/ (Press CTRL+C to quit)
[2021-06-11 19:43:46,357][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:43:46] "[35m[1mGET /api/v1/area HTTP/1.1[0m" 500 -
[2021-06-11 19:43:47,540][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:43:47] "[35m[1mGET /api/v1/area HTTP/1.1[0m" 500 -
[2021-06-11 19:44:03,604][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:44:03] "[35m[1mGET /api/v1/area HTTP/1.1[0m" 500 -
[2021-06-11 19:44:10,919][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:44:10] "[35m[1mGET /api/v1/area HTTP/1.1[0m" 500 -
[2021-06-11 19:44:10,936][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:44:10] "GET /api/v1/area?__debugger__=yes&cmd=resource&f=style.css HTTP/1.1" 200 -
[2021-06-11 19:44:11,153][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:44:11] "GET /api/v1/area?__debugger__=yes&cmd=resource&f=debugger.js HTTP/1.1" 200 -
[2021-06-11 19:44:11,464][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:44:11] "GET /api/v1/area?__debugger__=yes&cmd=resource&f=ubuntu.ttf HTTP/1.1" 200 -
[2021-06-11 19:44:11,470][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:44:11] "GET /api/v1/area?__debugger__=yes&cmd=resource&f=console.png HTTP/1.1" 200 -
[2021-06-11 19:44:11,714][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:44:11] "GET /api/v1/area?__debugger__=yes&cmd=resource&f=console.png HTTP/1.1" 200 -
[2021-06-11 19:44:13,275][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:44:13] "[35m[1mGET /api/v1/area HTTP/1.1[0m" 500 -
[2021-06-11 19:44:13,559][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:44:13] "GET /api/v1/area?__debugger__=yes&cmd=resource&f=style.css HTTP/1.1" 200 -
[2021-06-11 19:44:13,594][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:44:13] "GET /api/v1/area?__debugger__=yes&cmd=resource&f=debugger.js HTTP/1.1" 200 -
[2021-06-11 19:44:13,904][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:44:13] "GET /api/v1/area?__debugger__=yes&cmd=resource&f=ubuntu.ttf HTTP/1.1" 200 -
[2021-06-11 19:44:13,914][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:44:13] "GET /api/v1/area?__debugger__=yes&cmd=resource&f=console.png HTTP/1.1" 200 -
[2021-06-11 19:44:14,229][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:44:14] "GET /api/v1/area?__debugger__=yes&cmd=resource&f=console.png HTTP/1.1" 200 -
[2021-06-11 19:44:17,395][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:44:17] "[35m[1mGET /api/v1/area HTTP/1.1[0m" 500 -
[2021-06-11 19:44:17,676][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:44:17] "GET /api/v1/area?__debugger__=yes&cmd=resource&f=style.css HTTP/1.1" 200 -
[2021-06-11 19:44:17,714][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:44:17] "GET /api/v1/area?__debugger__=yes&cmd=resource&f=debugger.js HTTP/1.1" 200 -
[2021-06-11 19:44:18,023][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:44:18] "GET /api/v1/area?__debugger__=yes&cmd=resource&f=ubuntu.ttf HTTP/1.1" 200 -
[2021-06-11 19:44:18,032][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:44:18] "GET /api/v1/area?__debugger__=yes&cmd=resource&f=console.png HTTP/1.1" 200 -
[2021-06-11 19:44:18,274][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:44:18] "GET /api/v1/area?__debugger__=yes&cmd=resource&f=console.png HTTP/1.1" 200 -
[2021-06-11 19:46:52,042][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:46:52] "[35m[1mGET /api/v1/area HTTP/1.1[0m" 500 -
[2021-06-11 19:46:52,941][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:46:52] "[35m[1mGET /api/v1/area HTTP/1.1[0m" 500 -
[2021-06-11 19:47:00,364][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:47:00] "[35m[1mGET /api/v1/area HTTP/1.1[0m" 500 -
[2021-06-11 19:47:00,383][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:47:00] "GET /api/v1/area?__debugger__=yes&cmd=resource&f=style.css HTTP/1.1" 200 -
[2021-06-11 19:47:00,600][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:47:00] "GET /api/v1/area?__debugger__=yes&cmd=resource&f=debugger.js HTTP/1.1" 200 -
[2021-06-11 19:47:01,025][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:47:01] "GET /api/v1/area?__debugger__=yes&cmd=resource&f=ubuntu.ttf HTTP/1.1" 200 -
[2021-06-11 19:47:01,027][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:47:01] "GET /api/v1/area?__debugger__=yes&cmd=resource&f=console.png HTTP/1.1" 200 -
[2021-06-11 19:47:01,161][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:47:01] "GET /api/v1/area?__debugger__=yes&cmd=resource&f=console.png HTTP/1.1" 200 -
[2021-06-11 19:47:03,313][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:47:03] "[35m[1mGET /api/v1/area HTTP/1.1[0m" 500 -
[2021-06-11 19:47:03,597][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:47:03] "GET /api/v1/area?__debugger__=yes&cmd=resource&f=style.css HTTP/1.1" 200 -
[2021-06-11 19:47:03,632][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:47:03] "GET /api/v1/area?__debugger__=yes&cmd=resource&f=debugger.js HTTP/1.1" 200 -
[2021-06-11 19:47:03,941][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:47:03] "GET /api/v1/area?__debugger__=yes&cmd=resource&f=ubuntu.ttf HTTP/1.1" 200 -
[2021-06-11 19:47:03,949][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:47:03] "GET /api/v1/area?__debugger__=yes&cmd=resource&f=console.png HTTP/1.1" 200 -
[2021-06-11 19:47:04,192][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:47:04] "GET /api/v1/area?__debugger__=yes&cmd=resource&f=console.png HTTP/1.1" 200 -
[2021-06-11 19:47:05,760][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:47:05] "[35m[1mGET /api/v1/area HTTP/1.1[0m" 500 -
[2021-06-11 19:47:06,042][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:47:06] "GET /api/v1/area?__debugger__=yes&cmd=resource&f=style.css HTTP/1.1" 200 -
[2021-06-11 19:47:06,078][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:47:06] "GET /api/v1/area?__debugger__=yes&cmd=resource&f=debugger.js HTTP/1.1" 200 -
[2021-06-11 19:47:06,388][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:47:06] "GET /api/v1/area?__debugger__=yes&cmd=resource&f=ubuntu.ttf HTTP/1.1" 200 -
[2021-06-11 19:47:06,394][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:47:06] "GET /api/v1/area?__debugger__=yes&cmd=resource&f=console.png HTTP/1.1" 200 -
[2021-06-11 19:47:06,639][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:47:06] "GET /api/v1/area?__debugger__=yes&cmd=resource&f=console.png HTTP/1.1" 200 -
[2021-06-11 19:47:07,200][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:47:07] "[35m[1mGET /api/v1/area HTTP/1.1[0m" 500 -
[2021-06-11 19:47:07,485][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:47:07] "GET /api/v1/area?__debugger__=yes&cmd=resource&f=style.css HTTP/1.1" 200 -
[2021-06-11 19:47:07,520][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:47:07] "GET /api/v1/area?__debugger__=yes&cmd=resource&f=debugger.js HTTP/1.1" 200 -
[2021-06-11 19:47:07,832][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:47:07] "GET /api/v1/area?__debugger__=yes&cmd=resource&f=ubuntu.ttf HTTP/1.1" 200 -
[2021-06-11 19:47:07,835][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:47:07] "GET /api/v1/area?__debugger__=yes&cmd=resource&f=console.png HTTP/1.1" 200 -
[2021-06-11 19:47:08,101][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:47:08] "[35m[1mGET /api/v1/area HTTP/1.1[0m" 500 -
[2021-06-11 19:47:08,147][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:47:08] "GET /api/v1/area?__debugger__=yes&cmd=resource&f=style.css HTTP/1.1" 200 -
[2021-06-11 19:47:08,306][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:47:08] "GET /api/v1/area?__debugger__=yes&cmd=resource&f=debugger.js HTTP/1.1" 200 -
[2021-06-11 19:47:08,434][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:47:08] "[35m[1mGET /api/v1/area HTTP/1.1[0m" 500 -
[2021-06-11 19:47:08,437][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:47:08] "GET /api/v1/area?__debugger__=yes&cmd=resource&f=ubuntu.ttf HTTP/1.1" 200 -
[2021-06-11 19:47:08,616][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:47:08] "GET /api/v1/area?__debugger__=yes&cmd=resource&f=style.css HTTP/1.1" 200 -
[2021-06-11 19:47:08,639][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:47:08] "[35m[1mGET /api/v1/area HTTP/1.1[0m" 500 -
[2021-06-11 19:47:08,664][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:47:08] "GET /api/v1/area?__debugger__=yes&cmd=resource&f=style.css HTTP/1.1" 200 -
[2021-06-11 19:47:08,754][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:47:08] "GET /api/v1/area?__debugger__=yes&cmd=resource&f=debugger.js HTTP/1.1" 200 -
[2021-06-11 19:47:08,885][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:47:08] "GET /api/v1/area?__debugger__=yes&cmd=resource&f=console.png HTTP/1.1" 200 -
[2021-06-11 19:47:08,901][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:47:08] "GET /api/v1/area?__debugger__=yes&cmd=resource&f=ubuntu.ttf HTTP/1.1" 200 -
[2021-06-11 19:47:08,973][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:47:08] "[35m[1mGET /api/v1/area HTTP/1.1[0m" 500 -
[2021-06-11 19:47:08,991][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:47:08] "GET /api/v1/area?__debugger__=yes&cmd=resource&f=style.css HTTP/1.1" 200 -
[2021-06-11 19:47:09,072][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:47:09] "GET /api/v1/area?__debugger__=yes&cmd=resource&f=debugger.js HTTP/1.1" 200 -
[2021-06-11 19:47:09,183][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:47:09] "GET /api/v1/area?__debugger__=yes&cmd=resource&f=ubuntu.ttf HTTP/1.1" 200 -
[2021-06-11 19:47:09,315][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:47:09] "[35m[1mGET /api/v1/area HTTP/1.1[0m" 500 -
[2021-06-11 19:47:09,382][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:47:09] "GET /api/v1/area?__debugger__=yes&cmd=resource&f=style.css HTTP/1.1" 200 -
[2021-06-11 19:47:09,394][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:47:09] "GET /api/v1/area?__debugger__=yes&cmd=resource&f=debugger.js HTTP/1.1" 200 -
[2021-06-11 19:47:09,492][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:47:09] "GET /api/v1/area?__debugger__=yes&cmd=resource&f=ubuntu.ttf HTTP/1.1" 200 -
[2021-06-11 19:47:09,634][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:47:09] "GET /api/v1/area?__debugger__=yes&cmd=resource&f=console.png HTTP/1.1" 200 -
[2021-06-11 19:47:09,644][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:47:09] "GET /api/v1/area?__debugger__=yes&cmd=resource&f=console.png HTTP/1.1" 200 -
[2021-06-11 19:47:10,600][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:47:10] "[35m[1mGET /api/v1/area HTTP/1.1[0m" 500 -
[2021-06-11 19:47:10,617][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:47:10] "GET /api/v1/area?__debugger__=yes&cmd=resource&f=style.css HTTP/1.1" 200 -
[2021-06-11 19:47:10,937][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:47:10] "[35m[1mGET /api/v1/area HTTP/1.1[0m" 500 -
[2021-06-11 19:47:11,133][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:47:11] "GET /api/v1/area?__debugger__=yes&cmd=resource&f=style.css HTTP/1.1" 200 -
[2021-06-11 19:47:11,270][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:47:11] "[35m[1mGET /api/v1/area HTTP/1.1[0m" 500 -
[2021-06-11 19:47:11,273][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:47:11] "GET /api/v1/area?__debugger__=yes&cmd=resource&f=debugger.js HTTP/1.1" 200 -
[2021-06-11 19:47:11,514][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:47:11] "GET /api/v1/area?__debugger__=yes&cmd=resource&f=style.css HTTP/1.1" 200 -
[2021-06-11 19:47:11,588][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:47:11] "GET /api/v1/area?__debugger__=yes&cmd=resource&f=debugger.js HTTP/1.1" 200 -
[2021-06-11 19:47:11,596][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:47:11] "GET /api/v1/area?__debugger__=yes&cmd=resource&f=console.png HTTP/1.1" 200 -
[2021-06-11 19:47:11,907][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:47:11] "GET /api/v1/area?__debugger__=yes&cmd=resource&f=ubuntu.ttf HTTP/1.1" 200 -
[2021-06-11 19:47:12,255][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:47:12] "GET /api/v1/area?__debugger__=yes&cmd=resource&f=console.png HTTP/1.1" 200 -
[2021-06-11 19:47:17,826][ INFO] [ _internal.py _log 225] * Detected change in 'D:\\projects\\scriptiot\\evm-store\\tools\\build_out\\views\\area.py', reloading
[2021-06-11 19:47:17,967][ INFO] [ _internal.py _log 225] * Restarting with stat
[2021-06-11 19:47:19,324][WARNING] [ _internal.py _log 225] * Debugger is active!
[2021-06-11 19:47:19,372][ INFO] [ _internal.py _log 225] * Debugger PIN: 182-666-074
[2021-06-11 19:47:19,633][ INFO] [ _internal.py _log 225] * Running on http://127.0.0.1:3000/ (Press CTRL+C to quit)
[2021-06-11 19:47:27,625][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:47:27] "[35m[1mGET /api/v1/area HTTP/1.1[0m" 500 -
[2021-06-11 19:47:27,642][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:47:27] "GET /api/v1/area?__debugger__=yes&cmd=resource&f=style.css HTTP/1.1" 200 -
[2021-06-11 19:47:27,881][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:47:27] "[35m[1mGET /api/v1/area HTTP/1.1[0m" 500 -
[2021-06-11 19:47:28,073][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:47:28] "GET /api/v1/area?__debugger__=yes&cmd=resource&f=style.css HTTP/1.1" 200 -
[2021-06-11 19:47:28,216][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:47:28] "[35m[1mGET /api/v1/area HTTP/1.1[0m" 500 -
[2021-06-11 19:47:28,220][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:47:28] "GET /api/v1/area?__debugger__=yes&cmd=resource&f=debugger.js HTTP/1.1" 200 -
[2021-06-11 19:47:28,288][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:47:28] "GET /api/v1/area?__debugger__=yes&cmd=resource&f=style.css HTTP/1.1" 200 -
[2021-06-11 19:47:28,616][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:47:28] "GET /api/v1/area?__debugger__=yes&cmd=resource&f=debugger.js HTTP/1.1" 200 -
[2021-06-11 19:47:28,623][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:47:28] "GET /api/v1/area?__debugger__=yes&cmd=resource&f=console.png HTTP/1.1" 200 -
[2021-06-11 19:47:28,934][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:47:28] "GET /api/v1/area?__debugger__=yes&cmd=resource&f=ubuntu.ttf HTTP/1.1" 200 -
[2021-06-11 19:47:29,185][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:47:29] "GET /api/v1/area?__debugger__=yes&cmd=resource&f=console.png HTTP/1.1" 200 -
[2021-06-11 19:47:31,967][ INFO] [ _internal.py _log 225] * Detected change in 'D:\\projects\\scriptiot\\evm-store\\tools\\build_out\\views\\area.py', reloading
[2021-06-11 19:47:32,098][ INFO] [ _internal.py _log 225] * Restarting with stat
[2021-06-11 19:47:54,934][ INFO] [ _internal.py _log 225] * Restarting with stat
[2021-06-11 19:47:56,309][WARNING] [ _internal.py _log 225] * Debugger is active!
[2021-06-11 19:47:56,356][ INFO] [ _internal.py _log 225] * Debugger PIN: 182-666-074
[2021-06-11 19:47:56,622][ INFO] [ _internal.py _log 225] * Running on http://127.0.0.1:3000/ (Press CTRL+C to quit)
[2021-06-11 19:47:57,403][ ERROR] [ area.py get 69] {'_schema': ['Invalid input type.']}
[2021-06-11 19:47:57,404][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:47:57] "GET /api/v1/area HTTP/1.1" 200 -
[2021-06-11 19:47:59,337][ ERROR] [ area.py get 69] {'_schema': ['Invalid input type.']}
[2021-06-11 19:47:59,338][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:47:59] "GET /api/v1/area HTTP/1.1" 200 -
[2021-06-11 19:47:59,717][ ERROR] [ area.py get 69] {'_schema': ['Invalid input type.']}
[2021-06-11 19:47:59,718][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:47:59] "GET /api/v1/area HTTP/1.1" 200 -
[2021-06-11 19:48:00,018][ ERROR] [ area.py get 69] {'_schema': ['Invalid input type.']}
[2021-06-11 19:48:00,019][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:48:00] "GET /api/v1/area HTTP/1.1" 200 -
[2021-06-11 19:48:00,274][ ERROR] [ area.py get 69] {'_schema': ['Invalid input type.']}
[2021-06-11 19:48:00,275][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:48:00] "GET /api/v1/area HTTP/1.1" 200 -
[2021-06-11 19:48:11,701][ ERROR] [ area.py get 69] {'id': ['Unknown field.']}
[2021-06-11 19:48:11,702][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:48:11] "GET /api/v1/area HTTP/1.1" 200 -
[2021-06-11 19:48:13,207][ ERROR] [ area.py get 69] {'id': ['Unknown field.']}
[2021-06-11 19:48:13,208][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:48:13] "GET /api/v1/area HTTP/1.1" 200 -
[2021-06-11 19:48:14,335][ ERROR] [ area.py get 69] {'id': ['Unknown field.']}
[2021-06-11 19:48:14,336][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:48:14] "GET /api/v1/area HTTP/1.1" 200 -
[2021-06-11 19:48:15,128][ ERROR] [ area.py get 69] {'id': ['Unknown field.']}
[2021-06-11 19:48:15,129][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:48:15] "GET /api/v1/area HTTP/1.1" 200 -
[2021-06-11 19:48:16,198][ ERROR] [ area.py get 69] {'id': ['Unknown field.']}
[2021-06-11 19:48:16,199][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:48:16] "GET /api/v1/area HTTP/1.1" 200 -
[2021-06-11 19:48:16,907][ ERROR] [ area.py get 69] {'id': ['Unknown field.']}
[2021-06-11 19:48:16,908][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:48:16] "GET /api/v1/area HTTP/1.1" 200 -
[2021-06-11 19:48:17,882][ ERROR] [ area.py get 69] {'id': ['Unknown field.']}
[2021-06-11 19:48:17,884][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:48:17] "GET /api/v1/area HTTP/1.1" 200 -
[2021-06-11 19:48:18,703][ ERROR] [ area.py get 69] {'id': ['Unknown field.']}
[2021-06-11 19:48:18,703][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:48:18] "GET /api/v1/area HTTP/1.1" 200 -
[2021-06-11 19:48:19,327][ ERROR] [ area.py get 69] {'id': ['Unknown field.']}
[2021-06-11 19:48:19,328][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:48:19] "GET /api/v1/area HTTP/1.1" 200 -
[2021-06-11 19:48:20,382][ ERROR] [ area.py get 69] {'id': ['Unknown field.']}
[2021-06-11 19:48:20,382][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:48:20] "GET /api/v1/area HTTP/1.1" 200 -
[2021-06-11 19:48:21,420][ ERROR] [ area.py get 69] {'id': ['Unknown field.']}
[2021-06-11 19:48:21,421][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:48:21] "GET /api/v1/area HTTP/1.1" 200 -
[2021-06-11 19:48:22,310][ ERROR] [ area.py get 69] {'id': ['Unknown field.']}
[2021-06-11 19:48:22,311][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:48:22] "GET /api/v1/area HTTP/1.1" 200 -
[2021-06-11 19:48:23,280][ ERROR] [ area.py get 69] {'id': ['Unknown field.']}
[2021-06-11 19:48:23,281][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:48:23] "GET /api/v1/area HTTP/1.1" 200 -
[2021-06-11 19:48:24,290][ ERROR] [ area.py get 69] {'id': ['Unknown field.']}
[2021-06-11 19:48:24,291][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:48:24] "GET /api/v1/area HTTP/1.1" 200 -
[2021-06-11 19:48:25,290][ ERROR] [ area.py get 69] {'id': ['Unknown field.']}
[2021-06-11 19:48:25,291][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:48:25] "GET /api/v1/area HTTP/1.1" 200 -
[2021-06-11 19:48:26,178][ ERROR] [ area.py get 69] {'id': ['Unknown field.']}
[2021-06-11 19:48:26,179][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:48:26] "GET /api/v1/area HTTP/1.1" 200 -
[2021-06-11 19:48:27,058][ ERROR] [ area.py get 69] {'id': ['Unknown field.']}
[2021-06-11 19:48:27,059][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:48:27] "GET /api/v1/area HTTP/1.1" 200 -
[2021-06-11 19:48:27,799][ ERROR] [ area.py get 69] {'id': ['Unknown field.']}
[2021-06-11 19:48:27,800][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:48:27] "GET /api/v1/area HTTP/1.1" 200 -
[2021-06-11 19:48:28,605][ ERROR] [ area.py get 69] {'id': ['Unknown field.']}
[2021-06-11 19:48:28,606][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:48:28] "GET /api/v1/area HTTP/1.1" 200 -
[2021-06-11 19:48:29,355][ ERROR] [ area.py get 69] {'id': ['Unknown field.']}
[2021-06-11 19:48:29,356][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:48:29] "GET /api/v1/area HTTP/1.1" 200 -
[2021-06-11 19:48:30,130][ ERROR] [ area.py get 69] {'id': ['Unknown field.']}
[2021-06-11 19:48:30,130][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:48:30] "GET /api/v1/area HTTP/1.1" 200 -
[2021-06-11 19:48:31,194][ ERROR] [ area.py get 69] {'id': ['Unknown field.']}
[2021-06-11 19:48:31,195][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:48:31] "GET /api/v1/area HTTP/1.1" 200 -
[2021-06-11 19:48:32,026][ ERROR] [ area.py get 69] {'id': ['Unknown field.']}
[2021-06-11 19:48:32,027][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 19:48:32] "GET /api/v1/area HTTP/1.1" 200 -
[2021-06-11 20:51:55,859][ ERROR] [ area.py get 69] {'_schema': ['Invalid input type.']}
[2021-06-11 20:51:55,861][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 20:51:55] "GET /api/v1/area HTTP/1.1" 200 -
[2021-06-11 20:54:16,688][ ERROR] [ area.py get 69] {'id': ['Unknown field.']}
[2021-06-11 20:54:16,689][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 20:54:16] "GET /api/v1/area HTTP/1.1" 200 -
[2021-06-11 20:54:17,854][ ERROR] [ area.py get 69] {'id': ['Unknown field.']}
[2021-06-11 20:54:17,855][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 20:54:17] "GET /api/v1/area HTTP/1.1" 200 -
[2021-06-11 20:54:18,832][ ERROR] [ area.py get 69] {'id': ['Unknown field.']}
[2021-06-11 20:54:18,833][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 20:54:18] "GET /api/v1/area HTTP/1.1" 200 -
[2021-06-11 22:00:59,294][ ERROR] [ area.py get 69] {'id': ['Unknown field.']}
[2021-06-11 22:00:59,296][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 22:00:59] "GET /api/v1/area HTTP/1.1" 200 -
[2021-06-11 22:01:00,677][ ERROR] [ area.py get 69] {'id': ['Unknown field.']}
[2021-06-11 22:01:00,678][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 22:01:00] "GET /api/v1/area HTTP/1.1" 200 -
[2021-06-11 22:01:01,549][ ERROR] [ area.py get 69] {'id': ['Unknown field.']}
[2021-06-11 22:01:01,550][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 22:01:01] "GET /api/v1/area HTTP/1.1" 200 -
[2021-06-11 22:01:02,216][ ERROR] [ area.py get 69] {'id': ['Unknown field.']}
[2021-06-11 22:01:02,216][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 22:01:02] "GET /api/v1/area HTTP/1.1" 200 -
[2021-06-11 22:01:03,365][ ERROR] [ area.py get 69] {'id': ['Unknown field.']}
[2021-06-11 22:01:03,366][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 22:01:03] "GET /api/v1/area HTTP/1.1" 200 -
[2021-06-11 22:01:04,133][ ERROR] [ area.py get 69] {'id': ['Unknown field.']}
[2021-06-11 22:01:04,134][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 22:01:04] "GET /api/v1/area HTTP/1.1" 200 -
[2021-06-11 22:01:05,194][ ERROR] [ area.py get 69] {'id': ['Unknown field.']}
[2021-06-11 22:01:05,195][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 22:01:05] "GET /api/v1/area HTTP/1.1" 200 -
[2021-06-11 22:01:11,682][ ERROR] [ area.py get 69] {'_schema': ['Invalid input type.']}
[2021-06-11 22:01:11,683][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 22:01:11] "GET /api/v1/area HTTP/1.1" 200 -
[2021-06-11 22:01:12,138][ ERROR] [ area.py get 69] {'_schema': ['Invalid input type.']}
[2021-06-11 22:01:12,139][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 22:01:12] "GET /api/v1/area HTTP/1.1" 200 -
[2021-06-11 22:02:26,406][ ERROR] [ area.py get 69] {'id': ['Unknown field.']}
[2021-06-11 22:02:26,406][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 22:02:26] "GET /api/v1/area HTTP/1.1" 200 -
[2021-06-11 22:02:27,736][ ERROR] [ area.py get 69] {'id': ['Unknown field.']}
[2021-06-11 22:02:27,737][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 22:02:27] "GET /api/v1/area HTTP/1.1" 200 -
[2021-06-11 22:02:28,937][ ERROR] [ area.py get 69] {'id': ['Unknown field.']}
[2021-06-11 22:02:28,938][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 22:02:28] "GET /api/v1/area HTTP/1.1" 200 -
[2021-06-11 22:02:33,843][ INFO] [ _internal.py _log 225] * Detected change in 'D:\\projects\\scriptiot\\evm-store\\tools\\build_out\\views\\area.py', reloading
[2021-06-11 22:02:34,032][ INFO] [ _internal.py _log 225] * Restarting with stat
[2021-06-11 22:02:35,629][WARNING] [ _internal.py _log 225] * Debugger is active!
[2021-06-11 22:02:35,684][ INFO] [ _internal.py _log 225] * Debugger PIN: 182-666-074
[2021-06-11 22:02:35,979][ INFO] [ _internal.py _log 225] * Running on http://127.0.0.1:3000/ (Press CTRL+C to quit)
[2021-06-11 22:02:39,221][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 22:02:39] "[35m[1mGET /api/v1/area HTTP/1.1[0m" 500 -
[2021-06-11 22:02:40,571][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 22:02:40] "[35m[1mGET /api/v1/area HTTP/1.1[0m" 500 -
[2021-06-11 22:06:10,432][ INFO] [ _internal.py _log 225] * Restarting with stat
[2021-06-11 22:06:11,801][WARNING] [ _internal.py _log 225] * Debugger is active!
[2021-06-11 22:06:11,856][ INFO] [ _internal.py _log 225] * Debugger PIN: 182-666-074
[2021-06-11 22:06:12,130][ INFO] [ _internal.py _log 225] * Running on http://127.0.0.1:3000/ (Press CTRL+C to quit)
[2021-06-11 22:06:16,048][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 22:06:16] "[35m[1mGET /api/v1/area HTTP/1.1[0m" 500 -
[2021-06-11 22:06:17,514][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 22:06:17] "[35m[1mGET /api/v1/area HTTP/1.1[0m" 500 -
[2021-06-11 22:06:27,563][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 22:06:27] "[35m[1mGET /api/v1/area HTTP/1.1[0m" 500 -
[2021-06-11 22:06:28,945][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 22:06:28] "[35m[1mGET /api/v1/area HTTP/1.1[0m" 500 -
[2021-06-11 22:08:45,737][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 22:08:45] "[35m[1mGET /api/v1/area HTTP/1.1[0m" 500 -
[2021-06-11 22:08:45,763][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 22:08:45] "GET /api/v1/area?__debugger__=yes&cmd=resource&f=style.css HTTP/1.1" 200 -
[2021-06-11 22:08:45,970][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 22:08:45] "GET /api/v1/area?__debugger__=yes&cmd=resource&f=debugger.js HTTP/1.1" 200 -
[2021-06-11 22:08:46,282][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 22:08:46] "GET /api/v1/area?__debugger__=yes&cmd=resource&f=ubuntu.ttf HTTP/1.1" 200 -
[2021-06-11 22:08:46,368][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 22:08:46] "GET /api/v1/area?__debugger__=yes&cmd=resource&f=console.png HTTP/1.1" 200 -
[2021-06-11 22:08:46,533][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 22:08:46] "GET /api/v1/area?__debugger__=yes&cmd=resource&f=console.png HTTP/1.1" 200 -
[2021-06-11 22:11:37,620][ INFO] [ _internal.py _log 225] * Detected change in 'D:\\projects\\scriptiot\\evm-store\\tools\\build_out\\views\\area.py', reloading
[2021-06-11 22:11:37,761][ INFO] [ _internal.py _log 225] * Restarting with stat
[2021-06-11 22:11:39,336][WARNING] [ _internal.py _log 225] * Debugger is active!
[2021-06-11 22:11:39,392][ INFO] [ _internal.py _log 225] * Debugger PIN: 182-666-074
[2021-06-11 22:11:39,718][ INFO] [ _internal.py _log 225] * Running on http://127.0.0.1:3000/ (Press CTRL+C to quit)
[2021-06-11 22:11:47,633][ ERROR] [ area.py get 69] {'id': ['Unknown field.']}
[2021-06-11 22:11:47,634][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 22:11:47] "GET /api/v1/area HTTP/1.1" 200 -
[2021-06-11 22:11:50,734][ ERROR] [ area.py get 69] {'id': ['Unknown field.']}
[2021-06-11 22:11:50,735][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 22:11:50] "GET /api/v1/area HTTP/1.1" 200 -
[2021-06-11 22:11:51,832][ ERROR] [ area.py get 69] {'id': ['Unknown field.']}
[2021-06-11 22:11:51,833][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 22:11:51] "GET /api/v1/area HTTP/1.1" 200 -
[2021-06-11 22:11:52,989][ ERROR] [ area.py get 69] {'id': ['Unknown field.']}
[2021-06-11 22:11:52,991][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 22:11:52] "GET /api/v1/area HTTP/1.1" 200 -
[2021-06-11 22:11:53,810][ ERROR] [ area.py get 69] {'id': ['Unknown field.']}
[2021-06-11 22:11:53,811][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 22:11:53] "GET /api/v1/area HTTP/1.1" 200 -
[2021-06-11 22:11:54,441][ ERROR] [ area.py get 69] {'id': ['Unknown field.']}
[2021-06-11 22:11:54,442][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [11/Jun/2021 22:11:54] "GET /api/v1/area HTTP/1.1" 200 -
[2021-06-12 11:03:45,272][ INFO] [ _internal.py _log 225] * Restarting with stat
[2021-06-12 11:03:46,709][WARNING] [ _internal.py _log 225] * Debugger is active!
[2021-06-12 11:03:46,773][ INFO] [ _internal.py _log 225] * Debugger PIN: 182-666-074
[2021-06-12 11:03:47,052][ INFO] [ _internal.py _log 225] * Running on http://127.0.0.1:3000/ (Press CTRL+C to quit)
[2021-06-12 11:03:49,177][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [12/Jun/2021 11:03:49] "[35m[1mGET /api/v1/area HTTP/1.1[0m" 500 -
[2021-06-12 11:03:50,878][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [12/Jun/2021 11:03:50] "[35m[1mGET /api/v1/area HTTP/1.1[0m" 500 -
[2021-06-12 11:25:52,890][ INFO] [ _internal.py _log 225] * Detected change in 'D:\\projects\\scriptiot\\evm-store\\tools\\build_out\\webcreator\\__init__.py', reloading
[2021-06-12 11:25:53,025][ INFO] [ _internal.py _log 225] * Restarting with stat
[2021-06-15 10:51:14,114][ INFO] [ _internal.py _log 225] * Restarting with stat
[2021-06-15 10:51:15,218][WARNING] [ _internal.py _log 225] * Debugger is active!
[2021-06-15 10:51:15,280][ INFO] [ _internal.py _log 225] * Debugger PIN: 182-666-074
[2021-06-15 10:51:15,507][ INFO] [ _internal.py _log 225] * Running on http://127.0.0.1:3000/ (Press CTRL+C to quit)
[2021-06-15 11:10:06,108][ INFO] [ _internal.py _log 225] * Detected change in 'D:\\projects\\scriptiot\\evm-store\\tools\\build_out\\manager.py', reloading
[2021-06-15 11:10:06,221][ INFO] [ _internal.py _log 225] * Restarting with stat
[2021-06-15 14:08:51,000][ INFO] [ _internal.py _log 225] * Restarting with stat
[2021-06-15 14:08:52,172][WARNING] [ _internal.py _log 225] * Debugger is active!
[2021-06-15 14:08:52,216][ INFO] [ _internal.py _log 225] * Debugger PIN: 182-666-074
[2021-06-15 14:08:52,454][ INFO] [ _internal.py _log 225] * Running on http://127.0.0.1:3000/ (Press CTRL+C to quit)
[2021-06-15 15:31:27,665][ INFO] [ _internal.py _log 225] * Detected change in 'D:\\projects\\scriptiot\\evm-store\\tools\\build_out\\webcreator\\__init__.py', reloading
[2021-06-15 15:31:27,792][ INFO] [ _internal.py _log 225] * Restarting with stat
[2021-06-15 16:06:30,317][ INFO] [ _internal.py _log 225] * Restarting with stat
[2021-06-15 16:06:31,585][WARNING] [ _internal.py _log 225] * Debugger is active!
[2021-06-15 16:06:31,633][ INFO] [ _internal.py _log 225] * Debugger PIN: 182-666-074
[2021-06-15 16:06:31,899][ INFO] [ _internal.py _log 225] * Running on http://127.0.0.1:3000/ (Press CTRL+C to quit)
[2021-06-15 17:39:29,925][ INFO] [ _internal.py _log 225] * Detected change in 'D:\\projects\\scriptiot\\evm-store\\tools\\build_out\\application\\__init__.py', reloading
[2021-06-15 17:39:30,124][ INFO] [ _internal.py _log 225] * Restarting with stat
[2021-06-15 17:52:05,655][ INFO] [ _internal.py _log 225] * Restarting with stat
[2021-06-15 17:52:07,240][WARNING] [ _internal.py _log 225] * Debugger is active!
[2021-06-15 17:52:07,302][ INFO] [ _internal.py _log 225] * Debugger PIN: 182-666-074
[2021-06-15 17:52:07,621][ INFO] [ _internal.py _log 225] * Running on http://127.0.0.1:3000/ (Press CTRL+C to quit)
[2021-06-15 17:54:38,904][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [15/Jun/2021 17:54:38] "[35m[1mGET /api/v1/area HTTP/1.1[0m" 500 -
[2021-06-15 17:54:40,871][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [15/Jun/2021 17:54:40] "[35m[1mGET /api/v1/area HTTP/1.1[0m" 500 -
[2021-06-15 17:54:42,098][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [15/Jun/2021 17:54:42] "[35m[1mGET /api/v1/area HTTP/1.1[0m" 500 -
[2021-06-15 17:55:14,937][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [15/Jun/2021 17:55:14] "[35m[1mGET /api/v1/area/111 HTTP/1.1[0m" 500 -
[2021-06-15 17:55:55,962][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [15/Jun/2021 17:55:55] "[35m[1mGET /api/v1/area/7683fda4-8cb2-48db-9ef5-625b2738c3b5 HTTP/1.1[0m" 500 -
[2021-06-15 17:55:57,468][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [15/Jun/2021 17:55:57] "[35m[1mGET /api/v1/area/7683fda4-8cb2-48db-9ef5-625b2738c3b5 HTTP/1.1[0m" 500 -
[2021-06-15 17:55:58,205][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [15/Jun/2021 17:55:58] "[35m[1mGET /api/v1/area/7683fda4-8cb2-48db-9ef5-625b2738c3b5 HTTP/1.1[0m" 500 -
[2021-06-15 17:55:58,999][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [15/Jun/2021 17:55:58] "[35m[1mGET /api/v1/area/7683fda4-8cb2-48db-9ef5-625b2738c3b5 HTTP/1.1[0m" 500 -
[2021-06-15 17:56:40,524][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [15/Jun/2021 17:56:40] "[35m[1mGET /api/v1/area/7683fda4-8cb2-48db-9ef5-625b2738c3b5 HTTP/1.1[0m" 500 -
[2021-06-15 17:56:41,218][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [15/Jun/2021 17:56:41] "[35m[1mGET /api/v1/area/7683fda4-8cb2-48db-9ef5-625b2738c3b5 HTTP/1.1[0m" 500 -
[2021-06-15 17:57:15,449][ INFO] [ _internal.py _log 225] * Detected change in 'D:\\projects\\scriptiot\\evm-store\\tools\\build_out\\views\\area.py', reloading
[2021-06-15 17:57:15,592][ INFO] [ _internal.py _log 225] * Restarting with stat
[2021-06-15 17:57:17,023][WARNING] [ _internal.py _log 225] * Debugger is active!
[2021-06-15 17:57:17,078][ INFO] [ _internal.py _log 225] * Debugger PIN: 182-666-074
[2021-06-15 17:57:17,352][ INFO] [ _internal.py _log 225] * Running on http://127.0.0.1:3000/ (Press CTRL+C to quit)
[2021-06-15 17:57:20,759][ INFO] [ _internal.py _log 225] * Detected change in 'D:\\projects\\scriptiot\\evm-store\\tools\\build_out\\views\\area.py', reloading
[2021-06-15 17:57:20,886][ INFO] [ _internal.py _log 225] * Restarting with stat
[2021-06-15 17:57:22,284][WARNING] [ _internal.py _log 225] * Debugger is active!
[2021-06-15 17:57:22,341][ INFO] [ _internal.py _log 225] * Debugger PIN: 182-666-074
[2021-06-15 17:57:22,629][ INFO] [ _internal.py _log 225] * Running on http://127.0.0.1:3000/ (Press CTRL+C to quit)
[2021-06-15 17:57:27,375][ ERROR] [ area.py get 29] {'id': ['Unknown field.']}
[2021-06-15 17:57:27,376][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [15/Jun/2021 17:57:27] "GET /api/v1/area/7683fda4-8cb2-48db-9ef5-625b2738c3b5 HTTP/1.1" 200 -
[2021-06-15 17:57:29,184][ ERROR] [ area.py get 29] {'id': ['Unknown field.']}
[2021-06-15 17:57:29,184][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [15/Jun/2021 17:57:29] "GET /api/v1/area/7683fda4-8cb2-48db-9ef5-625b2738c3b5 HTTP/1.1" 200 -
[2021-06-15 17:57:29,816][ ERROR] [ area.py get 29] {'id': ['Unknown field.']}
[2021-06-15 17:57:29,817][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [15/Jun/2021 17:57:29] "GET /api/v1/area/7683fda4-8cb2-48db-9ef5-625b2738c3b5 HTTP/1.1" 200 -
[2021-06-15 17:57:30,734][ ERROR] [ area.py get 29] {'id': ['Unknown field.']}
[2021-06-15 17:57:30,735][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [15/Jun/2021 17:57:30] "GET /api/v1/area/7683fda4-8cb2-48db-9ef5-625b2738c3b5 HTTP/1.1" 200 -
[2021-06-15 17:59:19,277][ INFO] [ _internal.py _log 225] * Detected change in 'D:\\projects\\scriptiot\\evm-store\\tools\\build_out\\controllers\\user.py', reloading
[2021-06-15 17:59:19,414][ INFO] [ _internal.py _log 225] * Restarting with stat
[2021-06-15 17:59:20,799][WARNING] [ _internal.py _log 225] * Debugger is active!
[2021-06-15 17:59:20,845][ INFO] [ _internal.py _log 225] * Debugger PIN: 182-666-074
[2021-06-15 17:59:21,120][ INFO] [ _internal.py _log 225] * Running on http://127.0.0.1:3000/ (Press CTRL+C to quit)
[2021-06-15 17:59:25,888][ INFO] [ _internal.py _log 225] * Restarting with stat
[2021-06-15 17:59:27,184][WARNING] [ _internal.py _log 225] * Debugger is active!
[2021-06-15 17:59:27,230][ INFO] [ _internal.py _log 225] * Debugger PIN: 182-666-074
[2021-06-15 17:59:27,510][ INFO] [ _internal.py _log 225] * Running on http://127.0.0.1:3000/ (Press CTRL+C to quit)
[2021-06-15 17:59:30,476][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [15/Jun/2021 17:59:30] "[35m[1mGET /api/v1/area/7683fda4-8cb2-48db-9ef5-625b2738c3b5 HTTP/1.1[0m" 500 -
[2021-06-15 17:59:32,067][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [15/Jun/2021 17:59:32] "[35m[1mGET /api/v1/area/7683fda4-8cb2-48db-9ef5-625b2738c3b5 HTTP/1.1[0m" 500 -
[2021-06-15 18:01:06,682][ ERROR] [ area.py get 29] {'id': ['Unknown field.']}
[2021-06-15 18:01:06,682][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [15/Jun/2021 18:01:06] "GET /api/v1/area HTTP/1.1" 200 -
[2021-06-15 18:01:08,084][ ERROR] [ area.py get 29] {'id': ['Unknown field.']}
[2021-06-15 18:01:08,085][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [15/Jun/2021 18:01:08] "GET /api/v1/area HTTP/1.1" 200 -
[2021-06-15 18:01:08,820][ ERROR] [ area.py get 29] {'id': ['Unknown field.']}
[2021-06-15 18:01:08,821][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [15/Jun/2021 18:01:08] "GET /api/v1/area HTTP/1.1" 200 -
[2021-06-15 18:01:09,863][ ERROR] [ area.py get 29] {'id': ['Unknown field.']}
[2021-06-15 18:01:09,864][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [15/Jun/2021 18:01:09] "GET /api/v1/area HTTP/1.1" 200 -
[2021-06-15 18:01:10,802][ ERROR] [ area.py get 29] {'id': ['Unknown field.']}
[2021-06-15 18:01:10,804][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [15/Jun/2021 18:01:10] "GET /api/v1/area HTTP/1.1" 200 -
[2021-06-15 18:01:11,603][ ERROR] [ area.py get 29] {'id': ['Unknown field.']}
[2021-06-15 18:01:11,605][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [15/Jun/2021 18:01:11] "GET /api/v1/area HTTP/1.1" 200 -
[2021-06-15 18:01:12,364][ ERROR] [ area.py get 29] {'id': ['Unknown field.']}
[2021-06-15 18:01:12,365][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [15/Jun/2021 18:01:12] "GET /api/v1/area HTTP/1.1" 200 -
[2021-06-15 18:01:13,095][ ERROR] [ area.py get 29] {'id': ['Unknown field.']}
[2021-06-15 18:01:13,095][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [15/Jun/2021 18:01:13] "GET /api/v1/area HTTP/1.1" 200 -
[2021-06-15 18:01:13,812][ ERROR] [ area.py get 29] {'id': ['Unknown field.']}
[2021-06-15 18:01:13,813][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [15/Jun/2021 18:01:13] "GET /api/v1/area HTTP/1.1" 200 -
[2021-06-15 18:01:14,540][ ERROR] [ area.py get 29] {'id': ['Unknown field.']}
[2021-06-15 18:01:14,541][ INFO] [ _internal.py _log 225] 127.0.0.1 - - [15/Jun/2021 18:01:14] "GET /api/v1/area HTTP/1.1" 200 -
[2021-06-15 18:15:08,085][ INFO] [ _internal.py _log 225] * Detected change in 'D:\\projects\\scriptiot\\evm-store\\tools\\build_out\\views\\user.py', reloading
[2021-06-15 18:15:08,204][ INFO] [ _internal.py _log 225] * Restarting with stat
[2021-06-15 18:15:09,490][WARNING] [ _internal.py _log 225] * Debugger is active!
[2021-06-15 18:15:09,535][ INFO] [ _internal.py _log 225] * Debugger PIN: 182-666-074
[2021-06-15 18:15:09,797][ INFO] [ _internal.py _log 225] * Running on http://127.0.0.1:3000/ (Press CTRL+C to quit)
[2021-06-15 18:17:56,148][ INFO] [ _internal.py _log 225] * Detected change in 'D:\\projects\\scriptiot\\evm-store\\tools\\build_out\\views\\app.py', reloading
[2021-06-15 18:17:56,265][ INFO] [ _internal.py _log 225] * Restarting with stat
[2021-06-15 18:17:57,572][WARNING] [ _internal.py _log 225] * Debugger is active!
[2021-06-15 18:17:57,621][ INFO] [ _internal.py _log 225] * Debugger PIN: 182-666-074
[2021-06-15 18:17:57,879][ INFO] [ _internal.py _log 225] * Running on http://127.0.0.1:3000/ (Press CTRL+C to quit)
[2021-06-15 18:18:01,220][ INFO] [ _internal.py _log 225] * Detected change in 'D:\\projects\\scriptiot\\evm-store\\tools\\build_out\\views\\area.py', reloading
[2021-06-15 18:18:01,336][ INFO] [ _internal.py _log 225] * Restarting with stat
[2021-06-15 18:18:02,616][WARNING] [ _internal.py _log 225] * Debugger is active!
[2021-06-15 18:18:02,660][ INFO] [ _internal.py _log 225] * Debugger PIN: 182-666-074
[2021-06-15 18:18:02,916][ INFO] [ _internal.py _log 225] * Running on http://127.0.0.1:3000/ (Press CTRL+C to quit)
[2021-06-15 18:18:04,009][ INFO] [ _internal.py _log 225] * Detected change in 'D:\\projects\\scriptiot\\evm-store\\tools\\build_out\\views\\login.py', reloading
[2021-06-15 18:18:04,132][ INFO] [ _internal.py _log 225] * Restarting with stat
[2021-06-15 18:18:05,432][WARNING] [ _internal.py _log 225] * Debugger is active!
[2021-06-15 18:18:05,482][ INFO] [ _internal.py _log 225] * Debugger PIN: 182-666-074
[2021-06-15 18:18:05,741][ INFO] [ _internal.py _log 225] * Running on http://127.0.0.1:3000/ (Press CTRL+C to quit)
[2021-06-15 18:18:10,217][ INFO] [ _internal.py _log 225] * Detected change in 'D:\\projects\\scriptiot\\evm-store\\tools\\build_out\\views\\user.py', reloading
[2021-06-15 18:18:10,345][ INFO] [ _internal.py _log 225] * Restarting with stat
[2021-06-15 18:18:11,642][WARNING] [ _internal.py _log 225] * Debugger is active!
[2021-06-15 18:18:11,690][ INFO] [ _internal.py _log 225] * Debugger PIN: 182-666-074
[2021-06-15 18:18:11,967][ INFO] [ _internal.py _log 225] * Running on http://127.0.0.1:3000/ (Press CTRL+C to quit)
tools/build_out/views/app.py
View file @
05abb229
...
...
@@ -6,7 +6,7 @@ from application.signal_manager import signalManager
from
models.app
import
postAppSchema
,
deleteAppSchema
,
getListAppSchema
,
getAppSchema
,
putAppSchema
from
webcreator.response
import
ResponseCode
,
response_result
class
AppResource
(
Resource
):
class
AppResource
List
(
Resource
):
def
__init__
(
self
):
pass
# 特殊参数,即不是从json获取参数的接口,可以将这个注释打开
...
...
@@ -42,14 +42,14 @@ class AppResource(Resource):
return
response_result
(
ResponseCode
.
DB_ERROR
)
class
AppResource
List
(
Resource
):
class
AppResource
(
Resource
):
def
__init__
(
self
):
pass
# 特殊参数,即不是从json获取参数的接口,可以将这个注释打开
# self.parser = RequestParser()
@
jwt_required
def
get
(
self
):
def
get
(
self
,
uuid
):
# 特殊参数,即不是从json获取参数的接口,可以将这个注释打开
# self.parser.add_argument("page", type=int, location="args", default=1)
# self.parser.add_argument("pageSize", type=int, location="args", default=15)
...
...
@@ -57,7 +57,7 @@ class AppResourceList(Resource):
try
:
json_payload
=
request
.
json
print
(
"========>"
,
json_payload
)
print
(
"========>"
,
uuid
,
json_payload
)
data
=
getAppSchema
.
load
(
json_payload
)
result
=
signalManager
.
actionGetApp
.
emit
(
**
data
)
json_dumps
=
getAppSchema
.
dump
(
result
)
...
...
@@ -68,9 +68,10 @@ class AppResourceList(Resource):
@
jwt_required
def
put
(
self
):
def
put
(
self
,
uuid
):
try
:
json_payload
=
request
.
json
print
(
"========>"
,
uuid
,
json_payload
)
data
=
putAppSchema
.
load
(
json_payload
)
result
=
signalManager
.
actionPutApp
.
emit
(
**
data
)
json_dumps
=
putAppSchema
.
dump
(
result
)
...
...
@@ -81,9 +82,10 @@ class AppResourceList(Resource):
@
jwt_required
def
delete
(
self
):
def
delete
(
self
,
uuid
):
try
:
json_payload
=
request
.
json
print
(
"========>"
,
uuid
,
json_payload
)
data
=
deleteAppSchema
.
load
(
json_payload
)
result
=
signalManager
.
actionDeleteApp
.
emit
(
**
data
)
json_dumps
=
deleteAppSchema
.
dump
(
result
)
...
...
tools/build_out/views/area.py
View file @
05abb229
...
...
@@ -6,7 +6,7 @@ from application.signal_manager import signalManager
from
models.area
import
postAreaSchema
,
deleteAreaSchema
,
getListAreaSchema
,
getAreaSchema
,
putAreaSchema
from
webcreator.response
import
ResponseCode
,
response_result
class
AreaResource
(
Resource
):
class
AreaResource
List
(
Resource
):
def
__init__
(
self
):
pass
# 特殊参数,即不是从json获取参数的接口,可以将这个注释打开
...
...
@@ -42,14 +42,14 @@ class AreaResource(Resource):
return
response_result
(
ResponseCode
.
DB_ERROR
)
class
AreaResource
List
(
Resource
):
class
AreaResource
(
Resource
):
def
__init__
(
self
):
pass
# 特殊参数,即不是从json获取参数的接口,可以将这个注释打开
# self.parser = RequestParser()
@
jwt_required
def
get
(
self
):
def
get
(
self
,
uuid
):
# 特殊参数,即不是从json获取参数的接口,可以将这个注释打开
# self.parser.add_argument("page", type=int, location="args", default=1)
# self.parser.add_argument("pageSize", type=int, location="args", default=15)
...
...
@@ -57,7 +57,7 @@ class AreaResourceList(Resource):
try
:
json_payload
=
request
.
json
print
(
"========>"
,
json_payload
)
print
(
"========>"
,
uuid
,
json_payload
)
data
=
getAreaSchema
.
load
(
json_payload
)
result
=
signalManager
.
actionGetArea
.
emit
(
**
data
)
json_dumps
=
getAreaSchema
.
dump
(
result
)
...
...
@@ -68,9 +68,10 @@ class AreaResourceList(Resource):
@
jwt_required
def
put
(
self
):
def
put
(
self
,
uuid
):
try
:
json_payload
=
request
.
json
print
(
"========>"
,
uuid
,
json_payload
)
data
=
putAreaSchema
.
load
(
json_payload
)
result
=
signalManager
.
actionPutArea
.
emit
(
**
data
)
json_dumps
=
putAreaSchema
.
dump
(
result
)
...
...
@@ -81,9 +82,10 @@ class AreaResourceList(Resource):
@
jwt_required
def
delete
(
self
):
def
delete
(
self
,
uuid
):
try
:
json_payload
=
request
.
json
print
(
"========>"
,
uuid
,
json_payload
)
data
=
deleteAreaSchema
.
load
(
json_payload
)
result
=
signalManager
.
actionDeleteArea
.
emit
(
**
data
)
json_dumps
=
deleteAreaSchema
.
dump
(
result
)
...
...
tools/build_out/views/login.py
View file @
05abb229
...
...
@@ -6,7 +6,7 @@ from application.signal_manager import signalManager
from
models.login
import
getListLoginSchema
,
getLoginSchema
from
webcreator.response
import
ResponseCode
,
response_result
class
LoginResource
(
Resource
):
class
LoginResource
List
(
Resource
):
def
__init__
(
self
):
pass
# 特殊参数,即不是从json获取参数的接口,可以将这个注释打开
...
...
@@ -29,14 +29,14 @@ class LoginResource(Resource):
current_app
.
logger
.
error
(
e
)
return
response_result
(
ResponseCode
.
DB_ERROR
)
class
LoginResource
List
(
Resource
):
class
LoginResource
(
Resource
):
def
__init__
(
self
):
pass
# 特殊参数,即不是从json获取参数的接口,可以将这个注释打开
# self.parser = RequestParser()
@
jwt_required
def
get
(
self
):
def
get
(
self
,
uuid
):
# 特殊参数,即不是从json获取参数的接口,可以将这个注释打开
# self.parser.add_argument("page", type=int, location="args", default=1)
# self.parser.add_argument("pageSize", type=int, location="args", default=15)
...
...
@@ -44,7 +44,7 @@ class LoginResourceList(Resource):
try
:
json_payload
=
request
.
json
print
(
"========>"
,
json_payload
)
print
(
"========>"
,
uuid
,
json_payload
)
data
=
getLoginSchema
.
load
(
json_payload
)
result
=
signalManager
.
actionGetLogin
.
emit
(
**
data
)
json_dumps
=
getLoginSchema
.
dump
(
result
)
...
...
tools/build_out/views/package.py
View file @
05abb229
...
...
@@ -6,7 +6,7 @@ from application.signal_manager import signalManager
from
models.package
import
getListPackageSchema
,
getPackageSchema
from
webcreator.response
import
ResponseCode
,
response_result
class
PackageResource
(
Resource
):
class
PackageResource
List
(
Resource
):
def
__init__
(
self
):
pass
# 特殊参数,即不是从json获取参数的接口,可以将这个注释打开
...
...
@@ -29,14 +29,14 @@ class PackageResource(Resource):
current_app
.
logger
.
error
(
e
)
return
response_result
(
ResponseCode
.
DB_ERROR
)
class
PackageResource
List
(
Resource
):
class
PackageResource
(
Resource
):
def
__init__
(
self
):
pass
# 特殊参数,即不是从json获取参数的接口,可以将这个注释打开
# self.parser = RequestParser()
@
jwt_required
def
get
(
self
):
def
get
(
self
,
uuid
):
# 特殊参数,即不是从json获取参数的接口,可以将这个注释打开
# self.parser.add_argument("page", type=int, location="args", default=1)
# self.parser.add_argument("pageSize", type=int, location="args", default=15)
...
...
@@ -44,7 +44,7 @@ class PackageResourceList(Resource):
try
:
json_payload
=
request
.
json
print
(
"========>"
,
json_payload
)
print
(
"========>"
,
uuid
,
json_payload
)
data
=
getPackageSchema
.
load
(
json_payload
)
result
=
signalManager
.
actionGetPackage
.
emit
(
**
data
)
json_dumps
=
getPackageSchema
.
dump
(
result
)
...
...
tools/build_out/views/user.py
View file @
05abb229
...
...
@@ -6,7 +6,7 @@ from application.signal_manager import signalManager
from
models.user
import
postUserSchema
,
deleteUserSchema
,
getListUserSchema
,
getUserSchema
,
putUserSchema
from
webcreator.response
import
ResponseCode
,
response_result
class
UserResource
(
Resource
):
class
UserResource
List
(
Resource
):
def
__init__
(
self
):
pass
# 特殊参数,即不是从json获取参数的接口,可以将这个注释打开
...
...
@@ -42,14 +42,14 @@ class UserResource(Resource):
return
response_result
(
ResponseCode
.
DB_ERROR
)
class
UserResource
List
(
Resource
):
class
UserResource
(
Resource
):
def
__init__
(
self
):
pass
# 特殊参数,即不是从json获取参数的接口,可以将这个注释打开
# self.parser = RequestParser()
@
jwt_required
def
get
(
self
):
def
get
(
self
,
uuid
):
# 特殊参数,即不是从json获取参数的接口,可以将这个注释打开
# self.parser.add_argument("page", type=int, location="args", default=1)
# self.parser.add_argument("pageSize", type=int, location="args", default=15)
...
...
@@ -57,7 +57,7 @@ class UserResourceList(Resource):
try
:
json_payload
=
request
.
json
print
(
"========>"
,
json_payload
)
print
(
"========>"
,
uuid
,
json_payload
)
data
=
getUserSchema
.
load
(
json_payload
)
result
=
signalManager
.
actionGetUser
.
emit
(
**
data
)
json_dumps
=
getUserSchema
.
dump
(
result
)
...
...
@@ -68,9 +68,10 @@ class UserResourceList(Resource):
@
jwt_required
def
put
(
self
):
def
put
(
self
,
uuid
):
try
:
json_payload
=
request
.
json
print
(
"========>"
,
uuid
,
json_payload
)
data
=
putUserSchema
.
load
(
json_payload
)
result
=
signalManager
.
actionPutUser
.
emit
(
**
data
)
json_dumps
=
putUserSchema
.
dump
(
result
)
...
...
@@ -81,9 +82,10 @@ class UserResourceList(Resource):
@
jwt_required
def
delete
(
self
):
def
delete
(
self
,
uuid
):
try
:
json_payload
=
request
.
json
print
(
"========>"
,
uuid
,
json_payload
)
data
=
deleteUserSchema
.
load
(
json_payload
)
result
=
signalManager
.
actionDeleteUser
.
emit
(
**
data
)
json_dumps
=
deleteUserSchema
.
dump
(
result
)
...
...
tools/config.json
View file @
05abb229
...
...
@@ -992,6 +992,14 @@
]
},
"view"
:
{
"post"
:
{
"auth"
:
false
,
"path"
:
""
,
"endpoint"
:
""
,
"params"
:
[
]
},
"getList"
:
{
"auth"
:
false
,
"path"
:
""
,
...
...
tools/templates/view.tpl
View file @
05abb229
...
...
@@ -9,7 +9,7 @@ from models.{{ config['name'] }} import {% for k, v in config["view"].items() -%
{%- endfor %}
from webcreator.response import ResponseCode, response_result
class {{ config['name'] | letterUpper }}Resource(Resource):
class {{ config['name'] | letterUpper }}Resource
List
(Resource):
def __init__(self):
pass
# 特殊参数,即不是从json获取参数的接口,可以将这个注释打开
...
...
@@ -53,7 +53,7 @@ class {{ config['name'] | letterUpper }}Resource(Resource):
return response_result(ResponseCode.DB_ERROR)
{% endif %}
class {{ config['name'] | letterUpper }}Resource
List
(Resource):
class {{ config['name'] | letterUpper }}Resource(Resource):
def __init__(self):
pass
# 特殊参数,即不是从json获取参数的接口,可以将这个注释打开
...
...
@@ -63,7 +63,7 @@ class {{ config['name'] | letterUpper }}ResourceList(Resource):
{% if config["view"]["get"]["auth"] %}
@jwt_required
{%- endif %}
def get(self):
def get(self
, uuid
):
# 特殊参数,即不是从json获取参数的接口,可以将这个注释打开
# self.parser.add_argument("page", type=int, location="args", default=1)
# self.parser.add_argument("pageSize", type=int, location="args", default=15)
...
...
@@ -71,7 +71,7 @@ class {{ config['name'] | letterUpper }}ResourceList(Resource):
try:
json_payload = request.json
print("========>", json_payload)
print("========>",
uuid,
json_payload)
data = get{{ config['name'] | letterUpper }}Schema.load(json_payload)
result = signalManager.actionGet{{ config["name"] | letterUpper }}.emit(**data)
json_dumps = get{{ config['name'] | letterUpper }}Schema.dump(result)
...
...
@@ -85,9 +85,10 @@ class {{ config['name'] | letterUpper }}ResourceList(Resource):
{% if config["view"]["put"]["auth"] %}
@jwt_required
{%- endif %}
def put(self):
def put(self
, uuid
):
try:
json_payload = request.json
print("========>", uuid, json_payload)
data = put{{ config['name'] | letterUpper }}Schema.load(json_payload)
result = signalManager.actionPut{{ config["name"] | letterUpper }}.emit(**data)
json_dumps = put{{ config['name'] | letterUpper }}Schema.dump(result)
...
...
@@ -101,9 +102,10 @@ class {{ config['name'] | letterUpper }}ResourceList(Resource):
{% if config["view"]["delete"]["auth"] %}
@jwt_required
{%- endif %}
def delete(self):
def delete(self
, uuid
):
try:
json_payload = request.json
print("========>", uuid, json_payload)
data = delete{{ config['name'] | letterUpper }}Schema.load(json_payload)
result = signalManager.actionDelete{{ config["name"] | letterUpper }}.emit(**data)
json_dumps = delete{{ config['name'] | letterUpper }}Schema.dump(result)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment