-
-
Notifications
You must be signed in to change notification settings - Fork 239
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
1 parent
efac273
commit 4cdf1e7
Showing
2 changed files
with
7 additions
and
4 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 |
---|---|---|
|
@@ -20,6 +20,7 @@ python_requires = >=3.6 | |
install_requires = | ||
bs4 | ||
requests | ||
requests-html | ||
|
||
[options.packages.find] | ||
where = src |
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,5 +1,7 @@ | ||
from github.users import Users | ||
from github.respository import Repository | ||
from github.issue import Issue | ||
from scrape_up.github.users import Users | ||
from scrape_up.github.respository import Repository | ||
from scrape_up.github.issue import Issue | ||
from scrape_up.github.organization import Organization | ||
from scrape_up.github.pull_request import PullRequest | ||
|
||
__all__ = ["Users", "Repository", "Issue"] | ||
__all__ = ["Users", "Repository", "Issue","Organization","PullRequest"] |