{"id":13586439,"url":"https://github.com/khoivan88/find_sds","last_synced_at":"2025-04-07T15:31:54.214Z","repository":{"id":37829710,"uuid":"243393795","full_name":"khoivan88/find_sds","owner":"khoivan88","description":"Find safety data sheet (SDS) for chemicals using their CAS numbers","archived":false,"fork":false,"pushed_at":"2024-05-22T00:01:19.000Z","size":108,"stargazers_count":36,"open_issues_count":10,"forks_count":10,"subscribers_count":2,"default_branch":"master","last_synced_at":"2024-05-22T08:55:53.674Z","etag":null,"topics":["chemistry","python","python3","safety-data-sheet","sds"],"latest_commit_sha":null,"homepage":null,"language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/khoivan88.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null},"funding":{"github":null,"patreon":null,"open_collective":null,"ko_fi":null,"tidelift":null,"community_bridge":null,"liberapay":null,"issuehunt":null,"otechie":null,"custom":["https://www.buymeacoffee.com/KhoiVan"]}},"created_at":"2020-02-27T00:16:44.000Z","updated_at":"2024-05-30T05:05:00.263Z","dependencies_parsed_at":"2023-10-03T07:16:10.749Z","dependency_job_id":"beafc8cf-cf9a-4882-902d-6950f558647f","html_url":"https://github.com/khoivan88/find_sds","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/khoivan88%2Ffind_sds","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/khoivan88%2Ffind_sds/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/khoivan88%2Ffind_sds/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/khoivan88%2Ffind_sds/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/khoivan88","download_url":"https://codeload.github.com/khoivan88/find_sds/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247679564,"owners_count":20978075,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["chemistry","python","python3","safety-data-sheet","sds"],"created_at":"2024-08-01T15:05:34.330Z","updated_at":"2025-04-07T15:31:53.899Z","avatar_url":"https://github.com/khoivan88.png","language":"Python","funding_links":["https://www.buymeacoffee.com/KhoiVan"],"categories":["Python"],"sub_categories":[],"readme":"[![Python 3](https://pyup.io/repos/github/khoivan88/find_sds/python-3-shield.svg)](https://pyup.io/repos/github/khoivan88/find_sds/)\n[![Updates](https://pyup.io/repos/github/khoivan88/find_sds/shield.svg)](https://pyup.io/repos/github/khoivan88/find_sds/)\n[![codecov](https://codecov.io/gh/khoivan88/find_sds/branch/master/graph/badge.svg)](https://codecov.io/gh/khoivan88/find_sds)\n[![python version](https://img.shields.io/badge/python-v3.10%2B-blue)]()\n[![tested platforms](https://img.shields.io/badge/tested%20platform-win%20%7C%20osx%20%7C%20ubuntu-lightgrey)]()\n\n\n# FIND MISSING SAFETY DATA SHEET (SDS)\n\nThis program is designed to find and download safety data sheet of chemical using CAS number.\n\n\u003cbr/\u003e\n\n\n## CONTENTS\n\n- [FIND MISSING SAFETY DATA SHEET (SDS)](#find-missing-safety-data-sheet-sds)\n  - [CONTENTS](#contents)\n  - [DETAILS](#details)\n  - [REQUIREMENTS](#requirements)\n  - [USAGE](#usage)\n  - [VERSIONS](#versions)\n\n\n## DETAILS\n- Provided with a list of CAS numbers, this program searches and downloads safety\ndata sheet (SDS) into a designated folder. If a download folder is not provided,\nSDS will be downloaded into folder 'SDS' inside folder `find_sds`.\n- This program uses **multithreading** to speed up the download process. By default,\nten threads are used but it can be changed depends on running computer.\n- Downloaded SDS are saved as '\u003cCAS_Number\u003e-SDS.pdf'\n- Lookup databases include:\n  - [ChemBlink](https://www.chemblink.com/)\n  - [VWR](https://us.vwr.com/store/search/searchMSDS.jsp)\n  - [Fisher Scientific](https://www.fishersci.com/us/en/catalog/search/sdshome.html)\n  - [TCI Chemicals](www.tcichemicals.com)\n  - [ChemicalSafety](https://chemicalsafety.com/sds-search/)\n  - [Fluorochem](http://www.fluorochem.co.uk/)\n\n\n\n## REQUIREMENTS\n\n- Python 3.10+\n- [Dependencies](requirements.txt)\n\n\u003cbr/\u003e\n\n## USAGE\n\n1. Clone this repository:\n\n   ```bash\n   $ git clone https://github.com/khoivan88/find_sds.git    #if you have git\n   # if you don't have git, you can download the zip file then unzip\n   ```\n\n2. Change into the directory of the program:\n\n   ```bash\n   $ cd find_sds\n   ```\n\n3. (Optional): create virtual environment for python to install dependency:\n   Note: you can change `find_sds_venv` to another name if desired.\n\n   ```bash\n   $ python -m venv find_sds_venv   # Create virtual environment\n   $ source find_sds_venv/bin/activate    # Activate the virtual environment on Linux\n   # find_sds_venv\\Scripts\\activate    # Activate the virtual environment on Windows\n   ```\n\n4. Install python dependencies:\n\n   ```bash\n   $ pip install -r requirements.txt\n   ```\n\n5. Example usage:\n\n   ```bash\n   $ python\n   ```\n\n   ```python\n   \u003e\u003e\u003e from find_sds.find_sds import find_sds\n   \u003e\u003e\u003e cas_list = ['141-78-6', '110-82-7', '67-63-0', '75-09-2', '109-89-7',\n   ...     '872-50-4', '68-12-2', '96-47-9', '111-66-0', '110-54-3',\n   ...     '00000-00-0',    # invalid CAS number, or unknown CAS\n   ... ]\n   \u003e\u003e\u003e download_path = 'SDS'\n   \u003e\u003e\u003e find_sds(cas_list=cas_list, download_path=download_path, pool_size=10)\n   Downloading missing SDS files. Please wait!\n\n   Searching for 96-47-9-SDS.pdf ...\n\n   Searching for 110-82-7-SDS.pdf ...\n\n   Searching for 141-78-6-SDS.pdf ...\n\n   Searching for 872-50-4-SDS.pdf ...\n\n   Searching for 00000-0-0-SDS.pdf ...\n\n   Searching for 111-66-0-SDS.pdf ...\n\n   Searching for 110-54-3-SDS.pdf ...\n\n   Searching for 75-09-2-SDS.pdf ...\n\n   Searching for 68-12-2-SDS.pdf ...\n\n   Searching for 67-63-0-SDS.pdf ...\n\n   Searching for 109-89-7-SDS.pdf ...\n\n   Still missing SDS:\n   {'00000-00-0'}\n\n   Summary:\n           1 SDS files are missing.\n           10 SDS files downloaded.\n\n\n   (Optional): you can turn on debug mode (more error printing during search) using the following command:\n   python find_sds/find_sds.py  --debug\n\n   \u003e\u003e\u003e\n   ```\n\n\u003cbr/\u003e\n\n\n## VERSIONS\nSee [here](VERSION.md) for the most up-to-date\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkhoivan88%2Ffind_sds","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkhoivan88%2Ffind_sds","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkhoivan88%2Ffind_sds/lists"}