2021年1月31日 星期日

[ Python 文章收集 ] How to publish a Python Package to PyPi

 Source From Here

Preface
Learn how to publish your own python packages

In this article, let us understand how to develop a python package and then publish it to PyPi for distribution. This is a technical article with some advanced concepts but I will take some time to introduce each of the concepts in detail and provide a walkthrough performing all the steps as we proceed. It is very often for programmers in python to use various packages like Pandas, NumPy, etc. within your python application to make it more robust and leverage the rich functionalities of the SDKs. In order to use any such packages within your code, you first need to get these packages installed on your machine and then import it into your code.

The idea might seem familiar when we talk about PIP — the famous package management tool in python. In order to install any packages in python, we use pip install <package_name> and the package gets installed on our machine. However, these packages are maintained in a central repository known as PyPi or Python Package Index. PyPi is the official third-party software repository for python packages. Whenever you run the pip install command, the pip tool searches the package in this repository and then downloads and installs it to your machine or virtual environment.

What is a Python Package
The very first thing when it comes to developing packages in python, is that you should know what a package and module in python is. Any code that you write in a .py file is known as a module in python. Modules can be imported into another modules. A collection of more than one modules that target any specific actions can be grouped together to form a package. A package can also contain code organized into directories and subdirectories. You can read more about python modules and packages from the official documentation.

The steps to publish a python package are quite simple as follows.
1. Write your python module and save it under a directory.
2. Create the setup.py file with the necessary information.
3. Choose a LICENSE and provide a README file for your project.
4. Generate the distribution archives on the local machine.
5. Try installing the package on your local machine.
6. Publish the package to the TestPyPi repository to check if all works well.
7. Finally, publish the package to the PyPi repository.

Let us now perform each of the above-mentioned steps one by one to publish our package to the PyPi repository.

Create the python package and the directory structure and other files.
You should first decide the name of your package and then create the directory name with the name of the package. Let us assume we are going to publish a package with the name “ml_data_gen”, so the directory should be of the same name. Place a data_gen.py file under it.

Additionally, you should also include a setup.py file, a README.md and a LICENSE file under the root directory for your project. You can read more about licensing from the GitHub link. At this time, your project structure should look something as below:


Now, let us start editing the setup.py file. You can use the following snippet to update your setup file:
  1. import setuptools  
  2.   
  3. with open("README.md""r") as fh:  
  4.     long_description = fh.read()  
  5.   
  6. setuptools.setup(  
  7.     name="ml_data_gen",                     # This is the name of the package  
  8.     version="0.0.1",                        # The initial release version  
  9.     author="John Lee",                      # Full name of the author  
  10.     description="ml_data_gen Package for generating testing data",  
  11.     long_description=long_description,      # Long description read from the the readme file  
  12.     long_description_content_type="text/markdown",  
  13.     packages=setuptools.find_packages(),    # List of all python modules to be installed  
  14.     classifiers=[  
  15.         "Programming Language :: Python :: 3",  
  16.         "License :: OSI Approved :: MIT License",  
  17.         "Operating System :: OS Independent",  
  18.     ],                                      # Information to filter the project on PyPi website  
  19.     python_requires='>=3.6',                # Minimum version requirement of the package  
  20.     py_modules=["ml_data_gen"],             # Name of the python package  
  21.     package_dir={'':'ml_data_gen/src'},     # Directory of the source code of the package  
  22.     install_requires=[]                     # Install other dependencies if any  
  23. )  
Once the setup file is ready, the final step is to update the README.md file. It is just markdown file that you can use to document your package when it is deployed or also on GitHub for your project.
  1. ## <font color='darkblue'>Introduction</font>  
  2. This repo is used to generate testing data used in ML for quick evaluation.  
Generate the distribution archives on local machine.
Now that the code for the python package is almost complete, you can start building the distribution archives. Archives are compressed files that help your package to be deployed across multiple platforms and also make it platform independent. In order to generate the distribution archives, run the following command from your terminal:
# pip install --upgrade setuptools wheel

This will upgrade your setuptools library on your machine to use the latest version. After this, you need to run the following command from the root directory of your package to generate the distribution files.
# python setup.py sdist bdist_wheel

Once you run the above command, you can see that the distribution packages will be delivered under the directories — build and dist, that are newly created as below. In addition to that, you can also see that the egg file information has been updated in the project source code as well.


Install the package on local machine.
Now that we have our distribution files ready, we can go ahead and try installing and importing the package to test if it works fine. In order to install the package on your local machine, run the following command from the root directory:
# virtualenv env
# source env/bin/activate

// -e, --editable <path/url>: Install a project in editable mode (i.e. setuptools "develop mode") from a local project path or a VCS url.
# pip install -e .
Obtaining file:///root/Github/ml_data_gen
Installing collected packages: ml-data-gen
Running setup.py develop for ml-data-gen
Successfully installed ml-data-gen

Next, let's see how to use installed package:
>>> from ml_data_gen.data_gen import *
>>> hmm_data = HMMData(['a', 'b'], [[0.2, 0.8], [0.7, 0.3]])
>>> list(hmm_data.get_gen(10))
['a', 'a', 'b', 'a', 'b', 'a', 'b', 'a', 'b', 'a']

Publish the package to the TestPyPi
Once the package is installed on local and works fine, it is now ready to be shipped to the TestPyPi repository. This is a test repository for all python packages to test and see if all code works fine and there are no issues within the package code. This keeps it isolated from the official PyPi repository and makes sure that only thorough tested packages are deployed to production.

Navigate to https://test.pypi.org/ and register yourself as a user:


Once you are registered, open your terminal and run the following command. This will install a package called “twine” on your machine that will help ship the python package to the repositories:
# pip install --upgrade twine

You can read the official documentation about packaging python applications and also about twine here. After the twine package is installed, you have to configure some credentials for login PyPi/TestPyPi:
# vi ~/.pypirc
  1. [distutils]  
  2. index-servers =  
  3.     pypi  
  4.     testpypi  
  5.   
  6. [pypi]  
  7. repository = https://upload.pypi.org/legacy/  
  8. username = <account_name>  
  9. password = <account_credential>  
  10.   
  11. [testpypi]  
  12. repository = https://test.pypi.org/legacy/  
  13. username = <account_name>  
  14. password = <account_credential>  

and then run the following command to ship the code to TestPyPi first. When you run the command, you will be asked to provide the same credentials using which you have registered your account in the previous step:
# python3 -m twine upload --repository testpypi dist/*

Back to your TestPyPi Page:


As you can see in the figure above, the python package has now been shipped to the TestPyPi repository. In order to install the package from the test repository, first we will uninstall the already existing package and then run the following command to install it:
# pip uninstall ml-data-gen
# pip install -i https://test.pypi.org/simple/ ml-data-gen
# pip freeze | grep ml
ml-data-gen==0.0.1

This will install the package on the local system from the TestPyPi repository.

Publish the package to the PyPi repository
Now that everything works well with our package, it’s time that we publish it to the official PyPi repository. Follow the same steps to register an account and then run the following command to ship the package to the official repository:
# python3 -m twine upload dist/*



Congratulation! You have completed it and create your first Python package!








2021年1月30日 星期六

[ Python 文章收集 ] Python Multiprocessing For Beginners

 Source From Here

Preface
This article is going to teach you, How to apply python multiprocessing for your long-running functions

What is multiprocessing,
Basically, multiprocessing means run two or more tasks parallelly. So in Python, We can use python’s inbuilt multiprocessing module to achieve that. Imagine you have ten functions that take ten seconds to run and you're in a situation that you want to run that long-running function ten times. Without a doubt, It will take hundred seconds to finish if you run it sequentially. That is where multiprocessing comes into action. By using multiprocessing, you can separate those ten processes into ten sub-processes and complete them all in ten seconds.

Different between multiprocessing and multithreading,
So didn’t you wonder why we use multiprocessing instead of multithreading? It is good to use multithreading in the above example, but if your function required more processing power and more memory, It is ideal to use multiprocessing because when you use multiprocessing, each sub-process will have a dedicated CPU and Memory slot. So it is ideal to use multiprocessing instead of multithreading (multi-threading has another issue called GIL) if your long-running function required more processing power and memory:


Let’s see multiprocessing in action,
Imagine this is your long-running function:
  1. def factorize(number):  
  2.     for i in range(1, number + 1):  
  3.         if number % i == 0:  
  4.             yield i  
If you want to run this function ten times without using multiprocessing or multithreading it will look something like this:
  1. from time import time  
  2.   
  3. numbers = [8402868229573859383427925426987612448712994514789235665432185321895033218765]  
  4. start = time()  
  5. for number in numbers:  
  6.     list(factorize(number))  
  7. end = time()  
  8. print ('Took %.3f seconds' % (end - start))  
Output:
Took 17.259 seconds

Let’s see how to apply multiprocessing to this simple example. First of all, you will have to import python’s multiprocessing module,
  1. import multiprocessing  
Then you have to make an object from the Process and pass the target function and arguments if any. e.g.:
  1. def print_factorize(num, q):  
  2.     q.put((num, list(factorize(num))))  
  3.   
  4. q = mp.Queue()  
  5. process = mp.Process(target=print_factorize, args=(8402868, q, ))  
So now we can call its start method to start the execution of the function factorize:
  1. process.start()  
  2. process.join()  
  3.   
  4. while not q.empty():  
  5.     print(q.get())  
Output:
(8402868, [1, 2, 3, 4, 6, 9, 12, 18, 36, 41, 82, 123, 164, 246, 369, 492, 738, 1476, 5693, 11386, 17079, 22772, 34158, 51237, 68316, 102474, 204948, 233413, 466826, 700239, 933652, 1400478, 2100717, 2800956, 4201434, 8402868])

Then our for loop will look like this:
  1. import multiprocessing as mp  
  2. from time import time  
  3.   
  4. def factorize(number):  
  5.     for i in range(1, number + 1):  
  6.         if number % i == 0:  
  7.             yield i  
  8.   
  9. def print_factorize(num, q):  
  10.     start = time()  
  11.     ans = list(factorize(num))  
  12.     end = time()  
  13.     q.put((num, ans, end - start))  
  14.   
  15. start = time()  
  16.   
  17. numbers = [8402868229573859383427925426987612448712994514789235665432185321895033218765]  
  18. plist = []  
  19. q = mp.Queue()  
  20. for n in numbers:  
  21.     process = mp.Process(target=print_factorize, args=(n, q, ))  
  22.     plist.append(process)  
  23.     process.start()  
  24.   
  25. for p in plist:  
  26.     p.join()  
  27.   
  28. while not q.empty():  
  29.     num, flist, et = q.get()  
  30.     print(f"{num} took {et} seconds!")  
  31.   
  32. end = time()  
  33. print ('Total took %.3f seconds' % (end - start))  
Execution result:
2295738 took 0.3090219497680664 seconds!
5938342 took 0.5050191879272461 seconds!
7925426 took 0.776221513748169 seconds!
8402868 took 0.9802758693695068 seconds!
14789235 took 1.1664249897003174 seconds!
33218765 took 2.0890510082244873 seconds!
53218950 took 3.24381947517395 seconds!
66543218 took 3.6708388328552246 seconds!
87129945 took 4.638180255889893 seconds!
98761244 took 4.760260343551636 seconds!
Total took 4.795 seconds
If you run the calculation sequentially, you will take 0.309 + 0.505 + ... + 4.638 + 4.76 >> 4.795 seconds!

[Git 常見問題] error: The following untracked working tree files would be overwritten by merge

  Source From  Here 方案1: // x -----删除忽略文件已经对 git 来说不识别的文件 // d -----删除未被添加到 git 的路径中的文件 // f -----强制运行 #   git clean -d -fx 方案2: 今天在服务器上  gi...