-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Attempt to merge Renae/Kevin structures
This is an attempt to merge Renae's and Kevin's package structures. Some notes: * General structure split into a client (IpumsApiClient) and payloads (BaseExtract) * Subclasses of `BaseExtract` indicate which collection they reflect (currently only have a `CpsExtract` example based on Renae's example) * Provide an `OtherExtract` that allows for non-yet-supported APIs * Provide an example of submit-and-download workflow in the CLI
- Loading branch information
Showing
12 changed files
with
553 additions
and
172 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,4 @@ | ||
""" | ||
Convenience imports for ipumspy | ||
""" | ||
from .api import * |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,6 @@ | ||
from .core import IpumsApi | ||
""" | ||
Convenience imports from api | ||
""" | ||
from .core import IpumsApiClient | ||
from .exceptions import * | ||
from .extract import * |
Oops, something went wrong.