An open API service indexing awesome lists of open source software.

https://github.com/shortedapp/asx-company-images

mapping of asx-company-images
https://github.com/shortedapp/asx-company-images

asx company-logos

Last synced: 5 months ago
JSON representation

mapping of asx-company-images

Awesome Lists containing this project

README

          

# asx-company-images

## steps

1. search for a company from the csx list located [here](ASXListedCompanies.csv)
* combine search with terms like 'asx', 'australia', 'company logo' , 'png'
2. download the best matching logo for the company and store in folder mapping to the company logo i.e companies//logo.png
3. create a metadata json document with the following structure:
```json
{
"code": "ABC",
"url": "https://abc.lol.com.au/logo.png"
}
```
where the url is where the image was fetched from.
An example of this basic layout can be found here [companies/ABC/](companies/ABC/)

4. once finished with a batch of companies has been saved run the following commands:

```bash
git add . --all
git commit -am "added companies"
git push -u origin master
```