supapi


Namesupapi JSON
Version 0.1.7 PyPI version JSON
download
home_pagehttps://www.github.com/new92/supapi
SummaryThe supapi Python module is a versatile and powerful tool designed to simplify the process of retrieving comprehensive data about players, clans, cards, tournaments, clubs, and brawlers from three popular mobile games: Clash of Clans (CoC), Clash Royale, and Brawl Stars. This module is your all-in-one solution for accessing and analyzing game-related information, making it an invaluable resource for developers, gamers, and data enthusiasts alike.
upload_time2023-09-15 12:48:04
maintainernew92
docs_urlNone
authornew92
requires_python>=3.6
licenseMIT
keywords python module coc clashroyale brawlstars dataretrieval gamingapi mobilegames supercell player clan tournament stats gaming
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # supapi 🚀

The supapi Python module is a versatile and powerful tool designed to simplify the process of retrieving comprehensive data about players, clans, cards, tournaments, clubs, and brawlers from three popular mobile games: Clash of Clans (CoC), Clash Royale, and Brawl Stars. This module is your all-in-one solution for accessing and analyzing game-related information, making it an invaluable resource for developers, gamers, and data enthusiasts alike.

## Installation 📥

Install supapi using pip

```bash
pip install supapi
```

## Authors ✍️

- [@new92](https://www.github.com/new92)

## Contributing 🤝

Contributions are always welcome!

See `contributing.md` for ways to get started.

Please adhere to this project's `code of conduct`. For more info please check the `CODE_OF_CONDUCT.md` file

## Feedback 💭

If you have any feedback, please reach out to us at <a href="mailto:new92github@gmail.com">this email address</a>.

**Feel free to contact us anytime ! You'll get a reply within a day. Please avoid using abusive or offensive language.
If you are reporting a bug or making a suggestion please make sure your report/suggestion is as much detailed as possible.**

## License 📜

[![License](https://img.shields.io/github/license/new92/supapi?style=for-the-badge)](https://github.com/new92/supapi/blob/main/LICENSE)

## <a href="https://github.com/new92/supapi/tree/main/examples">Examples 🚩</a>

## API keys 🔑

#### <a href="https://developer.clashofclans.com/#/login">CoC</a>

#### <a href="https://developer.clashroyale.com/#/login">Clash Royale</a>

#### <a href="https://developer.brawlstars.com/#/login">Brawl Stars</a>

## Documentation 📄

### Example CoC player info

```python
from supapi.clash import *

player = Player('89YCUV9GY', 'MY_API_KEY')
print(player.name) # Output: THE KILLER
```

### Example Clash Royale clan info

```python
from supapi.royale import Clan

clan = Clan('PJR0RL', 'MY_API_KEY')
print(clan.location) # Output: Andorra
```

### Example Clash Royale cards

```python
from supapi.royale import Cards

card = Cards('MY_API_KEY')
print(card.names) # Output: A list of names of all the cards in Clash Royale
```

### Example Brawl Stars player info

```python
from supapi.brawl import Player

player = Player('90P9CYCV8', 'MY_API_KEY')
print(player.solo_wins) # Output: 2846
```

### Example Brawl Stars club info

```python
from supapi.brawl import Club

club = Club('20C0RLVGC', 'MY_API_KEY')
print(club.all) # Output: A dictionary of data
```

            

Raw data

            {
    "_id": null,
    "home_page": "https://www.github.com/new92/supapi",
    "name": "supapi",
    "maintainer": "new92",
    "docs_url": null,
    "requires_python": ">=3.6",
    "maintainer_email": "new92github@gmail.com",
    "keywords": "python module COC ClashRoyale BrawlStars DataRetrieval GamingAPI MobileGames Supercell Player Clan Tournament Stats Gaming",
    "author": "new92",
    "author_email": "new92github@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/b9/1e/a19eec060a77c47ffa4742f71b8c0d92da0930fc58c90e4d1b262836b12a/supapi-0.1.7.tar.gz",
    "platform": null,
    "description": "# supapi \ud83d\ude80\r\n\r\nThe supapi Python module is a versatile and powerful tool designed to simplify the process of retrieving comprehensive data about players, clans, cards, tournaments, clubs, and brawlers from three popular mobile games: Clash of Clans (CoC), Clash Royale, and Brawl Stars. This module is your all-in-one solution for accessing and analyzing game-related information, making it an invaluable resource for developers, gamers, and data enthusiasts alike.\r\n\r\n## Installation \ud83d\udce5\r\n\r\nInstall supapi using pip\r\n\r\n```bash\r\npip install supapi\r\n```\r\n\r\n## Authors \u270d\ufe0f\r\n\r\n- [@new92](https://www.github.com/new92)\r\n\r\n## Contributing \ud83e\udd1d\r\n\r\nContributions are always welcome!\r\n\r\nSee `contributing.md` for ways to get started.\r\n\r\nPlease adhere to this project's `code of conduct`. For more info please check the `CODE_OF_CONDUCT.md` file\r\n\r\n## Feedback \ud83d\udcad\r\n\r\nIf you have any feedback, please reach out to us at <a href=\"mailto:new92github@gmail.com\">this email address</a>.\r\n\r\n**Feel free to contact us anytime ! You'll get a reply within a day. Please avoid using abusive or offensive language.\r\nIf you are reporting a bug or making a suggestion please make sure your report/suggestion is as much detailed as possible.**\r\n\r\n## License \ud83d\udcdc\r\n\r\n[![License](https://img.shields.io/github/license/new92/supapi?style=for-the-badge)](https://github.com/new92/supapi/blob/main/LICENSE)\r\n\r\n## <a href=\"https://github.com/new92/supapi/tree/main/examples\">Examples \ud83d\udea9</a>\r\n\r\n## API keys \ud83d\udd11\r\n\r\n#### <a href=\"https://developer.clashofclans.com/#/login\">CoC</a>\r\n\r\n#### <a href=\"https://developer.clashroyale.com/#/login\">Clash Royale</a>\r\n\r\n#### <a href=\"https://developer.brawlstars.com/#/login\">Brawl Stars</a>\r\n\r\n## Documentation \ud83d\udcc4\r\n\r\n### Example CoC player info\r\n\r\n```python\r\nfrom supapi.clash import *\r\n\r\nplayer = Player('89YCUV9GY', 'MY_API_KEY')\r\nprint(player.name) # Output: THE KILLER\r\n```\r\n\r\n### Example Clash Royale clan info\r\n\r\n```python\r\nfrom supapi.royale import Clan\r\n\r\nclan = Clan('PJR0RL', 'MY_API_KEY')\r\nprint(clan.location) # Output: Andorra\r\n```\r\n\r\n### Example Clash Royale cards\r\n\r\n```python\r\nfrom supapi.royale import Cards\r\n\r\ncard = Cards('MY_API_KEY')\r\nprint(card.names) # Output: A list of names of all the cards in Clash Royale\r\n```\r\n\r\n### Example Brawl Stars player info\r\n\r\n```python\r\nfrom supapi.brawl import Player\r\n\r\nplayer = Player('90P9CYCV8', 'MY_API_KEY')\r\nprint(player.solo_wins) # Output: 2846\r\n```\r\n\r\n### Example Brawl Stars club info\r\n\r\n```python\r\nfrom supapi.brawl import Club\r\n\r\nclub = Club('20C0RLVGC', 'MY_API_KEY')\r\nprint(club.all) # Output: A dictionary of data\r\n```\r\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "The supapi Python module is a versatile and powerful tool designed to simplify the process of retrieving comprehensive data about players, clans, cards, tournaments, clubs, and brawlers from three popular mobile games: Clash of Clans (CoC), Clash Royale, and Brawl Stars. This module is your all-in-one solution for accessing and analyzing game-related information, making it an invaluable resource for developers, gamers, and data enthusiasts alike.",
    "version": "0.1.7",
    "project_urls": {
        "Github Repository": "https://github.com/new92/supapi",
        "Homepage": "https://www.github.com/new92/supapi"
    },
    "split_keywords": [
        "python",
        "module",
        "coc",
        "clashroyale",
        "brawlstars",
        "dataretrieval",
        "gamingapi",
        "mobilegames",
        "supercell",
        "player",
        "clan",
        "tournament",
        "stats",
        "gaming"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5ece56c425bb21957fed1a275b3ba09a51cf9c83af6eb3f291fcace87668eef0",
                "md5": "999bf107abcc208a1828716c85d74837",
                "sha256": "744a9f4290aa9f1f5ec24b2f1e6ba63184c5dabaddd107e7165de447dc0987cc"
            },
            "downloads": -1,
            "filename": "supapi-0.1.7-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "999bf107abcc208a1828716c85d74837",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.6",
            "size": 9707,
            "upload_time": "2023-09-15T12:48:03",
            "upload_time_iso_8601": "2023-09-15T12:48:03.222387Z",
            "url": "https://files.pythonhosted.org/packages/5e/ce/56c425bb21957fed1a275b3ba09a51cf9c83af6eb3f291fcace87668eef0/supapi-0.1.7-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b91ea19eec060a77c47ffa4742f71b8c0d92da0930fc58c90e4d1b262836b12a",
                "md5": "9e0609e156331990d57d4016fd379f98",
                "sha256": "907efbbfb806be52afb4c878ee8f2ffe73d8e059216eca5e15c367e6c837e938"
            },
            "downloads": -1,
            "filename": "supapi-0.1.7.tar.gz",
            "has_sig": false,
            "md5_digest": "9e0609e156331990d57d4016fd379f98",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.6",
            "size": 8937,
            "upload_time": "2023-09-15T12:48:04",
            "upload_time_iso_8601": "2023-09-15T12:48:04.891510Z",
            "url": "https://files.pythonhosted.org/packages/b9/1e/a19eec060a77c47ffa4742f71b8c0d92da0930fc58c90e4d1b262836b12a/supapi-0.1.7.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-09-15 12:48:04",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "new92",
    "github_project": "supapi",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "lcname": "supapi"
}
        
Elapsed time: 0.11476s