diff --git a/__init__.py b/__init__.py deleted file mode 100644 index eb11f0c..0000000 --- a/__init__.py +++ /dev/null @@ -1,7 +0,0 @@ -""" -### A simple API wrapper for Hypixel Skyblock. - -(c) 2023-present NKA Development Organization -""" - -from .api import * diff --git a/api.py b/skyblockpy.py similarity index 98% rename from api.py rename to skyblockpy.py index 246f043..c3f97f7 100644 --- a/api.py +++ b/skyblockpy.py @@ -1,10 +1,15 @@ -"""Used for accessing the Skyblock API.""" +""" +### A simple API wrapper for Hypixel Skyblock. + +(c) 2023-present NKA Development Organization +""" # Imports import requests from json import loads as parse # Functions class Skyblock: + """Used for accessing the Skyblock API.""" def __init__(self, api_key: str): self.api_key = api_key