diff options
author | Hamilton Kibbe <hamilton.kibbe@gmail.com> | 2015-10-10 16:51:21 -0400 |
---|---|---|
committer | Hamilton Kibbe <hamilton.kibbe@gmail.com> | 2015-10-10 16:51:21 -0400 |
commit | dd63b169f177389602e17bc6ced53bd0f1ba0de3 (patch) | |
tree | 12be6d968c97be78c3910b2c84b048211e88c7e2 /gerber/__init__.py | |
parent | b81c9d4bf96845ced3495eb158ec3a3c9e4dce3d (diff) | |
download | gerbonara-dd63b169f177389602e17bc6ced53bd0f1ba0de3.tar.gz gerbonara-dd63b169f177389602e17bc6ced53bd0f1ba0de3.tar.bz2 gerbonara-dd63b169f177389602e17bc6ced53bd0f1ba0de3.zip |
Allow files to be read from strings per #37
Adds a loads() method to the top level module which generates a GerberFile or ExcellonFile from a string
Diffstat (limited to 'gerber/__init__.py')
-rw-r--r-- | gerber/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gerber/__init__.py b/gerber/__init__.py index 1a11159..b5a9014 100644 --- a/gerber/__init__.py +++ b/gerber/__init__.py @@ -23,4 +23,4 @@ gerber-tools provides utilities for working with Gerber (RS-274X) and Excellon files in python. """ -from .common import read
\ No newline at end of file +from .common import read, loads
\ No newline at end of file |