{"id":18469130,"url":"https://github.com/wfcd/warframe.py","last_synced_at":"2025-04-08T10:32:38.500Z","repository":{"id":158154905,"uuid":"633859629","full_name":"WFCD/warframe.py","owner":"WFCD","description":"an asynchronous API wrapper for Warframe.","archived":false,"fork":false,"pushed_at":"2023-11-11T13:13:18.000Z","size":150,"stargazers_count":14,"open_issues_count":0,"forks_count":2,"subscribers_count":4,"default_branch":"main","last_synced_at":"2025-03-20T01:48:51.323Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/WFCD.png","metadata":{"files":{"readme":"README.rst","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":".github/CODEOWNERS","security":null,"support":null,"governance":null}},"created_at":"2023-04-28T12:55:46.000Z","updated_at":"2025-02-17T07:39:34.000Z","dependencies_parsed_at":"2023-11-11T14:35:42.344Z","dependency_job_id":null,"html_url":"https://github.com/WFCD/warframe.py","commit_stats":null,"previous_names":[],"tags_count":13,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/WFCD%2Fwarframe.py","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/WFCD%2Fwarframe.py/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/WFCD%2Fwarframe.py/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/WFCD%2Fwarframe.py/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/WFCD","download_url":"https://codeload.github.com/WFCD/warframe.py/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247824193,"owners_count":21002228,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-06T10:09:02.045Z","updated_at":"2025-04-08T10:32:35.923Z","avatar_url":"https://github.com/WFCD.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"warframe.py\n===========\n.. image:: https://img.shields.io/pypi/v/warframe.py.svg\n   :target: https://pypi.python.org/pypi/warframe.py\n   :alt: PyPI version info\n.. image:: https://img.shields.io/pypi/pyversions/warframe.py.svg\n   :target: https://pypi.python.org/pypi/warframe.py\n   :alt: PyPI supported Python versions\n.. image:: https://img.shields.io/badge/semantic--release-angular-e10079?logo=semantic-release\n   :target: https://github.com/semantic-release/semantic-release\n   :alt: semantic-release: angular\n\nAn asynchronous and typed Python API wrapper for `the Warframestat API \u003chttps://hub.warframestat.us\u003e`__ and (later) `the warframe.market API \u003chttps://warframe.market/api_docs\u003e`__.\n\nWhat to expect\n--------------\n\nThis library is in its early states. The goal is to make it the best and most up-to-date Python Warframe API wrapper.\n\nQuickstart\n----------\n\n.. code-block:: python\n\n\n    import asyncio\n    import logging\n\n    from warframe.worldstate import WorldstateClient, utils\n\n    # import the models you want to use\n    from warframe.worldstate.models import Cetus\n\n    async def main():\n        # Note that the default logger is pretty much empty (nothing will be logged)\n        # so if you want to make use of the logger, you can use this helper function:\n        utils.setup_logging(handler=logging.StreamHandler(), level=logging.DEBUG, root=True)\n\n        async with WorldstateClient() as client:\n            # get current cetus data\n            cetus = await client.get_cetus()\n\n            # or... get it like this:\n\n            # queries are just another way to get the data to the corresponding objects.\n            # this is really just personal preference.\n            cetus = await client.query(Cetus)\n\n            print(cetus)\n\n\n    if __name__ == \"__main__\":\n        loop = asyncio.new_event_loop()\n        loop.run_until_complete(main())\n\n\n\nInstalling\n----------\n\nTo install the library, use the following command:\n\n.. code-block:: bash\n\n    pip install warframe.py\n\nSupported python versions:\n\n- 3.11\n- 3.10\n- 3.9\n\nContributing\n------------\nContributions are always welcome! Please read the `contributing guidelines \u003cCONTRIBUTE.md\u003e`__ first.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwfcd%2Fwarframe.py","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fwfcd%2Fwarframe.py","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwfcd%2Fwarframe.py/lists"}