tradedangerous


Nametradedangerous JSON
Version 10.15.2 PyPI version JSON
download
home_pagehttps://github.com/eyeonus/Trade-Dangerous
SummaryTrade-Dangerous is a set of powerful trading tools for Elite Dangerous, organized around one of the most powerful trade run optimizers available.
upload_time2024-04-19 11:49:15
maintainerNone
docs_urlNone
authoreyeonus
requires_pythonNone
licenseMPL
keywords trade elite elite-dangerous
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            
----------

TradeDangerous  
Copyright (C) Oliver "kfsone" Smith, July 2014  
Copyright (C) Bernd 'Gazelle' Gollesch 2016, 2017  
Copyright (C) Jonathan 'eyeonus' Jones 2018 - 2021

REQUIRES PYTHON 3.4 OR HIGHER.

----------

# What is Trade Dangerous? <img align="right" src="https://raw.githubusercontent.com/wiki/eyeonus/Trade-Dangerous/TradeDangerousCrest.png" alt="Trade Dangerous Crest">

TradeDangerous is a set of powerful trading tools for Elite Dangerous, organized around one of the most powerful trade run optimizers available.

The TRO is a heavy hitter that can calculate complex routes with multiple stops while taking into account the profits you make along the route 

The price data in TradeDangerous is either manually entered or crowd sourced from a website such as [Tromador's Trading Dangerously](http://elite.tromador.com/ "Tromador's Trading Dangerously"), often using a plugin such as the included eddblink.

# What can it do for me?

You're in a ship with 8 cargo spaces that can make 8.56 ly per jump; you're willing to make upto 2 jumps between stations, and we want to see how much money we can make if in 2 trade stops (hops).

    trade.py run --credits 5000 --capacity 8 --ly-per 8.56 --jumps 2 --hops 2

If we ran this, TD would search the galaxy for trade runs. But it could take us days to reach some of them. So lets say we're currently at Kummer City in the Andere system.

    trade.py run --from "andere/kummer city"
        --credits 5000 --capacity 8 --ly-per 8.56 --jumps 2 --hops 2

(The above represents a single line)

That's a lot to type. TD is designed to support laziness when it comes to typing, so it allows for all kinds of short-cuts.

    trade.py ru
        --fr and/kumm     find a station matching 'kumm' in a
                          system matching 'and'
        --cr 5k           'k', 'm' and 'b' are recognized suffixes
        --cap 8           8 units of cargo
        --ly 8.56         maximum distance *per jump*
        --ju 2            maximum 2 jumps

The default for hops is 2, so I didn't have to include it.

You can also use "=" to connect an option with its values:

    trade.py ru --fr=and/kumm --cr=5k --cap=8 --ly=8.56 --ju=2

With the data at the time I write this, this produces:

    ANDERE/Kummer City -> ANDERE/Malzberg Vision
      ANDERE/Kummer City: 6 x Titanium, 2 x Polymers,
      G 224-46/Lorrah Dock: 7 x Coltan, 1 x Lepidolite,
      ANDERE/Malzberg Vision +8,032cr (502/ton)

This tells us our overall route (line #1), what load to pick up from the first station, what to sell it for and pick up at the second stop and where to finish and unload for our final profit.

Note that it could have just told us to pick up 6 Titanium (the max we could afford) or 8 Copper (the highest profit we could fill up with), Instead, TD crunched hard numbers and maximized the earnings of every cargo space AND credit.

If you want to give Trade Dangerous a try, look no further than the [Setup Guide](https://github.com/eyeonus/Trade-Dangerous/wiki/Setup-Guide "Setup Guide") and the [User Guide](https://github.com/eyeonus/Trade-Dangerous/wiki/User-Guide "User Guide").

Curious about programming with Trade Dangerous/Python? Take the [Python Quick Peek](https://github.com/eyeonus/Trade-Dangerous/wiki/Python-Quick-Peek "Python Quick Peek").

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/eyeonus/Trade-Dangerous",
    "name": "tradedangerous",
    "maintainer": null,
    "docs_url": null,
    "requires_python": null,
    "maintainer_email": null,
    "keywords": "trade, elite, elite-dangerous",
    "author": "eyeonus",
    "author_email": "eyeonus@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/36/99/0e244d988aeb6006ee19c6a7ec036c69ed406065b5d870d727dfaa70b742/tradedangerous-10.15.2.tar.gz",
    "platform": null,
    "description": "\n----------\n\nTradeDangerous  \nCopyright (C) Oliver \"kfsone\" Smith, July 2014  \nCopyright (C) Bernd 'Gazelle' Gollesch 2016, 2017  \nCopyright (C) Jonathan 'eyeonus' Jones 2018 - 2021\n\nREQUIRES PYTHON 3.4 OR HIGHER.\n\n----------\n\n# What is Trade Dangerous? <img align=\"right\" src=\"https://raw.githubusercontent.com/wiki/eyeonus/Trade-Dangerous/TradeDangerousCrest.png\" alt=\"Trade Dangerous Crest\">\n\nTradeDangerous is a set of powerful trading tools for Elite Dangerous, organized around one of the most powerful trade run optimizers available.\n\nThe TRO is a heavy hitter that can calculate complex routes with multiple stops while taking into account the profits you make along the route \n\nThe price data in TradeDangerous is either manually entered or crowd sourced from a website such as [Tromador's Trading Dangerously](http://elite.tromador.com/ \"Tromador's Trading Dangerously\"), often using a plugin such as the included eddblink.\n\n# What can it do for me?\n\nYou're in a ship with 8 cargo spaces that can make 8.56 ly per jump; you're willing to make upto 2 jumps between stations, and we want to see how much money we can make if in 2 trade stops (hops).\n\n    trade.py run --credits 5000 --capacity 8 --ly-per 8.56 --jumps 2 --hops 2\n\nIf we ran this, TD would search the galaxy for trade runs. But it could take us days to reach some of them. So lets say we're currently at Kummer City in the Andere system.\n\n    trade.py run --from \"andere/kummer city\"\n        --credits 5000 --capacity 8 --ly-per 8.56 --jumps 2 --hops 2\n\n(The above represents a single line)\n\nThat's a lot to type. TD is designed to support laziness when it comes to typing, so it allows for all kinds of short-cuts.\n\n    trade.py ru\n        --fr and/kumm     find a station matching 'kumm' in a\n                          system matching 'and'\n        --cr 5k           'k', 'm' and 'b' are recognized suffixes\n        --cap 8           8 units of cargo\n        --ly 8.56         maximum distance *per jump*\n        --ju 2            maximum 2 jumps\n\nThe default for hops is 2, so I didn't have to include it.\n\nYou can also use \"=\" to connect an option with its values:\n\n    trade.py ru --fr=and/kumm --cr=5k --cap=8 --ly=8.56 --ju=2\n\nWith the data at the time I write this, this produces:\n\n    ANDERE/Kummer City -> ANDERE/Malzberg Vision\n      ANDERE/Kummer City: 6 x Titanium, 2 x Polymers,\n      G 224-46/Lorrah Dock: 7 x Coltan, 1 x Lepidolite,\n      ANDERE/Malzberg Vision +8,032cr (502/ton)\n\nThis tells us our overall route (line #1), what load to pick up from the first station, what to sell it for and pick up at the second stop and where to finish and unload for our final profit.\n\nNote that it could have just told us to pick up 6 Titanium (the max we could afford) or 8 Copper (the highest profit we could fill up with), Instead, TD crunched hard numbers and maximized the earnings of every cargo space AND credit.\n\nIf you want to give Trade Dangerous a try, look no further than the [Setup Guide](https://github.com/eyeonus/Trade-Dangerous/wiki/Setup-Guide \"Setup Guide\") and the [User Guide](https://github.com/eyeonus/Trade-Dangerous/wiki/User-Guide \"User Guide\").\n\nCurious about programming with Trade Dangerous/Python? Take the [Python Quick Peek](https://github.com/eyeonus/Trade-Dangerous/wiki/Python-Quick-Peek \"Python Quick Peek\").\n",
    "bugtrack_url": null,
    "license": "MPL",
    "summary": "Trade-Dangerous is a set of powerful trading tools for Elite Dangerous, organized around one of the most powerful trade run optimizers available.",
    "version": "10.15.2",
    "project_urls": {
        "Bug Tracker": "https://github.com/eyeonus/Trade-Dangerous/issues",
        "Documentation": "https://github.com/eyeonus/Trade-Dangerous/wiki",
        "Homepage": "https://github.com/eyeonus/Trade-Dangerous",
        "Source Code": "https://github.com/eyeonus/Trade-Dangerous"
    },
    "split_keywords": [
        "trade",
        " elite",
        " elite-dangerous"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e3c6777d3efb8f8b994dcbfc504dccf7492528020f0f704796ec1313adc777cf",
                "md5": "507996fb6ea55e05ebe5adac15c89c72",
                "sha256": "9f7c7e16e2a70ecf6f4f0095a8a1e389e0bec8393c964dd5a79fd2ec15a5980c"
            },
            "downloads": -1,
            "filename": "tradedangerous-10.15.2-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "507996fb6ea55e05ebe5adac15c89c72",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": null,
            "size": 251199,
            "upload_time": "2024-04-19T11:49:12",
            "upload_time_iso_8601": "2024-04-19T11:49:12.375475Z",
            "url": "https://files.pythonhosted.org/packages/e3/c6/777d3efb8f8b994dcbfc504dccf7492528020f0f704796ec1313adc777cf/tradedangerous-10.15.2-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "36990e244d988aeb6006ee19c6a7ec036c69ed406065b5d870d727dfaa70b742",
                "md5": "0540164804daef2db2a0ec68080cb554",
                "sha256": "070b61b24d777381c048be4486f37c64d17b61323b0fb3ea074f32120bd54506"
            },
            "downloads": -1,
            "filename": "tradedangerous-10.15.2.tar.gz",
            "has_sig": false,
            "md5_digest": "0540164804daef2db2a0ec68080cb554",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 221242,
            "upload_time": "2024-04-19T11:49:15",
            "upload_time_iso_8601": "2024-04-19T11:49:15.659461Z",
            "url": "https://files.pythonhosted.org/packages/36/99/0e244d988aeb6006ee19c6a7ec036c69ed406065b5d870d727dfaa70b742/tradedangerous-10.15.2.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-04-19 11:49:15",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "eyeonus",
    "github_project": "Trade-Dangerous",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "tox": true,
    "lcname": "tradedangerous"
}
        
Elapsed time: 0.29087s