-
-
Notifications
You must be signed in to change notification settings - Fork 49
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
Showing
3 changed files
with
23 additions
and
2 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 |
---|---|---|
@@ -0,0 +1,22 @@ | ||
from bs4 import BeautifulSoup | ||
|
||
import csv | ||
import pprint | ||
import pathlib | ||
import collections | ||
import xml.etree.ElementTree as ET | ||
from typing import Union | ||
|
||
|
||
class XbrlFiling(): | ||
|
||
def __init__(self) -> None: | ||
|
||
self.file_path = None | ||
self.url = None | ||
|
||
def from_url(self, url: str) -> None: | ||
pass | ||
|
||
def from_file(self, file_path: Union[str, pathlib.Path]) -> None: | ||
pass |
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,4 +1,3 @@ | ||
import json | ||
from pprint import pprint | ||
from edgar.client import EdgarClient | ||
|
||
|
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