This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
// https://containers.dev/implementors/json_reference/ | |
// https://hub.docker.com/_/microsoft-vscode-devcontainers | |
{ | |
"name": "", | |
"image": "mcr.microsoft.com/devcontainers/python:3.12", | |
"customizations": { | |
"vscode": { | |
"extensions": [ | |
"ms-python.python", | |
"ms-python.vscode-pylance", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"""Download gzipped SDF files from ftp.ncbi.nlm.nih.gov/pubchem/. | |
https://openbook.rheinwerk-verlag.de/python/34_003.html | |
https://docs.python.org/3/library/ftplib.html | |
https://pubchem.ncbi.nlm.nih.gov/docs/downloads#section=From-the-PubChem-FTP-Site | |
""" | |
from ftplib import FTP | |
from ftplib import all_errors as FTPException | |
import hashlib |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.