rsi-scraper


Namersi-scraper JSON
Version 0.6.7.2 PyPI version JSON
download
home_pagehttps://github.com/Dymerz/RSI-Scraper
SummaryWeb scaper for RSI
upload_time2023-02-02 11:15:24
maintainer
docs_urlNone
authorUrbain Corentin
requires_python>=3.7
license
keywords starcitizen robertsspaceindustries rsi scraper scraping
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # RSI-Scraper
[![GitHub license](https://img.shields.io/github/license/Dymerz/RSI-Scraper)](https://github.com/Dymerz/RSI-Scraper/blob/develop/LICENSE) [![GitHub issues](https://img.shields.io/github/issues/Dymerz/RSI-Scraper)](https://github.com/Dymerz/RSI-Scraper/issues) ![PyPI - Python Version](https://img.shields.io/pypi/pyversions/rsi-scraper) ![PyPI - Downloads](https://img.shields.io/pypi/dw/rsi-scraper)

## Overview

Web Scraper for RSI (used in [starcitizen-api.com](https://starcitizen-api.com))

This module allows you to easy retrive online information related to the RSI website.

## Requirements
- Python>=3.7
- requests>=2.25.1
- lxml>=4.6.3

## Installation
    pip install rsi-scraper

## Modules
 Module                  | Description   |
|-------------------------|---------------|
| Organization  | Find an organization by SID |
| OrganizationMembers   | List members of an organization by page of 32 |
| ProgressTracker   | Get all progress tracker teams |
| ProgressTrackerInfo   | Get progress tracker information using the slug |
| Roadmap   | List cards of the Roadmap by specified version |
| Ship  | Search ship using multiple parameters  |
| StarmapSystems    | Get systems from the starmap by name |
| StarmapTunnels    | Get tunnels from the starmap by id |
| StarmapSpecies    | Get species from the starmap by name |
| StarmapAffiliations   | Get affiliations from the starmap by name |
| StarmapStarSystems    | Get star-system from the starmap by code |
| StarmapCelestialObjects   | Get celestial objects from the starmap by name |
| StarmapSearch | Search object from the starmap by name |
| StarmapRouteSearch   | Find routes from position to destionation |
| Stats | Get general information like the numbers of citizens |
| Telemetry | Get some telemetry info |
| User  | Find information about a user by handle |
| Version   | Get a list of all versions |

## Usage
```py
  from rsi_scraper import User, Organization, Ship

  user = User('dymerz').execute()
  organization = Organization('PROTECTORA').execute()

  ship = Ship(name='Cutlass Black').execute()
```

## Optional Environment Variables
```yaml
    # Used in the HTTP header of requests
    VERSION = "DEVELOPMENT"

    # Define the HTTP proxy to use (e.g: http://127.0.0.1:8000).
    HTTP_PROXY = ""
```

# Contributing

1. Fork the repo on GitHub
2. Clone the project to your own machine
3. Commit changes to your own branch
4. Push your work back up to your fork
5. Submit a Pull request so that we can review your changes

> NOTE: Be sure to merge the latest from "upstream" before making a pull request!

See [CONTRIBUTING.md](./CONTRIBUTING.md).

***
# Rights

 This is an unofficial Star Citizen tool, not affiliated with the Cloud Imperium group of companies. All content on this site not authored by its host or users are property of their respective owners. [robertsspaceindustries.com](https://robertsspaceindustries.com/)

 This project is not endorsed by or affiliated with the Cloud Imperium or Roberts Space Industries group of companies.

 All game content and materials are copyright Cloud Imperium Rights LLC, Cloud Imperium Rights Ltd, Star Citizen®, Squadron 42®, Roberts Space Industries®, and Cloud Imperium® are registered trademarks of Cloud Imperium Rights LLC.

 All rights reserved.

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/Dymerz/RSI-Scraper",
    "name": "rsi-scraper",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.7",
    "maintainer_email": "",
    "keywords": "starcitizen robertsspaceindustries rsi scraper scraping",
    "author": "Urbain Corentin",
    "author_email": "",
    "download_url": "https://files.pythonhosted.org/packages/e0/20/2fe79068c486c8a379369557646049d8791f2558330e7158de0008289cd6/rsi-scraper-0.6.7.2.tar.gz",
    "platform": null,
    "description": "# RSI-Scraper\n[![GitHub license](https://img.shields.io/github/license/Dymerz/RSI-Scraper)](https://github.com/Dymerz/RSI-Scraper/blob/develop/LICENSE) [![GitHub issues](https://img.shields.io/github/issues/Dymerz/RSI-Scraper)](https://github.com/Dymerz/RSI-Scraper/issues) ![PyPI - Python Version](https://img.shields.io/pypi/pyversions/rsi-scraper) ![PyPI - Downloads](https://img.shields.io/pypi/dw/rsi-scraper)\n\n## Overview\n\nWeb Scraper for RSI (used in [starcitizen-api.com](https://starcitizen-api.com))\n\nThis module allows you to easy retrive online information related to the RSI website.\n\n## Requirements\n- Python>=3.7\n- requests>=2.25.1\n- lxml>=4.6.3\n\n## Installation\n    pip install rsi-scraper\n\n## Modules\n Module                  | Description   |\n|-------------------------|---------------|\n| Organization  | Find an organization by SID |\n| OrganizationMembers   | List members of an organization by page of 32 |\n| ProgressTracker   | Get all progress tracker teams |\n| ProgressTrackerInfo   | Get progress tracker information using the slug |\n| Roadmap   | List cards of the Roadmap by specified version |\n| Ship  | Search ship using multiple parameters  |\n| StarmapSystems    | Get systems from the starmap by name |\n| StarmapTunnels    | Get tunnels from the starmap by id |\n| StarmapSpecies    | Get species from the starmap by name |\n| StarmapAffiliations   | Get affiliations from the starmap by name |\n| StarmapStarSystems    | Get star-system from the starmap by code |\n| StarmapCelestialObjects   | Get celestial objects from the starmap by name |\n| StarmapSearch | Search object from the starmap by name |\n| StarmapRouteSearch   | Find routes from position to destionation |\n| Stats | Get general information like the numbers of citizens |\n| Telemetry | Get some telemetry info |\n| User  | Find information about a user by handle |\n| Version   | Get a list of all versions |\n\n## Usage\n```py\n  from rsi_scraper import User, Organization, Ship\n\n  user = User('dymerz').execute()\n  organization = Organization('PROTECTORA').execute()\n\n  ship = Ship(name='Cutlass Black').execute()\n```\n\n## Optional Environment Variables\n```yaml\n    # Used in the HTTP header of requests\n    VERSION = \"DEVELOPMENT\"\n\n    # Define the HTTP proxy to use (e.g: http://127.0.0.1:8000).\n    HTTP_PROXY = \"\"\n```\n\n# Contributing\n\n1. Fork the repo on GitHub\n2. Clone the project to your own machine\n3. Commit changes to your own branch\n4. Push your work back up to your fork\n5. Submit a Pull request so that we can review your changes\n\n> NOTE: Be sure to merge the latest from \"upstream\" before making a pull request!\n\nSee [CONTRIBUTING.md](./CONTRIBUTING.md).\n\n***\n# Rights\n\n This is an unofficial Star Citizen tool, not affiliated with the Cloud Imperium group of companies. All content on this site not authored by its host or users are property of their respective owners. [robertsspaceindustries.com](https://robertsspaceindustries.com/)\n\n This project is not endorsed by or affiliated with the Cloud Imperium or Roberts Space Industries group of companies.\n\n All game content and materials are copyright Cloud Imperium Rights LLC, Cloud Imperium Rights Ltd, Star Citizen\u00ae, Squadron 42\u00ae, Roberts Space Industries\u00ae, and Cloud Imperium\u00ae are registered trademarks of Cloud Imperium Rights LLC.\n\n All rights reserved.\n",
    "bugtrack_url": null,
    "license": "",
    "summary": "Web scaper for RSI",
    "version": "0.6.7.2",
    "split_keywords": [
        "starcitizen",
        "robertsspaceindustries",
        "rsi",
        "scraper",
        "scraping"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e9028330bf221c16e224df031e4eb918ac282265d1d40653695a1e33b0556f6e",
                "md5": "4275f300b140c376e141d0ddf23081df",
                "sha256": "21898a9239ff0abe677dc03efa57eaf35bf98c842197835350f46860ccd95966"
            },
            "downloads": -1,
            "filename": "rsi_scraper-0.6.7.2-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "4275f300b140c376e141d0ddf23081df",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.7",
            "size": 34988,
            "upload_time": "2023-02-02T11:15:23",
            "upload_time_iso_8601": "2023-02-02T11:15:23.245341Z",
            "url": "https://files.pythonhosted.org/packages/e9/02/8330bf221c16e224df031e4eb918ac282265d1d40653695a1e33b0556f6e/rsi_scraper-0.6.7.2-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e0202fe79068c486c8a379369557646049d8791f2558330e7158de0008289cd6",
                "md5": "75c1415de6444ae5639378e9662a1e22",
                "sha256": "407a8b2ab5b7b2a60ad969f165635ecae6abe2b871795af2a6c397f2e61cf4a3"
            },
            "downloads": -1,
            "filename": "rsi-scraper-0.6.7.2.tar.gz",
            "has_sig": false,
            "md5_digest": "75c1415de6444ae5639378e9662a1e22",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7",
            "size": 28951,
            "upload_time": "2023-02-02T11:15:24",
            "upload_time_iso_8601": "2023-02-02T11:15:24.793616Z",
            "url": "https://files.pythonhosted.org/packages/e0/20/2fe79068c486c8a379369557646049d8791f2558330e7158de0008289cd6/rsi-scraper-0.6.7.2.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-02-02 11:15:24",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "github_user": "Dymerz",
    "github_project": "RSI-Scraper",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "rsi-scraper"
}
        
Elapsed time: 0.04445s