-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Jacob Beck
committed
Aug 6, 2019
1 parent
1a618e7
commit d08d291
Showing
4 changed files
with
22 additions
and
0 deletions.
There are no files selected for viewing
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 |
---|---|---|
|
@@ -23,6 +23,7 @@ var/ | |
*.egg-info/ | ||
.installed.cfg | ||
*.egg | ||
*.mypy_cache/ | ||
logs/ | ||
|
||
# PyInstaller | ||
|
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
# dummy file, our types are defined inline |
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 |
---|---|---|
@@ -0,0 +1,19 @@ | ||
from typing import Any, Optional | ||
|
||
class Table: | ||
def __init__(self, rows: Any, column_names: Optional[Any] = ..., column_types: Optional[Any] = ..., row_names: Optional[Any] = ..., _is_fork: bool = ...) -> None: ... | ||
def __len__(self): ... | ||
def __iter__(self): ... | ||
def __getitem__(self, key: Any): ... | ||
@property | ||
def column_types(self): ... | ||
@property | ||
def column_names(self): ... | ||
@property | ||
def row_names(self): ... | ||
@property | ||
def columns(self): ... | ||
@property | ||
def rows(self): ... | ||
def print_csv(self, **kwargs: Any) -> None: ... | ||
def print_json(self, **kwargs: Any) -> None: ... |