Skip to content

Commit 2df17f9

Browse files
authored
Merge pull request #24 from PyBotDevs/switch-from-init-to-direct-module
Switch from using `__init__.py` module to direct `skyblockpy` module
2 parents 17038d5 + 590d043 commit 2df17f9

File tree

2 files changed

+6
-8
lines changed

2 files changed

+6
-8
lines changed

__init__.py

Lines changed: 0 additions & 7 deletions
This file was deleted.

api.py renamed to skyblockpy.py

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,15 @@
1-
"""Used for accessing the Skyblock API."""
1+
"""
2+
### A simple API wrapper for Hypixel Skyblock.
3+
4+
(c) 2023-present NKA Development Organization
5+
"""
26
# Imports
37
import requests
48
from json import loads as parse
59

610
# Functions
711
class Skyblock:
12+
"""Used for accessing the Skyblock API."""
813
def __init__(self, api_key: str):
914
self.api_key = api_key
1015

0 commit comments

Comments
 (0)