How to Create a Private Python Package Repository
Traducciones al EspañolEstamos traduciendo nuestros guías y tutoriales al Español. Es posible que usted esté viendo una traducción generada automáticamente. Estamos trabajando con traductores profesionales para verificar las traducciones de nuestro sitio web. Este proyecto es un trabajo en curso.



How Does Python Handle Package Management?
Package management in Python is available through a variety of different programming tools:
- Pipremains one of the most popular choices because it virtually eliminates manual installs and updates of software packages to operating systems.- Pipmanages full lists of packages and their corresponding version numbers, which fosters precise duplication of entire package groups in a distinct, separate environment.
- PyPI (Python Package Index) is a public repository of user-submitted packages that can be installed using - pip install package. This guide breaks down the basic scaffolding of a Python package, then using PyPiServer, creates a PyPi private repository by uploading the package to a Linode.
Before You Begin
- Familiarize yourself with our Getting Started guide and complete the steps for setting your Linode’s timezone. 
- This guide assumes usage of Python 3 and a working installation of - pipalong with- setuptools. Starting with Python 3.4,- pipcomes with the default installation. On Debian distributions,- pipcan be installed using the apt package manager with- sudo apt install python-pip.
- Apache 2.4 is used in this guide. Older versions may lack identical directives and will have slightly different configurations. 
Minimalist Python Package
The basic scaffolding of a Python package is a __init__.py file containing code that interfaces with the user.
- Create a directory with your intended package name. This guide will use linode_example. - mkdir linode_example- Note If you choose to make your package public, there are additional considerations for deciding on a package name. The official documentation suggests using only lowercase characters - unique to PyPI - and the underscore character to separate words if needed.
- Navigate into the newly created directory. Create a file called - setup.pyand another directory called linode_example, containing- __init__.py. The directory tree should look like this:- linode_example/ linode_example/ __init__.py setup.py setup.cfg README.md
- Edit - setup.pyto contain basic information about your Python package repository:- File: linode_example/setup.py
- 1 2 3 4 5 6 7 8 9 10 11 12- from setuptools import setup setup( name='linode_example', packages=['linode_example'], description='Hello world enterprise edition', version='0.1', url='http://github.com/example/linode_example', author='Linode', author_email='docs@linode.com', keywords=['pip','linode','example'] )
 
- Add an example function to - __init__.py:- File: linode_example/linode_example/__init__.py
- 1 2- def hello_word(): print("hello world")
 
- The - setup.cfgfile lets PyPI know the README is a Markdown file:- File: setup.cfg
- 1 2- [metadata] description-file = README.md
 
- Optionally, add a - LICENSE.txtor information to- README.md. This is good documentation practices, and helpful if you ever plan to upload the Python package into the public PyPI repository.
- The Python package repository needs to be compressed before it can be available for download on your server. Compress the package: - python setup.py sdist- A tar.gz file will be generated in - ~/linode_example/dist/.
Install PyPI Server
Next, set up a server to host a package index. This guide will use pypiserver, a wrapper built on the Bottle framework that makes setting up a package index on a server much easier.
- Install virtualenv if it’s not already installed: - pip install virtualenv
- Create a new directory which will be used to hold Python packages as well as files used by Apache. Create a new virtual environment called - venvinside this directory, then activate:- mkdir ~/packages cd packages virtualenv venv source venv/bin/activate
- Download the package through - pipin the newly created virtual environment:- pip install pypiserver- Note Alternatively, download pypiserver from Github, then navigate into the downloaded pypiserver directory and install packages with- python setup.py install.
- Move - linode_example-0.1.tar.gzinto- ~/packages:- mv ~/linode_example/dist/linode_example-0.1.tar.gz ~/packages/
- Try the server by running: - pypi-server -p 8080 ~/packages
- Currently the server is listening on all IP addresses. In a web browser, navigate to - 192.0.2.0:8080, where- 192.0.2.0is the public IP of your Linode. The browser should display:   - You are now able to install the - linode_examplepackage by declaring an external url- pip install --extra-index-url http://192.0.2.0:8080/simple/ --trusted-host 192.0.2.0 linode_example.
Authentication with Apache and passlib
- Install Apache and - passlibfor password-based authentication for uploads. Make sure you are still in your activated virtual environment (- (venv)should appear before the terminal prompt) and then execute the following commands:- sudo apt install apache2 pip install passlib
- Create a password for authentication using - htpasswdand move- htpasswd.txtinto the- ~/packagesdirectory. Enter the desired password twice:- htpasswd -sc htpasswd.txt example_user New password: Re-type new password:
- Install and enable - mod_wsgiin order to allow Bottle, a WSGI framework, to connect with Apache:- sudo apt install libapache2-mod-wsgi sudo a2enmod wsgi
- Inside the - ~/packagesdirectory, create a- pypiserver.wsgifile that creates an application object to connect between pypiserver and Apache:- File: packages/pypiserver.wsgi
- 1 2 3 4- import pypiserver PACKAGES = '/absolute/path/to/packages' HTPASSWD = '/absolute/path/to/htpasswd.txt' application = pypiserver.app(root=PACKAGES, redirect_to_fallback=True, password_file=HTPASSWD)
 
- Create a configuration file for the pypiserver located in - /etc/apache2/sites-available/:- File: /etc/apache2/sites-available/pypiserver.conf
- 1 2 3 4 5 6 7 8 9 10 11- <VirtualHost *:80> WSGIPassAuthorization On WSGIScriptAlias / /absolute/path/to/packages/pypiserver.wsgi WSGIDaemonProcess pypiserver python-path=/absolute/path/to/packages:/absolute/path/to/packages/venv/lib/pythonX.X/site-packages LogLevel info <Directory /absolute/path/to/packages> WSGIProcessGroup pypiserver WSGIApplicationGroup %{GLOBAL} Require ip 203.0.113.0 </Directory> </VirtualHost>
 - The - Require ip 203.0.113.0directive is an example IP restricting access to Apache. To grant open access, replace with- Require all granted. For more complex access control rules, consult access control in the Apache documentation.- Note Depending on the version of Python and virtual environment path, the- WSGIDaemonProcessdirective may require a different path.
- Give the user www-data ownership of the - ~/packagesdirectory. This will allow uploading from a client using- setuptools:- sudo chown -R www-data:www-data packages/
- Disable the default site if needed and enable pypiserver: - sudo a2dissite 000-default.conf sudo a2ensite pypiserver.conf
- Restart Apache: - sudo service apache2 restart- The repository should be accessible through - 192.0.2.0by default on port 80, where- 192.0.2.0is the public of the Linode.
Download From a Client
Recall the rather long flags declared with pip in order to download from a specified repository. Creating a configuration file containing the IP of your public server will simplify usage.
- On the client computer, create a - .pipdirectory in the home directory. Inside this directory, create- pip.confwith the following:- File: pip.conf
- 1 2 3- [global] extra-index-url = http://192.0.2.0:8080/ trusted-host = 192.0.2.0
 
- Install the - linode_examplepackage:- pip install linode_example- Note Both the terminal output and showing all packages with- pip listwill show that the underscore in the package name has transformed into a dash. This is expected because- setuptoolsuses the- safe_nameutility. For an in-depth discussion about this, see this mailing list thread.
- Open up a Python shell and try out the new package: - >>from linode_example import hello_world >>hello_world() hello world
Upload Remotely Using Setuptools
Although it’s possible to use scp to transfer tar.gz files to the repository, there are other tools such as twine and easy_install which can also be used.
- On a client computer, create a new configuration file in the home directory called - .pypirc. The remote repository will be called- linode:- File: .pypirc
- 1 2 3 4 5 6 7 8 9 10 11- [distutils] index-servers = pypi linode [pypi] username: password: [linode] repository: http://192.0.2.0 username: example_user password: mypassword
 - Uploading to the official Python Package Index requires an account, although account information fields can be left blank. Replace example_user and mypassword with credentials defined through - htpasswdfrom earlier.
- To upload from the directory of the Python package: - python setup.py sdist upload -r linode- If successful, the console will print the message: - Server Response (200): OK.
More Information
You may wish to consult the following resources for additional information on this topic. While these are provided in the hope that they will be useful, please note that we cannot vouch for the accuracy or timeliness of externally hosted materials.
This page was originally published on

