-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #4 from Bot-detector/structural-changes
Structural changes
- Loading branch information
Showing
16 changed files
with
175 additions
and
57 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
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 +0,0 @@ | ||
from osrs.async_api.osrs.hiscores import Hiscore | ||
from osrs.utils import RateLimiter | ||
|
||
__all__ = ["Hiscore", "RateLimiter"] | ||
This file was deleted.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
from osrs.asyncio.osrs.hiscores import Hiscore | ||
from osrs.asyncio.osrs.hiscores import Mode as HSMode | ||
from osrs.asyncio.osrs.itemdb import Catalogue, Graph | ||
from osrs.asyncio.osrs.itemdb import Mode as ItemDBMode | ||
from osrs.asyncio.wiki.prices import ( | ||
Interval, | ||
WikiPrices, | ||
) | ||
|
||
__all__ = ["WikiPrices", "AveragePrices", "LatestPrices", "TimeSeries", "ItemMapping"] | ||
|
||
__all__ = [ | ||
# osrs.hiscore | ||
"Hiscore", | ||
"HSMode", | ||
# osrs.itemdb | ||
"Catalogue", | ||
"ItemDBMode", | ||
"Graph", | ||
# wiki | ||
"Interval", | ||
"WikiPrices", | ||
] |
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,4 @@ | ||
from osrs.asyncio.osrs.hiscores import Hiscore | ||
from osrs.asyncio.osrs.itemdb import Catalogue, Graph | ||
|
||
__all__ = ["Hiscore", "Catalogue", "Graph"] |
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
2 changes: 1 addition & 1 deletion
2
osrs/async_api/wiki/__init__.py → osrs/asyncio/wiki/__init__.py
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
File renamed without changes.
File renamed without changes.
File renamed without changes.
Empty file.
Oops, something went wrong.