FDevIDs icon indicating copy to clipboard operation
FDevIDs copied to clipboard

License / redistribution conditions

Open DrGFreeman opened this issue 6 months ago • 4 comments

I'm working on a Python package that embeds the data tables from this repo and provides a function to dynamically load a table to a dictionary at runtime like in this example:

>>> from fdev_ids import load_table
>>> commodity = load_table("commodity")
>>> commodity[128983059]
{'id': 128983059, 'symbol': 'OnionHeadC', 'category': 'Legal Drugs', 'name': 'Onionhead Gamma Strain'}

I don't see a license file in the repo or any information about redistribution. Are there any conditions that apply to redistributing the data from this repo? Obviously I would include a reference to the repo in the documentation of my package.

Thx.

DrGFreeman avatar Oct 11 '25 12:10 DrGFreeman

I see it as free for all, like public domain.

bgol avatar Oct 11 '25 13:10 bgol

The actual data is derived from E:D, so remains owned by Frontier Developments. They haven't licensed the data separate from the game license, but haven't complained either.

Insofar as any database rights exist in the collation of this data, I suggest EDCD should waive such rights and state that in a LICENSE.md file.

(FYI here's an article on why Create Commons licenses don't include database rights).

Marginal avatar Oct 11 '25 14:10 Marginal

Ok, thanks both. I will put a licence for the code and refer to this repo and the game license for the embedded data.

DrGFreeman avatar Oct 12 '25 12:10 DrGFreeman

For anyone interested, the package is now published on PyPI: https://pypi.org/project/fdev-ids/.

DrGFreeman avatar Oct 15 '25 00:10 DrGFreeman