diff --git a/CHANGES.md b/CHANGES.md index e92f47e..d6442f9 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -2,13 +2,14 @@ ## 1.0.0 -This release brings some breaking changes +This release brings breaking changes ### General - Replaced `cryptography` library with `pycryptodomex` - Updated all enums - Removed imports from 'steam' namespace +- Renamed `steam.util` to `steam.utils` ### steam.steamid diff --git a/docs/api/steam.rst b/docs/api/steam.rst index eb568f8..66d3c1a 100644 --- a/docs/api/steam.rst +++ b/docs/api/steam.rst @@ -14,4 +14,4 @@ API Reference steam.steamid steam.webapi steam.webauth - steam.util + steam.utils diff --git a/docs/api/steam.util.rst b/docs/api/steam.utils.rst similarity index 51% rename from docs/api/steam.util.rst rename to docs/api/steam.utils.rst index 759d9cb..81d31b8 100644 --- a/docs/api/steam.util.rst +++ b/docs/api/steam.utils.rst @@ -1,31 +1,31 @@ -util -==== +utils +===== -.. automodule:: steam.util +.. automodule:: steam.utils :members: :undoc-members: :show-inheritance: -util.binary ------------ +utils.binary +------------ -.. automodule:: steam.util.binary +.. automodule:: steam.utils.binary :members: :undoc-members: :show-inheritance: -util.throttle -------------- +utils.throttle +-------------- -.. automodule:: steam.util.throttle +.. automodule:: steam.utils.throttle :members: :undoc-members: :show-inheritance: -util.web --------- +utils.web +--------- -.. automodule:: steam.util.web +.. automodule:: steam.utils.web :members: :undoc-members: :show-inheritance: diff --git a/steam/client/__init__.py b/steam/client/__init__.py index 822a6d0..d098c44 100644 --- a/steam/client/__init__.py +++ b/steam/client/__init__.py @@ -31,7 +31,7 @@ from steam.core.crypto import sha1_hash from steam.steamid import SteamID from steam.exceptions import SteamError from steam.client.builtins import BuiltinBase -from steam.util import ip_from_int, ip_to_int, proto_fill_from_dict +from steam.utils import ip_from_int, ip_to_int, proto_fill_from_dict if six.PY2: _cli_input = raw_input diff --git a/steam/client/builtins/apps.py b/steam/client/builtins/apps.py index 6b5d6f9..f852253 100644 --- a/steam/client/builtins/apps.py +++ b/steam/client/builtins/apps.py @@ -2,7 +2,7 @@ import vdf from steam.enums import EResult, EServerType from steam.enums.emsg import EMsg from steam.core.msg import MsgProto -from steam.util import ip_from_int, proto_fill_from_dict +from steam.utils import ip_from_int, proto_fill_from_dict class Apps(object): diff --git a/steam/client/builtins/gameservers.py b/steam/client/builtins/gameservers.py index 8b07876..4c42ac0 100644 --- a/steam/client/builtins/gameservers.py +++ b/steam/client/builtins/gameservers.py @@ -38,7 +38,7 @@ from steam.steamid import SteamID from steam.core.msg import MsgProto from steam.enums import EResult from steam.enums.emsg import EMsg -from steam.util import ip_to_int, ip_from_int, proto_to_dict +from steam.utils import ip_to_int, ip_from_int, proto_to_dict class GameServers(object): diff --git a/steam/client/builtins/leaderboards.py b/steam/client/builtins/leaderboards.py index 8796d1c..45b23ce 100644 --- a/steam/client/builtins/leaderboards.py +++ b/steam/client/builtins/leaderboards.py @@ -5,8 +5,8 @@ import logging from steam.core.msg import MsgProto from steam.enums import EResult, ELeaderboardDataRequest, ELeaderboardSortMethod, ELeaderboardDisplayType from steam.enums.emsg import EMsg -from steam.util import _range, chunks -from steam.util.throttle import ConstantRateLimit +from steam.utils import _range, chunks +from steam.utils.throttle import ConstantRateLimit class Leaderboards(object): diff --git a/steam/client/builtins/unified_messages.py b/steam/client/builtins/unified_messages.py index 4e94bba..d5a33f6 100644 --- a/steam/client/builtins/unified_messages.py +++ b/steam/client/builtins/unified_messages.py @@ -27,7 +27,7 @@ The backend might error out, but we still get response. Here is how to check for """ from steam.core.msg import MsgProto, get_um from steam.enums.emsg import EMsg -from steam.util import proto_fill_from_dict +from steam.utils import proto_fill_from_dict class UnifiedMessages(object): diff --git a/steam/client/builtins/user.py b/steam/client/builtins/user.py index c1027fe..8a43b0d 100644 --- a/steam/client/builtins/user.py +++ b/steam/client/builtins/user.py @@ -3,7 +3,7 @@ from steam.client.user import SteamUser from steam.enums import EPersonaState, EChatEntryType, EType, EClientUIMode from steam.enums.emsg import EMsg from steam.core.msg import MsgProto -from steam.util import proto_fill_from_dict +from steam.utils import proto_fill_from_dict class User(object): EVENT_CHAT_MESSAGE = 'chat_message' diff --git a/steam/client/builtins/web.py b/steam/client/builtins/web.py index 3ddecd1..861975c 100644 --- a/steam/client/builtins/web.py +++ b/steam/client/builtins/web.py @@ -5,7 +5,7 @@ from steam import webapi from steam.core.msg import MsgProto from steam.enums.emsg import EMsg from steam.core.crypto import generate_session_key, symmetric_encrypt -from steam.util.web import make_requests_session, generate_session_id +from steam.utils.web import make_requests_session, generate_session_id class Web(object): diff --git a/steam/client/cdn.py b/steam/client/cdn.py index 2cb0e62..068f358 100644 --- a/steam/client/cdn.py +++ b/steam/client/cdn.py @@ -99,7 +99,7 @@ from steam.exceptions import SteamError from steam.core.msg import MsgProto from steam.enums import EResult, EType from steam.enums.emsg import EMsg -from steam.util.web import make_requests_session +from steam.utils.web import make_requests_session from steam.core.crypto import symmetric_decrypt, symmetric_decrypt_ecb from steam.core.manifest import DepotManifest, DepotFile from steam.protobufs.content_manifest_pb2 import ContentManifestPayload diff --git a/steam/client/gc.py b/steam/client/gc.py index 000380f..3beced8 100644 --- a/steam/client/gc.py +++ b/steam/client/gc.py @@ -40,7 +40,7 @@ protobufs needed to (de)serialize message for communication with GC. import logging import gevent from eventemitter import EventEmitter -from steam.util import set_proto_bit, clear_proto_bit, is_proto +from steam.utils import set_proto_bit, clear_proto_bit, is_proto from steam.enums.emsg import EMsg from steam.enums import EResult from steam.core.msg import GCMsgHdr, GCMsgHdrProto, MsgProto diff --git a/steam/core/cm.py b/steam/core/cm.py index 83cfb22..7916862 100644 --- a/steam/core/cm.py +++ b/steam/core/cm.py @@ -19,7 +19,7 @@ from steam.core import crypto from steam.core.connection import TCPConnection from steam.core.msg import Msg, MsgProto from eventemitter import EventEmitter -from steam.util import ip_from_int, is_proto, clear_proto_bit +from steam.utils import ip_from_int, is_proto, clear_proto_bit class CMClient(EventEmitter): diff --git a/steam/core/manifest.py b/steam/core/manifest.py index 7488d00..2f8bf09 100644 --- a/steam/core/manifest.py +++ b/steam/core/manifest.py @@ -9,7 +9,7 @@ import os.path from steam.enums import EDepotFileFlag from steam.core.crypto import symmetric_decrypt -from steam.util.binary import StructReader +from steam.utils.binary import StructReader from steam.protobufs.content_manifest_pb2 import (ContentManifestMetadata, ContentManifestPayload, ContentManifestSignature) diff --git a/steam/core/msg/headers.py b/steam/core/msg/headers.py index dc74afa..e1afffd 100644 --- a/steam/core/msg/headers.py +++ b/steam/core/msg/headers.py @@ -3,7 +3,7 @@ import struct from steam.enums.emsg import EMsg from steam.protobufs import steammessages_base_pb2 from steam.protobufs import gc_pb2 -from steam.util import set_proto_bit, clear_proto_bit +from steam.utils import set_proto_bit, clear_proto_bit class MsgHdr: diff --git a/steam/core/msg/structs.py b/steam/core/msg/structs.py index bbe3855..901b934 100644 --- a/steam/core/msg/structs.py +++ b/steam/core/msg/structs.py @@ -5,7 +5,7 @@ import vdf from six.moves import range from steam.enums import EResult, EUniverse from steam.enums.emsg import EMsg -from steam.util.binary import StructReader +from steam.utils.binary import StructReader _emsg_map = {} diff --git a/steam/game_servers.py b/steam/game_servers.py index 55a0715..e76c6b5 100644 --- a/steam/game_servers.py +++ b/steam/game_servers.py @@ -132,7 +132,7 @@ from re import match as _re_match from struct import pack as _pack, unpack_from as _unpack_from from time import time as _time from enum import IntEnum -from steam.util.binary import StructReader as _StructReader +from steam.utils.binary import StructReader as _StructReader __all__ = ['query_master', 'a2s_info', 'a2s_players', 'a2s_rules', 'a2s_ping'] diff --git a/steam/guard.py b/steam/guard.py index 60ec847..e9ae3f7 100644 --- a/steam/guard.py +++ b/steam/guard.py @@ -58,7 +58,7 @@ from steam.steamid import SteamID from steam.core.crypto import hmac_sha1, sha1_hash from steam.enums.common import EResult from steam.webauth import MobileWebAuth -from steam.util import proto_to_dict +from steam.utils import proto_to_dict class SteamAuthenticator(object): diff --git a/steam/steamid.py b/steam/steamid.py index 333b509..1357a49 100644 --- a/steam/steamid.py +++ b/steam/steamid.py @@ -4,7 +4,7 @@ import re import requests from steam.enums.base import SteamIntEnum from steam.enums import EType, EUniverse, EInstanceFlag -from steam.util.web import make_requests_session +from steam.utils.web import make_requests_session if sys.version_info < (3,): intBase = long diff --git a/steam/util/__init__.py b/steam/utils/__init__.py similarity index 100% rename from steam/util/__init__.py rename to steam/utils/__init__.py diff --git a/steam/util/binary.py b/steam/utils/binary.py similarity index 100% rename from steam/util/binary.py rename to steam/utils/binary.py diff --git a/steam/util/throttle.py b/steam/utils/throttle.py similarity index 100% rename from steam/util/throttle.py rename to steam/utils/throttle.py diff --git a/steam/util/web.py b/steam/utils/web.py similarity index 100% rename from steam/util/web.py rename to steam/utils/web.py diff --git a/steam/webapi.py b/steam/webapi.py index df20bdb..a935fab 100644 --- a/steam/webapi.py +++ b/steam/webapi.py @@ -31,7 +31,7 @@ All globals params (``key``, ``https``, ``format``, ``raw``) can be specified on } """ import json as _json -from steam.util.web import make_requests_session as _make_session +from steam.utils.web import make_requests_session as _make_session class APIHost(object): """Enum of currently available API hosts.""" diff --git a/steam/webauth.py b/steam/webauth.py index 90f5374..3be2b57 100644 --- a/steam/webauth.py +++ b/steam/webauth.py @@ -63,7 +63,7 @@ import requests from steam import webapi from steam.steamid import SteamID -from steam.util.web import make_requests_session, generate_session_id +from steam.utils.web import make_requests_session, generate_session_id from steam.core.crypto import rsa_publickey, pkcs1v15_encrypt if six.PY2: