Initial commit

This commit is contained in:
David Beazley
2023-07-16 20:21:00 -05:00
parent 82e815fab2
commit 7d4b30154a
259 changed files with 600233 additions and 2 deletions

28
Exercises/soln9_2.md Normal file
View File

@@ -0,0 +1,28 @@
# Exercise 9.2 - Solution
## (a) Making a package
You don't need to modify much source code. Just make a directory with
this structure:
```
structly/
__init__.py
validate.py
reader.py
structure.py
tableformat.py
```
The `__init__.py` file can be empty. You need to make one small change to the `structure.py` file to make the import statement work.
```python
# structure.py
...
from .validate import Validator
```
[Back](ex9_2.md)