Visualise corporate relationships using WikiData in multi-level B2B networks
Project description
NetVizCorpy
NetVizCorpy is a Python toolkit for constructing and exploring multi-level corporate ownership networks using WikiData. It enables customisable visualisations of parent-subsidiary relationships, shareholder links, and B2B connectivity, supporting research, due diligence, and network analysis. Since, the data is queried from WikiData with each run, slight differences could occur once a new or updated item is searched again.
🚀 Features
- 🔍 Query WikiData for corporate ownership and shareholder data
- 🕸️ Build nested network graphs of legal entities and relationships
- 🖼️ Generate interactive visualisations for stakeholder engagement
- 📦 Modular API designed for extensibility and reproducibility
- 💼 Supports a broad range of analysis
📦 Installation
The package is hosted at https://github.com/zb15/NetVizCorpy and can be installed as,
pip install NetVizCorpy
Or clone the repository directly:
git clone https://github.com/zb15/NetVizCorpy.git
cd NetVizCorpy
pip install -e .
Dependencies
The following packages need to be installed:
pip install pyvis
pip install pycountry
pip install pycountry-convert
🧩 Usage Example
import NetVizCorpy as nvc
Step 1: Search companies -> it will return a QID (identifier)and the name of the company as it appears in WikiData use search 'all' when company name is only partially known
company_a = nvc.Searcher('Volvo', 'all').choose_company()or use search 'exact' when the company name is known exactly as it appears in WikiDatacompany_a = nvc.Searcher('Volvo Cars', 'exact').choose_company()could add more seed companiescompany_b = nvc.Searcher('Hyundai Motor Company', 'exact').choose_company()
Step 2: Prepare QIDs and levels for building the company network -> make a list of the QIDs of the companies in scope
QIDs = [company_a[0][0]]orQIDs = [company_a[0][0], company_b[0][0], company_c[0][0]]in case QIDs are already known, skip step 1 and call them directlyQIDs = ['Q215293']specify the levels of interest, where the first two positions indicate upward relations and the last two positions indicate downward relations, such as: parent companies, owned by -shareholders-, subsidiaries, owner of -has share in-levels = (3,3,3,3)companyNetwork = nvc.NetworkBuilder(QIDs, levels).get_companies_network()
Step 3: Clean data for visualisation
cleanedNetwork = nvc.Cleaner(companyNetwork).clean_join()cleanedNetwork will return as a dataframe that could be exported as an .csv file if needed for other analysis
Step 4: Visualisation (a local file named as VolvoCars_Level3_Demo.html will be created)
nvc.Visualiser(cleanedNetwork, "VolvoCars_Level3_Demo").visualise_b2b_network()
-
The code will return a .html file that can be downloaded from colab and opened in any browser. It is a dynamic graph, that could be dragged if User wishes to explore the details more.
-
Once the graph .html file opened, on top of the screen there are some built in filter functions. Each company could be searched by name (Select node..). The Select a network item has the option of nodes or edges. For example, certain industries could be highlighted from the nodes -> groups -> then any industries from the graph can be chosen from a list (or typed in).
-
Visual guides:
-
the nodes are colour coded by the top industries (it is randomly assigned each time when the function is being called and a new .html file returned)
-
the nodes could take up to 7 shapes:
- North America - triangle (pointing up)
- South America - triangleDown (pointing down)
- Europe - star
- Africa - diamond
- Asia - square
- Australia - ellipse
- Antarctica (and anything else, such as unknown values) - dot
-
-
The network is directed, edges pointing from parent organisation toward child companies. The edges are colour coded and could take up to 5 colours and comments while hovering over:
- parent company (colour: salmon)
- proportion of shares that are greater than 0, but smaller than 0.5 (colour: turquoise)
- proportion of shares that are >=0.5 but <=1 (colour: violet)
- where no data available on WikiData commented as "unknown" (colour: lime)
- those relations that ended are commented with their end date (colour: grey)
-
There is also an option for user to adjust the physics of the network graph. It's panel is located below the graph.
The materials and methods in this repository support researchers and industry professionals to explore the sometimes over complicated corporate group structures in a user friendly interface as perceived by the public.
MIT Licence Zsofia Baruwa Copyright (c) 2025 University of Kent
Citation
A citation to the repository would be appreciated if you use any of its contents in your research or job.
Please cite the code and work in this repository as follows:
Baruwa, Zsofia, & Li, Shujun & Zhu, Zhen & Yuan, Haijue. (2025). ... https://doi.org/ ...
Bibtex citation
@software{baruwa_zsofia_2025,
author = {Baruwa, Zsofia and
Li, Shujun and
Zhu, Zhen and
Yuan, Haiyue},
title = {{NetVizCorpy: Visualising corporate group(s)'
networks from the publicly available WikiData}},
month = jul,
year = 2025,
publisher = {...},
version = {v0.1.0},
doi = {...},
url = {...}
}
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file netvizcorpy-0.1.6.tar.gz.
File metadata
- Download URL: netvizcorpy-0.1.6.tar.gz
- Upload date:
- Size: 20.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.9.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0f09b867ba0ca2cce4a5e544edafab04dd628ffd28854e4baabb3e0b62e61b1e
|
|
| MD5 |
4a4e768fe4900ce531450823199492d4
|
|
| BLAKE2b-256 |
52481251637f4ddcce750d2534e7146473c862e421920c4f00fc66a4613f7248
|
File details
Details for the file netvizcorpy-0.1.6-py3-none-any.whl.
File metadata
- Download URL: netvizcorpy-0.1.6-py3-none-any.whl
- Upload date:
- Size: 22.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.9.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ce22d10b86a5266f998b25b1f3c6f60ca1b59d51b2bb88fdeda7c22ab5f3b535
|
|
| MD5 |
b32620672636806adfc55da96a61ecdc
|
|
| BLAKE2b-256 |
a72c7c55d3575a81769bf262b630c463b1fd7590e178ab4eee2b3b2cc6215342
|