skinport.py


Nameskinport.py JSON
Version 0.35.0 PyPI version JSON
download
home_pageNone
SummaryA Python wrapper for the Skinport API
upload_time2025-10-08 17:32:48
maintainerNone
docs_urlNone
authorNone
requires_python>=3.11
licenseNone
keywords skinport counter-strike 2 team fortress 2 dota 2 rust
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # skinport.py
An API wrapper for the Skinport API written in Python.

Installing
----------

**Python 3.11 or higher is required**

To install the library, you can just run the following command:

```bash
# Linux/macOS
$ python3 -m pip install -U skinport.py

# Windows
> py -3 -m pip install -U skinport.py
```

To install the development version, do the following:
```bash
$ git clone https://github.com/PaxxPatriot/skinport.py
$ cd skinport.py
$ python3 -m pip install -U .
```

Quick Example
--------------

```Python
import asyncio

import skinport

async def main():
  client = skinport.Client()
  # Get a list of all listed CS:GO items on skinport.com
  items = await client.get_items()
  print(items)

if __name__ == "__main__":
    asyncio.run(main())
```

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "skinport.py",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.11",
    "maintainer_email": null,
    "keywords": "Skinport, Counter-Strike 2, Team Fortress 2, Dota 2, Rust",
    "author": null,
    "author_email": "PaxxPatriot <skinport.py@gmail.com>",
    "download_url": "https://files.pythonhosted.org/packages/9c/ef/347e0a9594bd763f1dd6c48ffb2e6415ba91c5ebaf586faff4ca3dac1e78/skinport_py-0.35.0.tar.gz",
    "platform": null,
    "description": "# skinport.py\nAn API wrapper for the Skinport API written in Python.\n\nInstalling\n----------\n\n**Python 3.11 or higher is required**\n\nTo install the library, you can just run the following command:\n\n```bash\n# Linux/macOS\n$ python3 -m pip install -U skinport.py\n\n# Windows\n> py -3 -m pip install -U skinport.py\n```\n\nTo install the development version, do the following:\n```bash\n$ git clone https://github.com/PaxxPatriot/skinport.py\n$ cd skinport.py\n$ python3 -m pip install -U .\n```\n\nQuick Example\n--------------\n\n```Python\nimport asyncio\n\nimport skinport\n\nasync def main():\n  client = skinport.Client()\n  # Get a list of all listed CS:GO items on skinport.com\n  items = await client.get_items()\n  print(items)\n\nif __name__ == \"__main__\":\n    asyncio.run(main())\n```\n",
    "bugtrack_url": null,
    "license": null,
    "summary": "A Python wrapper for the Skinport API",
    "version": "0.35.0",
    "project_urls": {
        "Documentation": "https://paxxpatriot.github.io/skinport.py/",
        "Issues": "https://github.com/PaxxPatriot/skinport.py/issues",
        "Repository": "https://github.com/PaxxPatriot/skinport.py.git"
    },
    "split_keywords": [
        "skinport",
        " counter-strike 2",
        " team fortress 2",
        " dota 2",
        " rust"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c71ddd4e69cddef3706a00177a1f0e038823f10b345ba8e63bda1f78fb3be254",
                "md5": "8f464a23877da9a7ac56e6817fdf1294",
                "sha256": "f5a7c369384bf5e9d6a25acd7530f2a3f4bd2075959868520f7fceb109319232"
            },
            "downloads": -1,
            "filename": "skinport_py-0.35.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "8f464a23877da9a7ac56e6817fdf1294",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.11",
            "size": 27161,
            "upload_time": "2025-10-08T17:32:47",
            "upload_time_iso_8601": "2025-10-08T17:32:47.108780Z",
            "url": "https://files.pythonhosted.org/packages/c7/1d/dd4e69cddef3706a00177a1f0e038823f10b345ba8e63bda1f78fb3be254/skinport_py-0.35.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9cef347e0a9594bd763f1dd6c48ffb2e6415ba91c5ebaf586faff4ca3dac1e78",
                "md5": "0b35a51ac41081ec8747dc42dc940034",
                "sha256": "7836384ac3454c9f6db0f456b65734e55f8bf69d8fdfa1b1db28d4fb82918a39"
            },
            "downloads": -1,
            "filename": "skinport_py-0.35.0.tar.gz",
            "has_sig": false,
            "md5_digest": "0b35a51ac41081ec8747dc42dc940034",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.11",
            "size": 21423,
            "upload_time": "2025-10-08T17:32:48",
            "upload_time_iso_8601": "2025-10-08T17:32:48.407750Z",
            "url": "https://files.pythonhosted.org/packages/9c/ef/347e0a9594bd763f1dd6c48ffb2e6415ba91c5ebaf586faff4ca3dac1e78/skinport_py-0.35.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-10-08 17:32:48",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "PaxxPatriot",
    "github_project": "skinport.py",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "skinport.py"
}
        
Elapsed time: 2.73497s