Skip to content

Commit 4cdf1e7

Browse files
committed
Fixed import method
1 parent efac273 commit 4cdf1e7

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

setup.cfg

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ python_requires = >=3.6
2020
install_requires =
2121
bs4
2222
requests
23+
requests-html
2324

2425
[options.packages.find]
2526
where = src

src/scrape_up/github/__init__.py

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
1-
from github.users import Users
2-
from github.respository import Repository
3-
from github.issue import Issue
1+
from scrape_up.github.users import Users
2+
from scrape_up.github.respository import Repository
3+
from scrape_up.github.issue import Issue
4+
from scrape_up.github.organization import Organization
5+
from scrape_up.github.pull_request import PullRequest
46

5-
__all__ = ["Users", "Repository", "Issue"]
7+
__all__ = ["Users", "Repository", "Issue","Organization","PullRequest"]

0 commit comments

Comments
 (0)