-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* 0.2.5b6 release. * Missing files. * fix __future__ annotations. * Remove Unused import.
- Loading branch information
Showing
58 changed files
with
4,596 additions
and
3,732 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,7 +20,6 @@ venv/ | |
*.sqlite3 | ||
*.sqlite*.db | ||
dropped/ | ||
season.py | ||
|
||
# Cache | ||
.cache/ | ||
|
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 |
---|---|---|
|
@@ -25,15 +25,7 @@ | |
|
||
from __future__ import annotations | ||
|
||
__all__: tuple[str, ...] = ( | ||
# __init__.py | ||
"__about__", | ||
"__author__", | ||
"__version__", | ||
"__url__", | ||
"__email__", | ||
"__docs__", | ||
"__license__", | ||
__all__ = ( | ||
# client.py | ||
"Client", | ||
# error.py | ||
|
@@ -65,16 +57,9 @@ | |
"Item", | ||
"Place", | ||
"CredentialType", | ||
"GroupType", | ||
) | ||
|
||
from .client import Client | ||
from .error import * | ||
from .internal.enums import * | ||
|
||
__version__ = "0.2.5b5" | ||
__about__ = "A Pythonic `async`/`await` framework / wrapper for interacting with the Bungie API." | ||
__author__ = "nxtlo" | ||
__docs__ = "https://nxtlo.github.io/aiobungie/" | ||
__license__ = "MIT" | ||
__url__ = "https://github.com/nxtlo/aiobungie" | ||
__email__ = "[email protected]" |
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,47 @@ | ||
# MIT License | ||
# | ||
# Copyright (c) 2020 - Present nxtlo | ||
# | ||
# Permission is hereby granted, free of charge, to any person obtaining a copy | ||
# of this software and associated documentation files (the "Software"), to deal | ||
# in the Software without restriction, including without limitation the rights | ||
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
# copies of the Software, and to permit persons to whom the Software is | ||
# furnished to do so, subject to the following conditions: | ||
# | ||
# The above copyright notice and this permission notice shall be included in all | ||
# copies or substantial portions of the Software. | ||
# | ||
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
# SOFTWARE. | ||
|
||
"""Information about aiobungie""" | ||
|
||
# This is only used to avoid circular imports errors. | ||
|
||
__all__ = ( | ||
"__version__", | ||
"__about__", | ||
"__author__", | ||
"__docs__", | ||
"__license__", | ||
"__url__", | ||
"__email__", | ||
) | ||
|
||
import typing | ||
|
||
__version__: typing.Final[str] = "0.2.5b6" | ||
__about__: typing.Final[ | ||
str | ||
] = "A Pythonic `async`/`await` framework / wrapper for interacting with the Bungie API." | ||
__author__: typing.Final[str] = "nxtlo" | ||
__docs__: typing.Final[str] = "https://nxtlo.github.io/aiobungie/" | ||
__license__: typing.Final[str] = "MIT" | ||
__url__: typing.Final[str] = "https://github.com/nxtlo/aiobungie" | ||
__email__: typing.Final[str] = "[email protected]" |
Oops, something went wrong.