To enable a more automated approach to gathering information about companies company_dns
was created. This release enables the synthesis of data from the SEC EDGAR repository and Wikipedia. A Medium article entitled “A case for API based open company firmographics” is available discussing the process and motivation behind the creation of this service.
The V3.0.0 release of the company_dns
is a significant update to the service. The primary changes are:
The install and setup process is either for users or developers. Instructions for both are provided below.
New from V3.0.0
are automated docker builds providing a fresh image on a monthly basis. There are three reasons for this:
The image can be pulled using docker pull ghcr.io/miha42-github/company_dns/company_dns:latest
. With the image pulled you can run it using docker run -m 1G -p 8000:8000 company_dns:latest
which will run the image in the foreground, and running the image in the background docker run -d -m 1G -p 8000:8000 company_dns:latest
. GitHub’s container registry is used to store the images, and more information on this package can be found at company_dns/company_dns.
Assuming you have setup access to GitHub and a Linux or MacOS system of some kind, you’ll need to get the repository.
mkdir ~/dev
cd ~/dev/
git clone git@github.com:miha42-github/company_dns.git
Since the docker build process takes care of data cache creation, Python requirements installation and other items getting company_dns running is relatively straight forward. To simplify the process further the svc_ctl.sh
script is provided.
svc_ctl.sh
automates build, run, and log observations for company_dns removing many manual steps. To start the system follow these steps:
~/dev/company_dns
run cd ~/dev/company_dns
./svc_ctl.sh build
to build the image./svc_ctl.sh foreground
to run the image in the foreground or svc_ctl.sh start
to run the image in the backgroundIf the service is running in the background you can run ./svc_ctl.sh tail
to watch the image logs. Finally, stopping the image when it is running the background can be achieved with ./svc_ctl.sh stop
.
Usage for the service control script follows:
NAME:
./svc_ctl.sh <sub-command>
DESCRIPTION:
Control functions to run the company_dns
COMMANDS:
help start stop build foreground tail
help - call up this help text
start - start the service using docker-compose
stop - stop the docker service
build - build the docker images for the server
foreground - run the server in the foreground to watch for output
tail - tail the logs for a server running in the background
Depending upon the intention for getting the code it could be running in a Python virtual environment or in a vanilla file system. Regardless the steps below can be followed to get the service up and running.
Before you get started it is important to install all prequisites and then create the cache database.
cd ~/dev/company_dns/company_dns
pip3 install -r ./requirements.txt
python3 ./makedb.py
If everything above completed successfully then running company_dns can be performed via python3 ./company_dns.py
this will run the service in the foreground.
Regardless of the approach taken to run the company_dns checking to see if it is operating is important. A quick way to check on service availability when running on localhost is to follow this link: http://localhost:8000/help. If this is successful the embedded help will display (see screenshot below) describing available endpoints, examples with curl
, and some helpful links to the company_dns GitHub repository. Additionally, new in V3.0.0 is the query console which can be used to test key functions of the system.
A live system is available for Mediuroast efforts and for anyone to try out, relevant links are below.
Oil
- https://www.mediumroast.io/company_dns/V3.0/na/sic/description/oilIf you encounter a problem with the company_dns please first review existing open issues, and if you find a match then please add a comment with any detail you might deem relevant. If you’re unable to find an issue that matches the behavior you’re seeing please open a new issue.
We try to keep high level Todos and Improvements in a list contained in a section below, and as we begin to work on things we will create a corresponding issue, link to it, progress and close it. However, if there is a change in design, major improvement, and so on something may fall off the list below. If something isn’t on the list then please create a new issue and we will evaluate. We’ll let you know if we pick up your request and progress to working on it.
Here are the things that are likely to be worked but without any strict deadline:
Run on a RasberryPi: To be reauthored
Since this code falls under a liberal Apache-V2 license it is provided as is, without warranty or guarantee of support. Feel free to fork the code, but please provide attribution to the authors.