forked from jhurley13/notebook-template-generator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnotebook-template.py
120 lines (59 loc) · 1.36 KB
/
notebook-template.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
#!/usr/bin/env python
# coding: utf-8
# # Title
# # Description
# In[ ]:
# # Environment
# ## Library Imports
# In[12]:
import pandas as pd
import numpy as np
from pathlib import Path
from datetime import datetime
import re
import json
# ## Local Imports
# In[4]:
# import xutilities
# from xutilities import flatten
# ## File Paths
# In[5]:
# https://medium.com/@rrfd/cookiecutter-data-science-organize-your-projects-atom-and-jupyter-2be7862f487e
# Base Paths
base_path = Path.cwd()
# Data paths
data_path = base_path / 'data'
raw_data_path = data_path / 'raw'
interim_data_path = data_path / 'interim'
processed_data_path = data_path / 'processed'
external_data_path = data_path / 'external'
# Reports paths
reports_path = base_path / 'reports'
figures_path = reports_path / 'figures'
# Input paths
# Outputs paths
# Credentials
# ## Constants and Globals
# In[6]:
# Constants and Globals
XVERSION = 1
# # Code
# In[7]:
def my_version():
return XVERSION
# # Unit Tests
# In[9]:
import unittest
class Test_My_Code(unittest.TestCase):
def test_version(self):
self.assertTrue(my_version() == 1)
# ## Initialization
# In[10]:
# Initializations
aversion = my_version()
# # Main
# In[11]:
if __name__ == '__main__':
unittest.main(argv=['first-arg-is-ignored'], exit=False)
print('Done')
# In[ ]: