python3 -m pip install -r requirements.txtpython3 img2svg.py input.png
python3 img2svg.py input.png -c conf.txt| import openpyxl | |
| from PIL import Image | |
| wb = openpyxl.load_workbook('test.xlsx') | |
| ws = wb.active | |
| for image in ws._images: | |
| anchor = image.anchor |
https://www.nlm.nih.gov/bsd/licensee/elements_article_source.html
前面是PubDate,后面是ArticleDate
https://www.ncbi.nlm.nih.gov/pmc/tools/oa-service/
- HTTP:
https://www.ncbi.nlm.nih.gov/pmc/articles/PMC3841808/pdf- FTP:
https://www.ncbi.nlm.nih.gov/pmc/utils/oa/oa.fcgi?id=PMC5334499&format=pdf=>link
https://europepmc.org/RestfulWebService
- HTTP:
https://europepmc.org/backend/ptpmcrender.fcgi?accid=PMC3841808&blobtype=pdf
| ********************************************************* | |
| * _ooOoo_ * | |
| * o8888888o * | |
| * 88" . "88 * | |
| * (| ^_^ |) * | |
| * O\ = /O * | |
| * ____/'---'\____ * | |
| * .' \\| |// '. * | |
| * / \\||| : |||// \ * | |
| * / _||||| -:- |||||- \ * |
| // Title文字滚动效果 | |
| $(document).ready(function () { | |
| var s = (document.title + " ... ").split(""); | |
| function title_move(){ | |
| s.push(s[0]); | |
| s.shift();// 去掉数组的第一个元素 | |
| document.title = s.join(""); | |
| } | |
| setInterval(title_move, 500);//设置时间间隔运行 |
| #!/usr/bin/env python2 | |
| # coding: utf-8 | |
| """\033[1;3;34m | |
| Generate citations for given PMID(s) | |
| \033[0m""" | |
| import os | |
| import re | |
| import sys | |
| import requests |
| #!/usr/bin/env python | |
| # -*- encoding: utf8 -*- | |
| """ | |
| mutation statistics for each sample | |
| """ | |
| import os | |
| import re | |
| import time | |
| from functools import partial | |
| from collections import defaultdict |
| username=your_username | |
| password=your_password | |
| auth_string=$(echo $username:$password | base64) | |
| echo "# auth string: $auth_string" | |
| cosmic_url=https://cancer.sanger.ac.uk/cosmic | |
| # =================== | |
| # get current version |