深入理解 Python package | 三月沙
https://sanyuesha.com/2017/09/14/deep-understand-python-package/?hmsr=toutiao.io&utm_campaign=toutiao.io&utm_medium=toutiao.io&utm_source=toutiao.io
https://sanyuesha.com/2017/09/14/deep-understand-python-package/?hmsr=toutiao.io&utm_campaign=toutiao.io&utm_medium=toutiao.io&utm_source=toutiao.io
三月沙
深入理解 Python package
Python 是通过 module 组织代码的,module 即一个 py 文件,module 又是通过 package 来组织的,package 是一个包含 __init__.py 的文件夹,代码,module,package 它们三者的关系就是:module 包含代码,package 至少包含一个为 __init__.py 的 module。 12345package ├── __init__.
Python Tips And Tricks — Using Built-In Database
https://vinsloev.medium.com/python-tips-and-tricks-using-built-in-database-7f5ce721dbf2
https://vinsloev.medium.com/python-tips-and-tricks-using-built-in-database-7f5ce721dbf2
Medium
Python Tips And Tricks — Using Built-In Database
Learn how to work with and use the built-in Python database SQLite3. This tutorial covers three key parts when working with databases…
Robot Dog Guarding the Ancient City of Pompeii
https://vinsloev.medium.com/robot-dog-guarding-the-ancient-city-of-pompeii-1a4e06382633
https://vinsloev.medium.com/robot-dog-guarding-the-ancient-city-of-pompeii-1a4e06382633
Medium
Robot Dog Guarding the Ancient City of Pompeii
You might have heard about the ancient Roman city of Pompeii which was struck by a catastrophy around 2000 years ago when the vulcan Vesuv…
Top Cryptocurrency News Site Traffic
https://riangiri.medium.com/top-cryptocurrency-news-site-traffic-3c33173ea089
https://riangiri.medium.com/top-cryptocurrency-news-site-traffic-3c33173ea089
Medium
Top Cryptocurrency News Site Traffic
Sometimes I have question about if there is any market stock news site, how about cryptocurrency market ? is there any site to provide specific information about crypto and their traffic? based on…
Rediscovering Markov Chains through Name Generation
https://medium.com/@archielister/rediscovering-markov-chains-through-name-generation-2308b0e7742a
https://medium.com/@archielister/rediscovering-markov-chains-through-name-generation-2308b0e7742a
Medium
Rediscovering Markov Chains through Name Generation
In making a name generator, stringing random letters together will not do. It is too easy to result in something unpronouncable, as mashing…
REST API Test Framework by Plain Text Input and Output Files
https://peter-jp-xie.medium.com/rest-api-test-framework-by-plain-text-input-and-output-files-e1e24872fe74
https://peter-jp-xie.medium.com/rest-api-test-framework-by-plain-text-input-and-output-files-e1e24872fe74
Medium
REST API Test Framework by Plain Text Input and Output Files
It reads plain text input files to send API requests, converts the JSON response to INI file format and compare with expected outputs.
Scrapy — An easy way to scraw data from web page
https://ydcat.medium.com/scrapy-an-easy-way-to-scraw-data-from-web-page-dbb4aedf8bd9
https://ydcat.medium.com/scrapy-an-easy-way-to-scraw-data-from-web-page-dbb4aedf8bd9
Medium
Scrapy — An easy way to get data from web page
The scrapy is a python library for quickly build web spiders. It provides many functions, makes new comes feel a little confusing. Here is…
Monte Carlo Simulation for Black-Scholes Option Pricing
https://medium.com/the-quant-journey/monte-carlo-simulation-for-black-scholes-option-pricing-fd98a669c029
https://medium.com/the-quant-journey/monte-carlo-simulation-for-black-scholes-option-pricing-fd98a669c029
Medium
Monte Carlo Simulation for Black-Scholes Option Pricing
In this article we will look at applying Monte Carlo simulation to price both a European Call and Put Option, following the Black-Scholes…