博客大神摘录

pyqt5 模块学习

https://www.jianshu.com/nb/26159952

爬虫学习

http://developer.51cto.com/art/201808/581028.htm

https://me.csdn.net/c406495762

https://blog.csdn.net/c406495762/column/info/15321

micropython 

http://docs.tpyboard.com/zh/latest/

pycharm create django

https://www.cnblogs.com/jesse123/p/5619083.html

视频下载:

https://www.jianshu.com/p/fa834e72cf2f

https://blog.csdn.net/abel_qy/article/details/51067964

use youtube-dl module in python:

import youtube_dl

ydl = youtube_dl.YoutubeDL({'outtmpl': '%(id)s%(ext)s'})

with ydl:
    result = ydl.extract_info(
        'http://www.youtube.com/watch?v=BaW_jenozKc',
        download=False # We just want to extract the info
    )

if 'entries' in result:
    # Can be a playlist or a list of videos
    video = result['entries'][0]
else:
    # Just a video
    video = result

print(video)
video_url = video['webpage_url']
print(video_url)

 

https://github.com/iawia002/annie

jenkins curl 命令:

https://www.cnblogs.com/buaawp/p/5260996.html

curl -X POST -u jenkins_user_name:jenkins_user_passwd http://jenkins_server/job/job_name/build

docker 学习:

https://blog.csdn.net/sD7O95O/article/details/84609905

魔力python: 

http://www.opython.com/1507.html

爬虫技术流程参考:

https://www.yanshuo.me/p/370784

https://www.yanshuo.me/r/crawler

 

posted on 2018-11-14 11:24  机器大浪猫  阅读(160)  评论(0编辑  收藏  举报