File: __init__.py

package info (click to toggle)
python-steamodd 5.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 304 kB
  • sloc: python: 2,224; makefile: 162
file content (18 lines) | stat: -rw-r--r-- 445 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
"""
High level Steam API implementation with low level reusable core
Copyright (c) 2010+, Anthony Garcia <anthony@lagg.me>
Distributed under the ISC License (see LICENSE)
"""

__version__ = "5.0"
__author__ = "Anthony Garcia"
__contact__ = "anthony@lagg.me"
__license__ = "ISC"
__copyright__ = "Copyright (c) 2010+, " + __author__

__all__ = [
    "api", "apps", "items", "loc",
    "remote_storage", "sim", "user", "vdf"
    ]

from . import *