Skip to content

Commit 8d96d67

Browse files
adding packaging code for sdtables
1 parent 47c0c40 commit 8d96d67

File tree

5 files changed

+501
-0
lines changed

5 files changed

+501
-0
lines changed

.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# Pycharms guff
2+
.idea/
3+
14
# Byte-compiled / optimized / DLL files
25
__pycache__/
36
*.py[cod]

sdtables/__init__.py

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# coding: utf-8
2+
3+
4+
"""
5+
sdtables - Load table data from various sources
6+
into python dictionary structures
7+
8+
cunningr - 2020
9+
10+
Requires:
11+
- openpyxl >= 2.6.2
12+
- jsonschema
13+
14+
15+
"""
16+
17+
__version__ = "1.0.0"
18+
19+
from sdtables.xlTables import *

0 commit comments

Comments
 (0)