From 2e17bb797ace83509e3afd0927d4722cbd369f82 Mon Sep 17 00:00:00 2001 From: Alexey Velikiy Date: Sun, 24 Jun 2018 19:37:20 +0300 Subject: [PATCH] add python codestyle --- analytics/Codestyle.md | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 analytics/Codestyle.md diff --git a/analytics/Codestyle.md b/analytics/Codestyle.md new file mode 100644 index 0000000..0333e4c --- /dev/null +++ b/analytics/Codestyle.md @@ -0,0 +1,19 @@ +# Imports + +You import local files first, than spesific liba and then standart libs. +So you import from something very scecific to something very common. +It allows you to pay attention on most important things from beginning. + +``` + +from data_provider import DataProvider +from anomaly_model import AnomalyModel +from pattern_detection_model import PatternDetectionModel + +import numpy as np + +from scipy.signal import argrelextrema + +import pickle + +``` \ No newline at end of file