{ "info": { "author": "", "author_email": "", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "Environment :: Web Environment", "Intended Audience :: Developers", "Intended Audience :: System Administrators", "License :: OSI Approved :: BSD License", "License :: OSI Approved :: zlib/libpng License", "Operating System :: MacOS :: MacOS X", "Operating System :: Microsoft :: Windows", "Operating System :: OS Independent", "Operating System :: POSIX", "Programming Language :: Python :: 2", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: Implementation :: CPython", "Programming Language :: Python :: Implementation :: PyPy", "Topic :: Software Development :: Build Tools", "Topic :: System :: Software Distribution" ], "description": ".. -*- mode: rst; coding: utf-8 -*-\n\n.. image:: pypiserver_logo.png\n :width: 300 px\n :align: center\n\n==============================================================================\npypiserver - minimal PyPI server for use with pip/easy_install\n==============================================================================\n|pypi-ver| |travis-status| |dependencies| |python-ver| |proj-license|\n\n:Version: 1.3.1\n:Date: 2019-09-10\n:Source: https://github.com/pypiserver/pypiserver\n:PyPI: https://pypi.org/project/pypiserver/\n:Travis: https://travis-ci.org/pypiserver/pypiserver\n:Maintainers: Kostis Anagnostopoulos ,\n Matthew Planchard \n:License: zlib/libpng + MIT\n\n``pypiserver`` is a minimal PyPI_ compatible server for ``pip`` or ``easy_install``.\nIt is based on bottle_ and serves packages from regular directories.\nWheels, bdists, eggs and accompanying PGP-signatures can be uploaded\neither with ``pip``, ``setuptools``, ``twine``, ``pypi-uploader``, or simply copied\nwith ``scp``.\n\n\n.. contents:: Table of Contents\n :backlinks: top\n\n\nQuickstart: Installation and Usage\n==================================\n\n``pypiserver`` > 1.2.x works with Python 2.7 and 3.4+ or PyPy.\nOlder Python versions may still work, but they are not tested.\nFor legacy Python versions, use ``pypiserver-1.1.x`` series.\n\n.. Tip::\n The commands below work on a unix-like operating system with a posix shell.\n The ``'~'`` character expands to user's home directory.\n\n If you're using Windows, you'll have to use their \"Windows counterparts\".\n The same is true for the rest of this documentation.\n\n1. Install ``pypiserver`` with this command::\n\n pip install pypiserver # Or: pypiserver[passlib,watchdog]\n mkdir ~/packages # Copy packages into this directory.\n\n See also `Alternative Installation methods`_.\n\n2. Copy some packages into your ``~/packages`` folder and then\n get your ``pypiserver`` up and running::\n\n pypi-server -p 8080 ~/packages & # Will listen to all IPs.\n\n3. From the client computer, type this::\n\n # Download and install hosted packages.\n pip install --extra-index-url http://localhost:8080/simple/ ...\n\n # or\n pip install --extra-index-url http://localhost:8080 ...\n\n # Search hosted packages.\n pip search --index http://localhost:8080 ...\n\n # Note that pip search does not currently work with the /simple/ endpoint.\n\n See also `Client-side configurations`_ for avoiding tedious typing.\n\n4. Enter ``pypi-server -h`` in the cmd-line to print a detailed usage message::\n\n pypi-server [OPTIONS] [PACKAGES_DIRECTORY...]\n start PyPI compatible package server serving packages from\n PACKAGES_DIRECTORY. If PACKAGES_DIRECTORY is not given on the\n command line, it uses the default ~/packages. pypiserver scans this\n directory recursively for packages. It skips packages and\n directories starting with a dot. Multiple package directories can be\n specified.\n\n pypi-server understands the following options:\n\n -p, --port PORT\n Listen on port PORT (default: 8080).\n\n -i, --interface INTERFACE\n Listen on interface INTERFACE (default: 0.0.0.0, any interface).\n\n -a, --authenticate (update|download|list), ...\n Comma-separated list of (case-insensitive) actions to authenticate.\n Requires to have set the password (-P option).\n To password-protect package downloads (in addition to uploads) while\n leaving listings public, use:\n -P foo/htpasswd.txt -a update,download\n To allow unauthorized access, use:\n -P . -a .\n Note that when uploads are not protected, the `register` command\n is not necessary, but `~/.pypirc` still need username and password fields,\n even if bogus.\n By default, only 'update' is password-protected.\n\n -P, --passwords PASSWORD_FILE\n Use apache htpasswd file PASSWORD_FILE to set usernames & passwords when\n authenticating certain actions (see -a option).\n To allow unauthorized access, use:\n -P . -a .\n\n --disable-fallback\n Disable redirect to real PyPI index for packages not found in the\n local index.\n\n --fallback-url FALLBACK_URL\n For packages not found in the local index, this URL will be used to\n redirect to (default: https://pypi.org/simple/).\n\n --server METHOD\n Use METHOD to run the server. Valid values include paste,\n cherrypy, twisted, gunicorn, gevent, wsgiref, auto. The\n default is to use \"auto\" which chooses one of paste, cherrypy,\n twisted or wsgiref.\n\n -r, --root PACKAGES_DIRECTORY\n [deprecated] Serve packages from PACKAGES_DIRECTORY.\n\n -o, --overwrite\n Allow overwriting existing package files.\n\n --hash-algo ALGO\n Any `hashlib` available algo used as fragments on package links.\n Set one of (0, no, off, false) to disabled it (default: md5).\n\n --welcome HTML_FILE\n Uses the ASCII contents of HTML_FILE as welcome message response.\n\n -v\n Enable verbose logging; repeat for more verbosity.\n\n --log-conf \n Read logging configuration from FILE.\n By default, configuration is read from `log.conf` if found in server's dir.\n\n --log-file \n Write logging info into this FILE.\n\n --log-frmt \n The logging format-string (see `logging.LogRecord` class from standard python library).\n [Default: %(asctime)s|%(name)s|%(levelname)s|%(thread)d|%(message)s]\n\n --log-req-frmt FORMAT\n A format-string selecting Http-Request properties to log; set to '%s' to see them all.\n [Default: %(bottle.request)s]\n\n --log-res-frmt FORMAT\n A format-string selecting Http-Response properties to log; set to '%s' to see them all.\n [Default: %(status)s]\n\n --log-err-frmt FORMAT\n A format-string selecting Http-Error properties to log; set to '%s' to see them all.\n [Default: %(body)s: %(exception)s \\n%(traceback)s]\n\n --cache-control AGE\n Add \"Cache-Control: max-age=AGE, public\" header to package downloads.\n Pip 6+ needs this for caching.\n\n pypi-server -h, --help\n Show this help message.\n\n pypi-server --version\n Show pypi-server's version.\n\n pypi-server -U [OPTIONS] [PACKAGES_DIRECTORY...]\n Update packages in PACKAGES_DIRECTORY. This command searches\n pypi.org for updates and shows a pip command line which\n updates the package.\n\n The following additional options can be specified with -U:\n\n -x\n Execute the pip commands instead of only showing them.\n\n -d DOWNLOAD_DIRECTORY\n Download package updates to this directory. The default is to use\n the directory which contains the latest version of the package to\n be updated.\n\n -u\n Allow updating to unstable version (alpha, beta, rc, dev versions).\n\n Visit https://github.com/pypiserver/pypiserver for more information.\n\n\nClient-Side Configurations\n==========================\n\nAlways specifying the the pypi url on the command line is a bit\ncumbersome. Since ``pypiserver`` redirects ``pip/easy_install`` to the\n``pypi.org`` index if it doesn't have a requested package, it is a\ngood idea to configure them to always use your local pypi index.\n\nConfiguring ``pip``\n-------------------\n\nFor ``pip`` command this can be done by setting the environment variable\n``PIP_EXTRA_INDEX_URL`` in your ``.bashr/.profile/.zshrc``::\n\n export PIP_EXTRA_INDEX_URL=http://localhost:8080/simple/\n\nor by adding the following lines to ``~/.pip/pip.conf``::\n\n [global]\n extra-index-url = http://localhost:8080/simple/\n\n.. Note::\n If you have installed ``pypiserver`` on a remote url without *https*\n you wil receive an \"untrusted\" warning from *pip*, urging you to append\n the ``--trusted-host`` option. You can also include this option permanently\n in your configuration-files or environment variables.\n\nConfiguring ``easy_install``\n----------------------------\n\nFor ``easy_install`` command you may set the following configuration in\n``~/.pydistutils.cfg``::\n\n [easy_install]\n index_url = http://localhost:8080/simple/\n\n\nUploading Packages Remotely\n===========================\n\nInstead of copying packages directly to the server's folder (i.e. with ``scp``),\nyou may use python tools for the task, e.g. ``python setup.py upload``.\nIn that case, ``pypiserver`` is responsible for authenticating the upload-requests.\n\n.. Note::\n We strongly advise to password-protected your uploads!\n\n It is possible to disable authentication for uploads (e.g. in intranets).\n To avoid lazy security decisions, read help for ``-P`` and ``-a`` options.\n\n*Apache*-Like Authentication (``htpasswd``)\n-------------------------------------------\n\n#. First make sure you have the *passlib* module installed (note that\n ``passlib>=1.6`` is required), which is needed for parsing the Apache\n *htpasswd* file specified by the ``-P``, ``--passwords`` option\n (see next steps)::\n\n pip install passlib\n\n#. Create the Apache *htpasswd* file with at least one user/password pair\n with this command (you'll be prompted for a password)::\n\n htpasswd -sc htpasswd.txt \n\n .. Tip:: Read this SO question for running `htpasswd` cmd\n under *Windows*:\n\n http://serverfault.com/questions/152950/how-to-create-and-edit-htaccess-and-htpasswd-locally-on-my-computer-and-then-u\n\n or if you have bogus passwords that you don't care because they are for\n an internal service (which is still \"bad\", from a security prespective...)\n you may use this public service:\n\n http://www.htaccesstools.com/htpasswd-generator/\n\n .. Tip:: When accessing pypiserver via the api, alternate authentication\n methods are available via the ``auther`` config flag. Any callable\n returning a boolean can be passed through to the pypiserver config in\n order to provide custom authentication. For example, to configure\n pypiserver to authenticate using the `python-pam`_::\n\n import pam\n pypiserver.default_config(auther=pam.authenticate)\n\n Please see `Using Ad-hoc authentication providers`_ for more information.\n\n#. You need to restart the server with the ``-P`` option only once\n (but user/password pairs can later be added or updated on the fly)::\n\n ./pypi-server -p 8080 -P htpasswd.txt ~/packages &\n\nUpload with ``setuptools``\n--------------------------\n\n#. On client-side, edit or create a ``~/.pypirc`` file with a similar content::\n\n [distutils]\n index-servers =\n pypi\n local\n\n [pypi]\n username:\n password:\n\n [local]\n repository: http://localhost:8080\n username: \n password: \n\n#. Then from within the directory of the python-project you wish to upload,\n issue this command::\n\n python setup.py sdist upload -r local\n\nUpload with ``twine``\n---------------------\n\nTo avoid storing you passwords on disk, in clear text, you may either:\n\n- use the ``register`` *setuptools*'s command with the ``-r`` option,\n like that::\n\n python setup.py sdist register -r local upload -r local\n\n- use `twine`_ library, which\n breaks the procedure in two steps. In addition, it supports signing\n your files with PGP-Signatures and uploading the generated `.asc` files\n to ``pypiserver``::\n\n twine upload -r local --sign -identity user_name ./foo-1.zip\n\n\nUsing the Docker Image\n======================\n\nStarting with version 1.2.5, official Docker images will be built for each\npush to master, each dev, alpha, or beta release, and each final release.\nThe most recent full release will always be available under the tag ``latest``,\nand the current master branch will always be available under the tag\n``unstable``.\n\nYou can always check to see what tags are currently available at our\n`Docker Repo`_.\n\nTo run the most recent release of ``pypiserver`` with Docker, simply::\n\n docker run pypiserver/pypiserver:latest\n\nThis starts ``pypiserver`` serving packages from the ``/data/packages``\ndirectory inside the container, listening on the container port 8080.\n\nThe container takes all the same arguments as the normal ``pypi-server``\nexecutable, with the exception of the internal container port (``-p``),\nwhich will always be 8080.\n\nOf course, just running a container isn't that interesting. To map\nport 80 on the host to port 8080 on the container::\n\n docker run -p 80:8080 pypiserver/pypiserver:latest\n\nYou can now access your ``pypiserver`` at ``localhost:80`` in a web browser.\n\nTo serve packages from a directory on the host, e.g. ``~/packages``::\n\n docker run -p 80:8080 -v ~/packages:/data/packages pypiserver/pypiserver:latest\n\nTo authenticate against a local ``.htpasswd`` file::\n\n docker run -p 80:8080 -v ~/.htpasswd:/data/.htpasswd pypiserver/pypiserver:latest -P .htpasswd packages\n\nYou can also specify ``pypiserver`` to run as a Docker service using a\ncomposefile. An example composefile is `provided `_.\n\n\n.. _`docker repo`: https://hub.docker.com/r/pypiserver/pypiserver/tags/\n\n\nAlternative Installation Methods\n================================\n\nWhen trying the methods below, first use the following command to check whether\nprevious versions of ``pypiserver`` already exist, and (optionally) uninstall them::\n\n # VERSION-CHECK: Fails if not installed.\n pypi-server --version\n\n # UNINSTALL: Invoke again untill it fails.\n pip uninstall pypiserver\n\nInstalling the Very Latest Version\n----------------------------------\n\nIn case the latest version in *pypi* is a pre-release, you have to use\n*pip*'s `--pre` option. And to update an existing installation combine it\nwith `--ignore-installed`::\n\n pip install pypiserver --pre -I\n\nYou can even install the latest ``pypiserver`` directly from *github* with the\nfollowing command, assuming you have *git* installed on your ``PATH``::\n\n pip install git+git://github.com/pypiserver/pypiserver.git\n\nInstalling It As Standalone Script\n----------------------------------\n\nThe git repository contains a ``pypi-server-standalone.py`` script,\nwhich is a single python file that can be executed without any other\ndependencies.\n\nRun the following commands to download the script with ``wget``::\n\n wget https://raw.github.com/pypiserver/pypiserver/standalone/pypi-server-standalone.py\n chmod +x pypi-server-standalone.py\n\nor with ``curl``::\n\n curl -O https://raw.github.com/pypiserver/pypiserver/standalone/pypi-server-standalone.py\n chmod +x pypi-server-standalone.py\n\nYou can then start-up the server with::\n\n ./pypi-server-standalone.py\n\nFeel free to rename the script and move it into your ``$PATH``.\n\nRunning on Heroku/Dotcloud\n--------------------------\n\nhttps://github.com/dexterous/pypiserver-on-the-cloud contains\ninstructions on how to run ``pypiserver`` on one of the supported cloud\nservice providers.\n\n\nRecipes\n=======\n\nManaging the Package Directory\n------------------------------\n\nThe ``pypi-server`` command has the ``-U`` option that searches for updates of\navailable packages. It scans the package directory for available\npackages and searches on pypi.org for updates. Without further\noptions ``pypi-server -U`` will just print a list of commands which must\nbe run in order to get the latest version of each package. Output\nlooks like::\n\n $ ./pypi-server -U\n checking 106 packages for newer version\n\n .........u.e...........e..u.............\n .....e..............................e...\n ..........................\n\n no releases found on pypi for PyXML, Pymacs, mercurial, setuptools\n\n # update raven from 1.4.3 to 1.4.4\n pip -q install --no-deps --extra-index-url https://pypi.org/simple/ -d /home/ralf/packages/mirror raven==1.4.4\n\n # update greenlet from 0.3.3 to 0.3.4\n pip -q install --no-deps --extra-index-url https://pypi.org/simple/ -d /home/ralf/packages/mirror greenlet==0.3.4\n\nIt first prints for each package a single character after checking the\navailable versions on pypi. A dot(`.`) means the package is up-to-date, ``'u'``\nmeans the package can be updated and ``'e'`` means the list of releases on\npypi is empty. After that it shows a *pip* command line which can be used\nto update a one package. Either copy and paste that or run\n``pypi-server -Ux`` in order to really execute those commands. You need\nto have *pip* installed for that to work however.\n\nSpecifying an additional ``-u`` option will also allow alpha, beta and\nrelease candidates to be downloaded. Without this option these\nreleases won't be considered.\n\nServing Thousands of Packages\n-----------------------------\n\nBy default, ``pypiserver`` scans the entire packages directory each time an\nincoming HTTP request occurs. This isn't a problem for a small number of\npackages, but causes noticeable slow-downs when serving thousands of packages.\n\nIf you run into this problem, significant speedups can be gained by enabling\npypiserver's directory caching functionality. The only requirement is to\ninstall the ``watchdog`` package, or it can be installed during ``pypiserver``\ninstallation, by specifying the ``cache`` extras option::\n\n pip install pypiserver[cache]\n\nAdditional speedups can be obtained by using your webserver's builtin\ncaching functionality. For example, if you are using `nginx` as a\nreverse-proxy as described below in `Behind a reverse proxy`_, you can\neasily enable caching. For example, to allow nginx to cache up to\n10 gigabytes of data for up to 1 hour::\n\n proxy_cache_path /data/nginx/cache\n levels=1:2\n keys_zone=pypiserver_cache:10m\n max_size=10g\n inactive=60m\n use_temp_path=off;\n\n server {\n # ...\n location / {\n proxy_cache pypiserver_cache;\n proxy_pass http://localhost:8080;\n }\n }\n\nUsing webserver caching is especially helpful if you have high request\nvolume. Using `nginx` caching, a real-world pypiserver installation was\nable to easily support over 1000 package downloads/min at peak load.\n\nManaging Automated Startup\n--------------------------\n\nThere are a variety of options for handling the automated starting of\npypiserver upon system startup. Two of the most common are *systemd* and\n*supervisor*.\n\nRunning As a ``systemd`` Service\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n\n``systemd`` is installed by default on most modern Linux systems and as such,\nit is an excellent option for managing the pypiserver process. An example\nconfig file for ``systemd`` can be seen below::\n\n [Unit]\n Description=A minimal PyPI server for use with pip/easy_install.\n After=network.target\n\n [Service]\n Type=simple\n # systemd requires absolute path here too.\n PIDFile=/var/run/pypiserver.pid\n User=www-data\n Group=www-data\n\n ExecStart=/usr/local/bin/pypi-server -p 8080 -a update,download --log-file /var/log/pypiserver.log -P /etc/nginx/.htpasswd /var/www/pypi\n ExecStop=/bin/kill -TERM $MAINPID\n ExecReload=/bin/kill -HUP $MAINPID\n Restart=always\n\n WorkingDirectory=/var/www/pypi\n\n TimeoutStartSec=3\n RestartSec=5\n\n [Install]\n WantedBy=multi-user.target\n\nAdjusting the paths and adding this file as ``pypiserver.service`` into your\n``systemd/system`` directory will allow management of the pypiserver process with\n``systemctl``, e.g. ``systemctl start pypiserver``.\n\nMore useful information about *systemd* can be found at\nhttps://www.digitalocean.com/community/tutorials/how-to-use-systemctl-to-manage-systemd-services-and-units\n\nLaunching through ``supervisor``\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n\n`supervisor `_ has the benefit of being a pure python\npackage and as such, it provides excellent cross-platform support for process\nmanagement. An example configuration file for ``supervisor`` is given below::\n\n [program:pypi]\n command=/home/pypi/pypi-venv/bin/pypi-server -p 7001 -P /home/pypi/.htpasswd /home/pypi/packages\n directory=/home/pypi\n user=pypi\n autostart=true\n autorestart=true\n stderr_logfile=/var/log/pypiserver.err.log\n stdout_logfile=/var/log/pypiserver.out.log\n\nFrom there, the process can be managed via ``supervisord`` using ``supervisorctl``.\n\nUsing a Different WSGI Server\n-----------------------------\n\n- The ``bottle`` web-server which supports many WSGI-servers, among others,\n ``paste``, ``cherrypy``, ``twisted`` and ``wsgiref`` (part of Python); you select\n them using the ``--server`` flag.\n\n- You may view all supported WSGI servers using the following interactive code::\n\n >>> from pypiserver import bottle\n >>> list(bottle.server_names.keys())\n ['cgi', 'gunicorn', 'cherrypy', 'eventlet', 'tornado', 'geventSocketIO',\n 'rocket', 'diesel', 'twisted', 'wsgiref', 'fapws3', 'bjoern', 'gevent',\n 'meinheld', 'auto', 'aiohttp', 'flup', 'gae', 'paste', 'waitress']\n\n- If none of the above servers matches your needs, invoke just the\n ``pypiserver:app()`` method which returns the internal WSGI-app WITHOUT\n starting-up a server - you may then send it to any WSGI server you like.\n Read also the `Utilizing the API`_ section.\n\n- Some examples are given below - you may find more details in `bottle\n site `_.\n\nApache (``mod_wsgi``)\n~~~~~~~~~~~~~~~~~~~~~\n\nTo use your *Apache2* with ``pypiserver``, prefer to utilize ``mod_wsgi`` as\nexplained in `bottle's documentation `_.\n\n.. Note::\n If you choose instead to go with ``mod_proxy``, mind that you may bump into problems\n with the prefix-path (see `#155 `_).\n\n1. Adapt and place the following *Apache* configuration either into top-level scope,\n or inside some ```` (contributed by Thomas Waldmann)::\n\n WSGIScriptAlias / /yoursite/wsgi/pypiserver-wsgi.py\n WSGIDaemonProcess pypisrv user=pypisrv group=pypisrv umask=0007 \\\n processes=1 threads=5 maximum-requests=500 \\\n display-name=wsgi-pypisrv inactivity-timeout=300\n WSGIProcessGroup pypisrv\n WSGIPassAuthorization On # (Optional) Use also apache's authentication.\n\n \n Require all granted\n \n\n or if using older ``Apache < 2.4``, substitute the last part with this::\n\n \n Order deny,allow\n Allow from all\n \n\n2. Then create the ``/yoursite/cfg/pypiserver.wsgi`` file and make sure that\n the ``user`` and ``group`` of the ``WSGIDaemonProcess`` directive\n (``pypisrv:pypisrv`` in the example) have the read permission on it::\n\n import pypiserver\n\n conf = pypiserver.default_config(\n root = \"/yoursite/packages\",\n password_file = \"/yoursite/htpasswd\", )\n application = pypiserver.app(**conf)\n\n\n .. Tip::\n If you have installed ``pypiserver`` in a virtualenv, follow ``mod_wsgi``'s\n `instructions `_\n and prepend the python code above with the following::\n\n import site\n\n site.addsitedir('/yoursite/venv/lib/pythonX.X/site-packages')\n\n.. Note::\n For security reasons, notice that the ``Directory`` directive grants access\n to a directory holding the ``wsgi`` start-up script, alone; nothing else.\n\n``gunicorn``\n~~~~~~~~~~~~\n\nThe following command uses ``gunicorn`` to start ``pypiserver``::\n\n gunicorn -w4 'pypiserver:app(root=\"/home/ralf/packages\")'\n\nor when using multiple roots::\n\n gunicorn -w4 'pypiserver:app(root=[\"/home/ralf/packages\", \"/home/ralf/experimental\"])'\n\n``paste``\n~~~~~~~~~\n\n`paste `_ allows to run multiple WSGI applications\nunder different URL paths. Therefore it is possible to serve different set\nof packages on different paths.\n\nThe following example ``paste.ini`` could be used to serve stable and\nunstable packages on different paths::\n\n [composite:main]\n use = egg:Paste#urlmap\n /unstable/ = unstable\n / = stable\n\n [app:stable]\n use = egg:pypiserver#main\n root = ~/stable-packages\n\n [app:unstable]\n use = egg:pypiserver#main\n root = ~/stable-packages\n ~/unstable-packages\n\n [server:main]\n use = egg:gunicorn#main\n host = 0.0.0.0\n port = 9000\n workers = 5\n accesslog = -\n\n.. Note::\n You need to install some more dependencies for this to work, like::\n\n pip install paste pastedeploy gunicorn pypiserver\n\n The server can then start with::\n\n gunicorn_paster paste.ini\n\n\nBehind a Reverse Proxy\n----------------------\n\nYou can run ``pypiserver`` behind a reverse proxy as well.\n\nNginx\n~~~~~\n\nExtend your nginx configuration::\n\n upstream pypi {\n server pypiserver.example.com:12345 fail_timeout=0;\n }\n\n server {\n server_name myproxy.example.com;\n\n location / {\n proxy_set_header Host $host:$server_port;\n proxy_set_header X-Forwarded-Proto $scheme;\n proxy_set_header X-Real-IP $remote_addr;\n proxy_pass http://pypi;\n }\n }\n\nAs of pypiserver 1.3, you may also use the `X-Forwarded-Host` header in your\nreverse proxy config to enable changing the base URL. For example if you\nwant to host pypiserver under a particular path on your server::\n\n upstream pypi {\n server locahost:8000;\n }\n\n server {\n location /pypi/ {\n proxy_set_header X-Forwarded-Host $host:$server_port/pypi;\n proxy_set_header X-Forwarded-Proto $scheme;\n proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;\n proxy_set_header X-Real-IP $remote_addr;\n proxy_pass http://pypi;\n }\n }\n\nSupporting HTTPS\n~~~~~~~~~~~~~~~~\n\nUsing a reverse proxy is the preferred way of getting pypiserver behind\nHTTPS. For example, to put pypiserver behind HTTPS on port 443, with\nautomatic HTTP redirection, using `nginx`::\n\n upstream pypi {\n server localhost:8000;\n }\n\n server {\n listen 80 default_server;\n server_name _;\n return 301 https://$host$request_uri;\n }\n\n server {\n listen 443 ssl;\n server_name pypiserver.example.com;\n\n ssl_certificate /etc/star.example.com.crt;\n ssl_certificate_key /etc/star.example.com.key;\n ssl_protocols TLSv1 TLSv1.1 TLSv1.2;\n ssl_ciphers HIGH:!aNULL:!MD5;\n\n location / {\n proxy_set_header Host $host:$server_port;\n proxy_set_header X-Forwarded-Proto $scheme;\n proxy_set_header X-Real-IP $remote_addr;\n proxy_pass http://pypi;\n }\n }\n\nPlease see `nginx's HTTPS docs for more details `_.\n\nGetting and keeping your certificates up-to-date can be simplified using,\nfor example, using `certbot and letsencrypt `_.\n\nUtilizing the API\n-----------------\n\nIn order to enable ad-hoc authentication-providers or to use WSGI-servers\nnot supported by *bottle* out-of-the-box, you needed to launch ``pypiserver``\nvia its API.\n\n- The main entry-point for configuring ``pypiserver`` is the `pypiserver:app()\n `_\n function. This function returns the internal WSGI-app that you my then\n send to any WSGI-server you like.\n\n- To get all ``pypiserver:app()`` keywords and their explanations, read the\n function `pypiserver:default_config()\n `_.\n\n- Finally, to fire-up a WSGI-server with the configured app, invoke\n the ``bottle:run(app, host, port, server)`` function.\n Note that ``pypiserver`` ships with it is own copy of *bottle*; to use it,\n import it like that: ``from pypiserver import bottle``\n\nUsing Ad-Hoc Authentication Providers\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n\nThe ``auther`` keyword of ``pypiserver:app()`` function maybe set only using\nthe API. This can be any callable that returns a boolean when passed\nthe *username* and the *password* for a given request.\n\nFor example, to authenticate users based on the ``/etc/passwd`` file under Unix,\nyou may delegate such decisions to the `python-pam`_ library by following\nthese steps:\n\n1. Ensure ``python-pam`` module is installed::\n\n pip install python-pam\n\n2. Create a python-script along these lines::\n\n $ cat > pypiserver-start.py\n import pypiserver\n from pypiserver import bottle\n import pam\n app = pypiserver.app(root='./packages', auther=pam.authenticate)\n bottle.run(app=app, host='0.0.0.0', port=80, server='auto')\n\n [Ctrl+ D]\n\n3. Invoke the python-script to start-up ``pypiserver``::\n\n $ python pypiserver-start.py\n\n\n.. Note::\n The `python-pam`_ module, requires *read* access to ``/etc/shadow`` file;\n you may add the user under which ``pypiserver`` runs into the *shadow*\n group, with a command like this: ``sudo usermod -a -G shadow pypy-user``.\n\n\nSources\n=======\n\nTo create a copy of the repository, use::\n\n git clone https://github.com/pypiserver/pypiserver.git\n cd pypiserver\n\nTo receive any later changes, in the above folder use::\n\n git pull\n\n\nKnown Limitations\n=================\n\n``pypiserver`` does not implement the full API as seen on PyPI_. It\nimplements just enough to make ``easy_install``, ``pip install``, and\n``search`` work.\n\nThe following limitations are known:\n\n- Command ``pypi -U`` that compares uploaded packages with *pypi* to see if\n they are outdated, does not respect a http-proxy environment variable\n (see `#19 `_).\n- It accepts documentation uploads but does not save them to\n disk (see `#47 `_ for a\n discussion)\n- It does not handle misspelled packages as *pypi-repo* does,\n therefore it is suggested to use it with ``--extra-index-url`` instead\n of ``--index-url`` (see `#38 `_).\n\nPlease use Github's `bugtracker `_\nfor other bugs you find.\n\n\nSimilar Projects\n================\n\nThere are lots of other projects, which allow you to run your own\nPyPI server. If ``pypiserver`` doesn't work for you, the following are\namong the most popular alternatives:\n\n- `devpi-server `_:\n a reliable fast pypi.org caching server, part of\n the comprehensive `github-style pypi index server and packaging meta tool\n `_.\n (version: 2.1.4, access date: 8/3/2015)\n\n- `pip2pi `_\n a simple cmd-line tool that builds a PyPI-compatible local folder from pip requirements\n (version: 0.6.7, access date: 8/3/2015)\n\n- `flask-pypi-proxy `_\n A proxy for PyPI that also enables also uploading custom packages.\n\n- `twine`_:\n A command-line utility for interacting with PyPI or ``pypiserver``.\n\n- `pypi-uploader`_:\n A command-line utility to upload packages to your ``pypiserver`` from pypi without\n having to store them locally first.\n\n- Check this SO question: `How to roll my own pypi\n `_\n\n\nLicensing\n=========\n\n``pypiserver`` contains a copy of bottle_ which is available under the\nMIT license, and the remaining part is distributed under the zlib/libpng license.\nSee the ``LICENSE.txt`` file.\n\n\n.. _bottle: http://bottlepy.org\n.. _PyPI: https://pypi.org\n.. _twine: https://pypi.org/project/twine/\n.. _pypi-uploader: https://pypi.org/project/pypi-uploader/\n.. _python-pam: https://pypi.org/project/python-pam/\n.. |travis-status| image:: https://travis-ci.org/pypiserver/pypiserver.svg\n :alt: Travis build status\n :scale: 100%\n :target: https://travis-ci.org/pypiserver/pypiserver\n\n.. |pypi-ver| image:: https://img.shields.io/pypi/v/pypiserver.svg\n :target: https://pypi.org/project/pypiserver/\n :alt: Latest Version in PyPI\n\n.. |python-ver| image:: https://img.shields.io/pypi/pyversions/pypiserver.svg\n :target: https://pypi.org/project/pypiserver/\n :alt: Supported Python versions\n\n.. |proj-license| image:: https://img.shields.io/badge/license-BSD%2Bzlib%2Flibpng-blue.svg\n :target: https://raw.githubusercontent.com/pypiserver/pypiserver/master/LICENSE.txt\n :alt: Project License\n\n.. |dependencies| image:: https://img.shields.io/requires/github/pypiserver/pypiserver.svg\n :target: https://requires.io/github/pypiserver/pypiserver/requirements/\n :alt: Dependencies up-to-date?\n\n\n", "description_content_type": "", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/pypiserver/pypiserver", "keywords": "", "license": "", "maintainer": "Kostis Anagnostopoulos Matthew Planchard ", "maintainer_email": "ankostis@gmail.com", "name": "pypiserver", "package_url": "https://pypi.org/project/pypiserver/", "platform": "any", "project_url": "https://pypi.org/project/pypiserver/", "project_urls": { "Homepage": "https://github.com/pypiserver/pypiserver" }, "release_url": "https://pypi.org/project/pypiserver/1.3.1/", "requires_dist": [ "watchdog ; extra == 'cache'", "passlib (>=1.6) ; extra == 'passlib'" ], "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "summary": "A minimal PyPI server for use with pip/easy_install.", "version": "1.3.1" }, "last_serial": 5812225, "releases": { "0.1.0": [ { "comment_text": "", "digests": { "md5": "207072daba4399d1b370cf73e2cbf851", "sha256": "9a5ebbeea43f2531521b66379a280dd85bee9f695956fdd256abe3fb35e104f4" }, "downloads": -1, "filename": "pypiserver-0.1.0.zip", "has_sig": false, "md5_digest": "207072daba4399d1b370cf73e2cbf851", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 32656, "upload_time": "2011-07-29T03:35:31", "url": "https://files.pythonhosted.org/packages/bb/ca/94883c53b3734f1c6aa504752a12744699842996f53aae1bc2994e791499/pypiserver-0.1.0.zip" } ], "0.1.1": [ { "comment_text": "", "digests": { "md5": "342eb45269d19ea767b04cf8ca87ae40", "sha256": "83a8205916756724fec43a9f7908fc97cde19b6c855fc79f72792da5cdd19886" }, "downloads": -1, "filename": "pypiserver-0.1.1.tar.gz", "has_sig": false, "md5_digest": "342eb45269d19ea767b04cf8ca87ae40", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 31047, "upload_time": "2011-07-29T13:26:07", "url": "https://files.pythonhosted.org/packages/50/e9/342f9602ddad17500490e4f0555354f93d7bcc6553d793a1b1703515f4d3/pypiserver-0.1.1.tar.gz" } ], "0.1.2": [ { "comment_text": "", "digests": { "md5": "b32efe89eb030e37cc59047e688356c8", "sha256": "8bcbb0c5f381f517ab663c3cad18c6fa2cbd10f7fe05f6277ecb1dbca4d8ef0c" }, "downloads": -1, "filename": "pypiserver-0.1.2.zip", "has_sig": false, "md5_digest": "b32efe89eb030e37cc59047e688356c8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 37421, "upload_time": "2011-08-01T02:09:27", "url": "https://files.pythonhosted.org/packages/b4/6f/c0afb60a1290316a1fe8b872098e4c076270cfb04423280c0227c8dad6ff/pypiserver-0.1.2.zip" } ], "0.1.3": [ { "comment_text": "", "digests": { "md5": "8e4cf8248fbc6ae402b765c53a42d2a8", "sha256": "a3b166b106881b33f61f3802b07513f5db4c9513ea19ee054b9396747c214ec8" }, "downloads": -1, "filename": "pypiserver-0.1.3.zip", "has_sig": false, "md5_digest": "8e4cf8248fbc6ae402b765c53a42d2a8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 39919, "upload_time": "2011-08-01T23:20:33", "url": "https://files.pythonhosted.org/packages/f1/00/9802ea49f6a86638c2b5264983a3174107e8cd59c90cac86ace77d5cf0ac/pypiserver-0.1.3.zip" } ], "0.2.0": [ { "comment_text": "", "digests": { "md5": "8962f55166ac433898284ec546444898", "sha256": "7c2d9d6296db359a4d2d4974315d5e14da78460e3ec15f871035967d1e433917" }, "downloads": -1, "filename": "pypiserver-0.2.0.zip", "has_sig": false, "md5_digest": "8962f55166ac433898284ec546444898", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 41296, "upload_time": "2011-08-09T23:56:41", "url": "https://files.pythonhosted.org/packages/8d/98/2b25c3b3f00cf39256593080aa085c0240cbbcbee0000f31d406ade73389/pypiserver-0.2.0.zip" } ], "0.3.0": [ { "comment_text": "", "digests": { "md5": "7a86132438efbb6fb182fb19b705a1f5", "sha256": "797d0f187c1ce8c2a6964f1711ed1a29054b04efd64a378fe65217963911a00a" }, "downloads": -1, "filename": "pypiserver-0.3.0.zip", "has_sig": false, "md5_digest": "7a86132438efbb6fb182fb19b705a1f5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 44291, "upload_time": "2011-10-07T21:22:43", "url": "https://files.pythonhosted.org/packages/59/31/10bf4f2c719b2ee62b9788670cc239ed9d496c1f78e9da773ecd8e7f157b/pypiserver-0.3.0.zip" } ], "0.4.0": [ { "comment_text": "", "digests": { "md5": "1a1a30d75b92137e99e7bf967a98d3e9", "sha256": "3fc579ff3bc2e0b40d3b83a9d758eebfc8017ffeab55dfa46f188c3237b8d681" }, "downloads": -1, "filename": "pypiserver-0.4.0.zip", "has_sig": false, "md5_digest": "1a1a30d75b92137e99e7bf967a98d3e9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 53869, "upload_time": "2011-11-19T21:37:32", "url": "https://files.pythonhosted.org/packages/a2/17/22dd34a6f437bcf73b79e9f0f5a8fc9339d6acaade5a978415a5b2e78930/pypiserver-0.4.0.zip" } ], "0.4.1": [ { "comment_text": "", "digests": { "md5": "37f7a6705b203b4e3113bb3b6c321131", "sha256": "9922e94449bce2648bf58e88ffd4dcbb513635f2e46f9b766c6b0c24e0adab98" }, "downloads": -1, "filename": "pypiserver-0.4.1.zip", "has_sig": false, "md5_digest": "37f7a6705b203b4e3113bb3b6c321131", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 54583, "upload_time": "2011-11-23T22:44:17", "url": "https://files.pythonhosted.org/packages/5c/61/da29f14d1656685951657defd5db6e4b9c0c8a6c9e386e2eefffca7c6205/pypiserver-0.4.1.zip" } ], "0.5.0": [ { "comment_text": "", "digests": { "md5": "9fcd7d86cb5ff7873c0874a4917e1854", "sha256": "66c78f126f30765ae94008c9b9c2cc4117992da1e34cb88e3d349e1c21b124b5" }, "downloads": -1, "filename": "pypiserver-0.5.0.zip", "has_sig": false, "md5_digest": "9fcd7d86cb5ff7873c0874a4917e1854", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 55051, "upload_time": "2011-12-05T22:40:47", "url": "https://files.pythonhosted.org/packages/50/3f/e65419905439c5244c60fdc5500b2a4fe498cf8c77f463a549fb8f9d1182/pypiserver-0.5.0.zip" } ], "0.5.1": [ { "comment_text": "", "digests": { "md5": "7f77bbcb40afb7d0e4c0ef76c438d21d", "sha256": "ec992516cb32d8bdc2ea5a324311fb558066560238e71368a7855bbbca1ade6f" }, "downloads": -1, "filename": "pypiserver-0.5.1.zip", "has_sig": false, "md5_digest": "7f77bbcb40afb7d0e4c0ef76c438d21d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 53089, "upload_time": "2012-02-23T11:24:49", "url": "https://files.pythonhosted.org/packages/7d/2a/2f2c7bd771b27b82efa03be38d5fdb7f44f41ef3978446e62846549bea84/pypiserver-0.5.1.zip" } ], "0.5.2": [ { "comment_text": "", "digests": { "md5": "987386fc2f27ef653699b95addb9fe5b", "sha256": "50cf77a691ffc62cc80ae04e69d8571af76a195f2587546ae0c37c7a7befcb2a" }, "downloads": -1, "filename": "pypiserver-0.5.2.zip", "has_sig": false, "md5_digest": "987386fc2f27ef653699b95addb9fe5b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 55710, "upload_time": "2012-03-27T00:27:22", "url": "https://files.pythonhosted.org/packages/c1/f3/a023102e34be68ed11da6544c7f776b373d5f0f12636d4b1345f95d19760/pypiserver-0.5.2.zip" } ], "0.6.0": [ { "comment_text": "", "digests": { "md5": "2021d301a92e1ccd10397f7995c0a1bb", "sha256": "d774e0a8e315518c2fc246ecc874f6a338adf7523eca11f5a1e25e7f529e79a7" }, "downloads": -1, "filename": "pypiserver-0.6.0.zip", "has_sig": false, "md5_digest": "2021d301a92e1ccd10397f7995c0a1bb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 67444, "upload_time": "2012-06-14T21:55:42", "url": "https://files.pythonhosted.org/packages/a8/e0/9ba4c2c9d82614e01b5bed2485354bb8a68b0a4edefecb01d832eca10462/pypiserver-0.6.0.zip" } ], "0.6.1": [ { "comment_text": "", "digests": { "md5": "d19ce3975abd2fce0387361d14d3ab2a", "sha256": "bb9b927f932a1db19b80c805fadb507d29d4c69813ddceec986ee00b011d930a" }, "downloads": -1, "filename": "pypiserver-0.6.1.zip", "has_sig": false, "md5_digest": "d19ce3975abd2fce0387361d14d3ab2a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 67578, "upload_time": "2012-08-07T22:15:49", "url": "https://files.pythonhosted.org/packages/12/78/9d3807b782888472896e437a8f9df31153a2214c21a2d92b365126fc1176/pypiserver-0.6.1.zip" } ], "1.0.0": [ { "comment_text": "", "digests": { "md5": "5d860e3fb76ff55d0aa96afb93db695d", "sha256": "5cd9810569fd03cefa6b46fc620157d8c23f7345eac38da5e2f25e98be72d6e1" }, "downloads": -1, "filename": "pypiserver-1.0.0.zip", "has_sig": false, "md5_digest": "5d860e3fb76ff55d0aa96afb93db695d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 73085, "upload_time": "2012-10-26T18:40:27", "url": "https://files.pythonhosted.org/packages/31/ac/e3e1661eb352b13c4dc237b9858b79c92186aca1806cb8740faf2c1a6a3c/pypiserver-1.0.0.zip" } ], "1.0.1": [ { "comment_text": "", "digests": { "md5": "45e5eab264809796eb5e36fd4811c0c0", "sha256": "918598b18e1e1b7c504e6b30968ee7c40a8060ca63947f4989c93daa29d5bcf4" }, "downloads": -1, "filename": "pypiserver-1.0.1.zip", "has_sig": false, "md5_digest": "45e5eab264809796eb5e36fd4811c0c0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 73763, "upload_time": "2013-01-03T22:01:43", "url": "https://files.pythonhosted.org/packages/af/6b/285eb40f33f48aaf1428e09ddb19218b1917428b7068478756d09bf0dc08/pypiserver-1.0.1.zip" } ], "1.1.0": [ { "comment_text": "", "digests": { "md5": "386ad1a94559f98a9993a30b30a0e236", "sha256": "9e38b138132aeeff1472f3dc6c7c0e8199c19df35dbb264adb29e04a2090b90a" }, "downloads": -1, "filename": "pypiserver-1.1.0.zip", "has_sig": false, "md5_digest": "386ad1a94559f98a9993a30b30a0e236", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 80755, "upload_time": "2013-02-14T22:15:56", "url": "https://files.pythonhosted.org/packages/37/2a/1fbde4e748994840a59c6fd48bed4816ff4c77acad275524b008bdd32cf0/pypiserver-1.1.0.zip" } ], "1.1.1": [ { "comment_text": "", "digests": { "md5": "c9267e94444a7a048bf77fd084f2a837", "sha256": "67f006e3a51f187fbe5d67dcc2ec5efd98270e73b05cc389961900441734a3cc" }, "downloads": -1, "filename": "pypiserver-1.1.1.zip", "has_sig": false, "md5_digest": "c9267e94444a7a048bf77fd084f2a837", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 80026, "upload_time": "2013-05-28T22:47:51", "url": "https://files.pythonhosted.org/packages/5a/e7/14fd09b68a98fa290e7940c1f81957da329d80209aeffdcce0ee62606944/pypiserver-1.1.1.zip" } ], "1.1.10": [ { "comment_text": "", "digests": { "md5": "4e8014322d37541ecb6b7c34927a7241", "sha256": "75ec0aa596e8af7d13082e3a96c207689909ede1c232902bf900ae1eaa0a6679" }, "downloads": -1, "filename": "pypiserver-1.1.10-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "4e8014322d37541ecb6b7c34927a7241", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 75341, "upload_time": "2016-01-19T19:45:47", "url": "https://files.pythonhosted.org/packages/f0/e7/dadb5eeae54d6efb41056f5e111f73d414058c6e84e30f15b681159b3859/pypiserver-1.1.10-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "674ec0ad16ef78ed994db03ef8156bc6", "sha256": "faab3e909b6ead39045ff488a9dea71207d9ff406c54c259da8394af497279fa" }, "downloads": -1, "filename": "pypiserver-1.1.10.zip", "has_sig": true, "md5_digest": "674ec0ad16ef78ed994db03ef8156bc6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 482241, "upload_time": "2016-01-19T19:46:05", "url": "https://files.pythonhosted.org/packages/45/a5/b869ecb9ed7625a4d215be5aa591108a187a1e803652c6a76cbd023bf054/pypiserver-1.1.10.zip" } ], "1.1.2": [ { "comment_text": "", "digests": { "md5": "1552bf7e757f383250c11c91e19cb3ed", "sha256": "e2576127b06a5d59f4b6f51a5970139b5d8d6a4b6523ddc4d95f25b329347669" }, "downloads": -1, "filename": "pypiserver-1.1.2.zip", "has_sig": false, "md5_digest": "1552bf7e757f383250c11c91e19cb3ed", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 80224, "upload_time": "2013-06-22T21:04:33", "url": "https://files.pythonhosted.org/packages/de/53/85774d8be9b296961536a8e1b00b47df28aa7e7c8293cdb7f2df9311dc77/pypiserver-1.1.2.zip" } ], "1.1.3": [ { "comment_text": "", "digests": { "md5": "bb8ce5a14a2599480a7aeff380c3fe28", "sha256": "1975886f72270e284404e8953e8d8e5c0d6117e5211b7b87e0a202e67b493748" }, "downloads": -1, "filename": "pypiserver-1.1.3.zip", "has_sig": false, "md5_digest": "bb8ce5a14a2599480a7aeff380c3fe28", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 80575, "upload_time": "2013-07-22T20:06:12", "url": "https://files.pythonhosted.org/packages/04/b5/7a119e593e984a4514ed5916226ad79f726c0840c9e5543b7459931929e4/pypiserver-1.1.3.zip" } ], "1.1.4": [ { "comment_text": "", "digests": { "md5": "ddceb5737e01e2f484baa2dda905e299", "sha256": "229bc24f01024c7a2d5c169f462b2c43fdba5ae8665e59dff8fe962a5cfc55ce" }, "downloads": -1, "filename": "pypiserver-1.1.4-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "ddceb5737e01e2f484baa2dda905e299", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 60396, "upload_time": "2014-01-09T23:44:48", "url": "https://files.pythonhosted.org/packages/7f/f0/7e0ffa7ba0d3a8bea3bf1ddfc40d72238782ffcb56eb19a50e96e421d772/pypiserver-1.1.4-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d75dd509161057018818d68e19aff405", "sha256": "045b16064c76d5a5786be41d2fdbc850aac9ca6fe5600f9213ed36de3f236b38" }, "downloads": -1, "filename": "pypiserver-1.1.4.zip", "has_sig": false, "md5_digest": "d75dd509161057018818d68e19aff405", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 80691, "upload_time": "2014-01-03T22:36:31", "url": "https://files.pythonhosted.org/packages/aa/7f/6f251398ada5e30dcaa242ecdaab72ac3576a11db4eaedb94a01356e1f30/pypiserver-1.1.4.zip" } ], "1.1.5": [ { "comment_text": "", "digests": { "md5": "7124f76767d670dc3686c777eeb5fe86", "sha256": "6d392d3a8df90c2a1f13868724d7cc6ee385683608db34ac021bad80258927c5" }, "downloads": -1, "filename": "pypiserver-1.1.5-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "7124f76767d670dc3686c777eeb5fe86", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 60797, "upload_time": "2014-01-20T22:16:23", "url": "https://files.pythonhosted.org/packages/eb/ef/d3a47fce15abef57df5a9dceb8b7e09eb67d8fb01af42a99155797539bff/pypiserver-1.1.5-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "48d46be0178365aa0ca0aaac4e6f0bae", "sha256": "16138cf7e3a48e4f4f0d7bf59526abd62e6f495342509d4d751a906c08e838d7" }, "downloads": -1, "filename": "pypiserver-1.1.5.zip", "has_sig": false, "md5_digest": "48d46be0178365aa0ca0aaac4e6f0bae", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 77640, "upload_time": "2014-01-20T22:16:32", "url": "https://files.pythonhosted.org/packages/29/82/9d30181b81cfab962e8be63ce63545b2169762f3c3969ddcc591b011e920/pypiserver-1.1.5.zip" } ], "1.1.6": [ { "comment_text": "", "digests": { "md5": "79a9b09c1fc57b441e0cd68a6169a3d5", "sha256": "39d427f9d848ddab430ff45bc06c8d4ced67e31979521bbc78c0baccaa8e77db" }, "downloads": -1, "filename": "pypiserver-1.1.6-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "79a9b09c1fc57b441e0cd68a6169a3d5", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 63069, "upload_time": "2014-03-05T22:00:35", "url": "https://files.pythonhosted.org/packages/f7/ac/290029f9897d3a6f89e683c3f86822640b297dfd36370e7a64bca385b9e4/pypiserver-1.1.6-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "7b7ad55de1c858c19062c465d8607870", "sha256": "9e20e6de26591f669c63b84577564ba1537054943c3d76e606fc3297901f635b" }, "downloads": -1, "filename": "pypiserver-1.1.6.zip", "has_sig": false, "md5_digest": "7b7ad55de1c858c19062c465d8607870", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 77741, "upload_time": "2014-03-05T22:00:27", "url": "https://files.pythonhosted.org/packages/30/52/e863677e313268b974c15f00ef67051e2481e7faa5f7565b86ae9cf9731a/pypiserver-1.1.6.zip" } ], "1.1.7": [ { "comment_text": "", "digests": { "md5": "8e2d00e0bed8fcf5e8151dcdfad01cb4", "sha256": "a237c449254b5c10ac0cdd08bb796106b68bcb29f6571c278eafe4b71dc540a5" }, "downloads": -1, "filename": "pypiserver-1.1.7-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "8e2d00e0bed8fcf5e8151dcdfad01cb4", "packagetype": "bdist_wheel", "python_version": "3.4", "requires_python": null, "size": 64150, "upload_time": "2015-03-08T21:06:32", "url": "https://files.pythonhosted.org/packages/68/6d/c606c4633cee0c2edf33a1e152e25e733ad18f482e4a157f91a5a35a6658/pypiserver-1.1.7-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "ca91a523a66dd7bc3bfa654da676a7d4", "sha256": "4ad329bed3ba0d828dea56ab26e57387231f8cbc8edd12bcaa53e93d50a05de9" }, "downloads": -1, "filename": "pypiserver-1.1.7.zip", "has_sig": true, "md5_digest": "ca91a523a66dd7bc3bfa654da676a7d4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 86178, "upload_time": "2015-03-08T21:06:13", "url": "https://files.pythonhosted.org/packages/68/36/38949a3e509e8860b8c84ff1040e816fdfc8a44d42defa8a07648bcd1cc4/pypiserver-1.1.7.zip" } ], "1.1.7-rc.1": [ { "comment_text": "", "digests": { "md5": "6eb663b42d17569a26592832f6a69222", "sha256": "7b2e05e493944379792777aeb7cafd21e08ed14db0183be1671548517c087672" }, "downloads": -1, "filename": "pypiserver-1.1.7_rc.1-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "6eb663b42d17569a26592832f6a69222", "packagetype": "bdist_wheel", "python_version": "3.4", "requires_python": null, "size": 64483, "upload_time": "2015-02-28T00:54:55", "url": "https://files.pythonhosted.org/packages/f1/4c/51d47928ff0559ad658e995613a2da903db6e5d0f0b3c110ca12ebc1246f/pypiserver-1.1.7_rc.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "23035ae15dba71d0b30dbdc982bab7c4", "sha256": "535924dd792a5fb4c662b614217cda60a9e893d85c0ba4dc5783a75fbb47ee5c" }, "downloads": -1, "filename": "pypiserver-1.1.7-rc.1.zip", "has_sig": true, "md5_digest": "23035ae15dba71d0b30dbdc982bab7c4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 85509, "upload_time": "2015-02-28T00:54:25", "url": "https://files.pythonhosted.org/packages/c5/a5/86c6413bef0abe64af5e391af498cdb7e90a506f8af842b78a04e245ec00/pypiserver-1.1.7-rc.1.zip" } ], "1.1.8": [ { "comment_text": "", "digests": { "md5": "8552e15e028ff330ceec4e4f01e253ad", "sha256": "448bf11074d23a1e4e6f012dff3303d7d2db4acd21162138050897c4a77b3265" }, "downloads": -1, "filename": "pypiserver-1.1.8-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "8552e15e028ff330ceec4e4f01e253ad", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 65505, "upload_time": "2015-09-15T19:12:26", "url": "https://files.pythonhosted.org/packages/f8/43/aa76479557aa3cd30c4a9b9a6e4a9c2a3e34025059cfcf92a28f5642e1e2/pypiserver-1.1.8-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "2897a7f23bb8ad397515072c6d4cb46d", "sha256": "a2a8fd436a97094afceaa291a311707d4792babbedcfe33f6687837099ab8e25" }, "downloads": -1, "filename": "pypiserver-1.1.8.zip", "has_sig": true, "md5_digest": "2897a7f23bb8ad397515072c6d4cb46d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 137518, "upload_time": "2015-09-15T19:12:03", "url": "https://files.pythonhosted.org/packages/f9/a0/e8af07b539dda55804f88634716c319910a44748c9f622a7191455ab086e/pypiserver-1.1.8.zip" } ], "1.1.8b0": [ { "comment_text": "", "digests": { "md5": "f9cb2d2ff5d95ee04f083d4a966755c1", "sha256": "ee7d48fe46e0a5c7f2262e65ceafc8ee13274b00e88e3c58cb4dd028c319c336" }, "downloads": -1, "filename": "pypiserver-1.1.8b0-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "f9cb2d2ff5d95ee04f083d4a966755c1", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 65495, "upload_time": "2015-09-11T14:17:08", "url": "https://files.pythonhosted.org/packages/27/61/d44f0ba8b92da143ecc6f1b2ca9f6fbc5644baf73131505631f383441f77/pypiserver-1.1.8b0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "9e7fa892db2fef76af9ddbe33f3f0d11", "sha256": "c7df2850dafa03cfc8039ab3140dd964f6d8f17eaf1d6038fa9c2022bed56ffa" }, "downloads": -1, "filename": "pypiserver-1.1.8b0.zip", "has_sig": true, "md5_digest": "9e7fa892db2fef76af9ddbe33f3f0d11", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 88628, "upload_time": "2015-09-11T14:16:56", "url": "https://files.pythonhosted.org/packages/2c/3f/fd00a601e69986b02d869abfc5406abf4d42f55a82d59075124d3f9fab04/pypiserver-1.1.8b0.zip" } ], "1.1.8b1": [ { "comment_text": "", "digests": { "md5": "78b61450e7a7890efc1acf85db078926", "sha256": "4ac0eb716ee2291a1bc052a07bb5c76e9b62023fb859fb378becc8f3847eb685" }, "downloads": -1, "filename": "pypiserver-1.1.8b1-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "78b61450e7a7890efc1acf85db078926", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 65523, "upload_time": "2015-09-11T15:44:56", "url": "https://files.pythonhosted.org/packages/71/c9/65931a6dd53ba6bae51aaa188268bacf69d257b056d1047cb1f342ee67a3/pypiserver-1.1.8b1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "6a65e305a5d84fc91b61499434315277", "sha256": "d9a01332d7c87877b9a775e123163a338b4c22a403865d08872aca55770ba14f" }, "downloads": -1, "filename": "pypiserver-1.1.8b1.zip", "has_sig": true, "md5_digest": "6a65e305a5d84fc91b61499434315277", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 137949, "upload_time": "2015-09-11T15:44:46", "url": "https://files.pythonhosted.org/packages/73/3c/a18549e51435cb037a82581924cff7e918df93aeae98421de29c385ac96f/pypiserver-1.1.8b1.zip" } ], "1.1.9": [ { "comment_text": "", "digests": { "md5": "6e6dcee67aa944f52e1b172b2b7e4c7f", "sha256": "26c6790ca5d390d74950b3a7f39a2c848501bb9a0f30bdc269dee3428945cafb" }, "downloads": -1, "filename": "pypiserver-1.1.9-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "6e6dcee67aa944f52e1b172b2b7e4c7f", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 72879, "upload_time": "2015-12-21T22:29:22", "url": "https://files.pythonhosted.org/packages/e7/e0/e584152667a7bf9521e0dbad5e5096a9781b0f260a2585b4f25ddf2fb8f2/pypiserver-1.1.9-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "e59f72a1e0ef56c09cec9fe10e6a9e5b", "sha256": "dd6e3ac0b33978eaa2065bb75d9142622f72e2f850d3450b4e8f9c14612a0293" }, "downloads": -1, "filename": "pypiserver-1.1.9.zip", "has_sig": true, "md5_digest": "e59f72a1e0ef56c09cec9fe10e6a9e5b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 95849, "upload_time": "2015-12-21T22:29:44", "url": "https://files.pythonhosted.org/packages/55/3e/114d31199a10671b8f0c9b4eb7dc89f9e1bbb04a34b22916c4181805d574/pypiserver-1.1.9.zip" } ], "1.1.9.dev0": [ { "comment_text": "", "digests": { "md5": "59e26f0af0fdaea5dfb4cd85d4c470dc", "sha256": "87839da6a1c1bf5d92bdd8a8d0c9a69fc3597f6913ad1da8f50381b5b6463e16" }, "downloads": -1, "filename": "pypiserver-1.1.9.dev0-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "59e26f0af0fdaea5dfb4cd85d4c470dc", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 65525, "upload_time": "2015-09-16T23:56:33", "url": "https://files.pythonhosted.org/packages/0e/4b/bb1e64b21e00062262d78c2c16dc41803d4b2a19a4b357ab054a38fb7094/pypiserver-1.1.9.dev0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "658ac76c4f051649cc75ed57d13e72ec", "sha256": "f0b4ed3d6071c996327d8796a5ac066e6431771ab68b951137c48d5022c26d61" }, "downloads": -1, "filename": "pypiserver-1.1.9.dev0.zip", "has_sig": true, "md5_digest": "658ac76c4f051649cc75ed57d13e72ec", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 87287, "upload_time": "2015-09-16T23:56:18", "url": "https://files.pythonhosted.org/packages/ea/5b/485a42f72ae045c66b78301eb15290cd593dd65fe60fce6424862b80225c/pypiserver-1.1.9.dev0.zip" } ], "1.1.9.dev1": [], "1.1.9.dev2": [ { "comment_text": "", "digests": { "md5": "259c22ed03743e654f778ba10b5c7514", "sha256": "9e44dc441c610893b33d2cbccd3780ccec9443b33e738a500007fcfad55786d2" }, "downloads": -1, "filename": "pypiserver-1.1.9.dev2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "259c22ed03743e654f778ba10b5c7514", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 71209, "upload_time": "2015-09-21T02:23:54", "url": "https://files.pythonhosted.org/packages/41/fc/4a5c63334f640d96dac8840b843bf86b3863523a51e137259d672a22b3a8/pypiserver-1.1.9.dev2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "928921ea75e6b2d4028cc82a119708fd", "sha256": "f719ee57055d28daf2a992beffe56455e462ff392bb6f842c4e281acc3b70ec8" }, "downloads": -1, "filename": "pypiserver-1.1.9.dev2.zip", "has_sig": false, "md5_digest": "928921ea75e6b2d4028cc82a119708fd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 101060, "upload_time": "2015-09-21T02:24:31", "url": "https://files.pythonhosted.org/packages/07/f6/a6de1eaaf5c997065b43a3c4481fda2fdf96dd1169ce731fa6c6b74b3467/pypiserver-1.1.9.dev2.zip" } ], "1.2.0": [ { "comment_text": "", "digests": { "md5": "2a097ad71b1959574ae73a974f20ebf0", "sha256": "ad6c5eef042aa975b3ec75cb3b07cc51938c4d258152689f705733dd67cc4062" }, "downloads": -1, "filename": "pypiserver-1.2.0-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "2a097ad71b1959574ae73a974f20ebf0", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 81134, "upload_time": "2016-06-25T02:35:53", "url": "https://files.pythonhosted.org/packages/55/a3/c01a39aafa6d9a94380e5014f66fd5274623a037911abdb65d17e8442e49/pypiserver-1.2.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "64a40d3669f17660da7b6ed797d2e624", "sha256": "4c503017b6e4298d9a7cc4ee9afe8951d326e7bb28b0b1e65235235c87d486d4" }, "downloads": -1, "filename": "pypiserver-1.2.0.zip", "has_sig": true, "md5_digest": "64a40d3669f17660da7b6ed797d2e624", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 110437, "upload_time": "2016-06-25T02:36:07", "url": "https://files.pythonhosted.org/packages/43/a0/24babe6047ffb55e096beb27807059e5653ebd20e9827b3a8ff2c4344177/pypiserver-1.2.0.zip" } ], "1.2.0.dev1": [ { "comment_text": "", "digests": { "md5": "2016e40d024b60b16a82ff2a9eb81d6d", "sha256": "40084bb70d163670256829d75515d6118b0cc9c7213d9d99cc4b37edaa6ac7ac" }, "downloads": -1, "filename": "pypiserver-1.2.0.dev1-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "2016e40d024b60b16a82ff2a9eb81d6d", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 77620, "upload_time": "2016-06-17T21:52:19", "url": "https://files.pythonhosted.org/packages/47/9c/a9ca836492036bff9dbb057ae2b2fe3cd9cf74c557f7813882e4c23eec7f/pypiserver-1.2.0.dev1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "f100a3bdcc697d256de9ad08af852c2b", "sha256": "4a6d9fba74e7e614da8c5bf380346cd6168b5f178efeb6607b8a554fce85ea5c" }, "downloads": -1, "filename": "pypiserver-1.2.0.dev1.zip", "has_sig": true, "md5_digest": "f100a3bdcc697d256de9ad08af852c2b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 104260, "upload_time": "2016-06-17T21:52:38", "url": "https://files.pythonhosted.org/packages/7c/69/740f3dd78740904737a0dd54ac1b0c78fa6720b6ee1f1d2d2547a1fac55d/pypiserver-1.2.0.dev1.zip" } ], "1.2.0b1": [ { "comment_text": "", "digests": { "md5": "a4aefd03596f866d7d985728a8645bbf", "sha256": "8169bde6e45bf7edcdac1d1517ff8328b849aac2e632f427206a816642af56be" }, "downloads": -1, "filename": "pypiserver-1.2.0b1-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "a4aefd03596f866d7d985728a8645bbf", "packagetype": "bdist_wheel", "python_version": "3.5", "requires_python": null, "size": 79641, "upload_time": "2016-06-24T17:36:06", "url": "https://files.pythonhosted.org/packages/9d/3d/f6e6aa7ddd258f07fb8f7ec1f3c9923ad42988d1ea4890571916a6498fdd/pypiserver-1.2.0b1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "479e56744365ae05549987acd22c5e50", "sha256": "bdd9c962361627c081bdf5eed29ad69ca6b4aa6968260752b9371b5c619bb252" }, "downloads": -1, "filename": "pypiserver-1.2.0b1.zip", "has_sig": true, "md5_digest": "479e56744365ae05549987acd22c5e50", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 132379, "upload_time": "2016-06-24T17:35:18", "url": "https://files.pythonhosted.org/packages/a8/28/034be999c59edf1ebd729336ab34876b169520d6723006f46bd41fbb51a3/pypiserver-1.2.0b1.zip" } ], "1.2.1": [ { "comment_text": "", "digests": { "md5": "e01251f2f152daa61acaa0a57a38a830", "sha256": "33150702f61eb70201978b809ebce0b90b54ee6cb936ebb4cf38062c283dc08a" }, "downloads": -1, "filename": "pypiserver-1.2.1-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "e01251f2f152daa61acaa0a57a38a830", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 83529, "upload_time": "2017-11-30T01:12:18", "url": "https://files.pythonhosted.org/packages/d7/78/5772432dad2b9e754ab92f4d301fa507069b9decc8c943c1b18c2043ff4f/pypiserver-1.2.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "6bf1671d82857e89656ce0a0e851acb0", "sha256": "3282fb7aba6fec16f68106426fb696e37f8f83086edaf9ca17c12afc5493c15b" }, "downloads": -1, "filename": "pypiserver-1.2.1.zip", "has_sig": true, "md5_digest": "6bf1671d82857e89656ce0a0e851acb0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 143499, "upload_time": "2017-11-30T01:12:23", "url": "https://files.pythonhosted.org/packages/97/71/a5001b7000e8325b6bb9d0f928f68a953818c601668189867addfcd17cae/pypiserver-1.2.1.zip" } ], "1.2.1.dev0": [ { "comment_text": "", "digests": { "md5": "4921175c17a5b661a5515d1aa7391293", "sha256": "2cf191e4ba9eafe879415ecfcc5a5a053266187b33db71c5462697ea7b04565c" }, "downloads": -1, "filename": "pypiserver-1.2.1.dev0-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "4921175c17a5b661a5515d1aa7391293", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 84120, "upload_time": "2017-11-10T19:09:32", "url": "https://files.pythonhosted.org/packages/51/f7/43b3e204b3b90137480d7efa97c823338627ef69fcc50478ba0e91524a1b/pypiserver-1.2.1.dev0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "4d41b46ab8f52d2116f5297f4fe2b6a1", "sha256": "31da31f8b64503b9fee8b59d5b7761f7c290525a51e5da40c2443da3a7c876d6" }, "downloads": -1, "filename": "pypiserver-1.2.1.dev0.zip", "has_sig": true, "md5_digest": "4d41b46ab8f52d2116f5297f4fe2b6a1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 144466, "upload_time": "2017-11-10T19:09:36", "url": "https://files.pythonhosted.org/packages/2e/ba/4a1f4b7332c42817eef4da2957c3e86711cb085a2f18680490c4fc847c0f/pypiserver-1.2.1.dev0.zip" } ], "1.2.1rc0": [ { "comment_text": "", "digests": { "md5": "65b1ecd768a4d621127d209b260ef07d", "sha256": "808d6b58a64cb19375db52a3f126eff8c55dda0e5b57699ce15436ba72b7dcb0" }, "downloads": -1, "filename": "pypiserver-1.2.1rc0-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "65b1ecd768a4d621127d209b260ef07d", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 83525, "upload_time": "2017-11-14T18:53:38", "url": "https://files.pythonhosted.org/packages/bf/c6/f33a8637e9671f4bb5a7ff7c5dbdfbc7a9dacade49bd150dfc6258f392db/pypiserver-1.2.1rc0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "928b682ab880ccdcd4e49d18bcb09c6e", "sha256": "8e48032da3a39d822bf53dae905c4bef124f471bdbf1b8b0a3297e5869998faf" }, "downloads": -1, "filename": "pypiserver-1.2.1rc0.zip", "has_sig": true, "md5_digest": "928b682ab880ccdcd4e49d18bcb09c6e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 143703, "upload_time": "2017-11-14T18:53:44", "url": "https://files.pythonhosted.org/packages/87/65/cef6360749a20654a70145fbc92f48fe1a5c0873de39d18a21d63822d6dd/pypiserver-1.2.1rc0.zip" } ], "1.2.2": [ { "comment_text": "", "digests": { "md5": "0b36630a405618edff17949874f6bbc3", "sha256": "39d266e9ebc81c08e39d87c1dd3cdd3e0db1d0f2941396a1edbf36ebc4424c1e" }, "downloads": -1, "filename": "pypiserver-1.2.2-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "0b36630a405618edff17949874f6bbc3", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 73139, "upload_time": "2018-06-13T01:17:25", "url": "https://files.pythonhosted.org/packages/69/dc/8795abfa7513e3c9afbece13803c13c81784b5020172d37e3f9a57748ab7/pypiserver-1.2.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "a054e1d1a9dbaa88fa21862bc3070031", "sha256": "1630154e3fcbe211c787f7bef50fc9b07be707a52b4c0a26b9c158a9a605881d" }, "downloads": -1, "filename": "pypiserver-1.2.2.zip", "has_sig": true, "md5_digest": "a054e1d1a9dbaa88fa21862bc3070031", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 145470, "upload_time": "2018-06-13T01:17:28", "url": "https://files.pythonhosted.org/packages/9b/45/b7e52d041366573214427e6207a02460cdd0aeccfd2522a489618b7338c8/pypiserver-1.2.2.zip" } ], "1.2.2.dev0": [ { "comment_text": "", "digests": { "md5": "24e5b9b077be7eea902ae5ff0b8c5bc8", "sha256": "bb47d0723ca1b3a849fadcc18070a8305dff45bf7d827bf6fef0d6a2e37c511e" }, "downloads": -1, "filename": "pypiserver-1.2.2.dev0-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "24e5b9b077be7eea902ae5ff0b8c5bc8", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 73212, "upload_time": "2018-06-12T01:55:52", "url": "https://files.pythonhosted.org/packages/63/13/e98ba7a38564292369eaaf35cda877908d025d75187ee7eb2e9b71a45af1/pypiserver-1.2.2.dev0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "09e1f825d4aaa9902874e06cef13bbd5", "sha256": "4a4f46df3957834a25303598d79c00c14dc7c23d8f4d2c38c16adb7e6ada0a13" }, "downloads": -1, "filename": "pypiserver-1.2.2.dev0.zip", "has_sig": true, "md5_digest": "09e1f825d4aaa9902874e06cef13bbd5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 146027, "upload_time": "2018-06-12T01:55:57", "url": "https://files.pythonhosted.org/packages/23/32/7cc79f5fd1ec6560b9fc4dd0acc13565962446825aa9e7d2db877b25c767/pypiserver-1.2.2.dev0.zip" } ], "1.2.3": [ { "comment_text": "", "digests": { "md5": "c07b210f05d6f93b46f50ab155d15a60", "sha256": "cfe0fe119ecac96203ab821cdfbf8c9ec80b3e1e88a6bd718ae702f37c5631c6" }, "downloads": -1, "filename": "pypiserver-1.2.3-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "c07b210f05d6f93b46f50ab155d15a60", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 72001, "upload_time": "2018-08-04T17:33:48", "url": "https://files.pythonhosted.org/packages/19/4f/5730596c62185e98c14ad98bc536582404b9ae17a019815f6d1d767212f8/pypiserver-1.2.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "0bd62f0f6b36eed4645a413e1ebe5abe", "sha256": "eb431fd226bc97256e4255df0d5940d64623e12c18a0c6283edce3e1546344dc" }, "downloads": -1, "filename": "pypiserver-1.2.3.zip", "has_sig": true, "md5_digest": "0bd62f0f6b36eed4645a413e1ebe5abe", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 146274, "upload_time": "2018-08-04T17:33:53", "url": "https://files.pythonhosted.org/packages/84/15/66eecfb88f8596d9a89208106c4e86cd1abdd3c9354c8b3d7d32ebb16778/pypiserver-1.2.3.zip" } ], "1.2.4": [ { "comment_text": "", "digests": { "md5": "5286a8c03523a4c6c9ac8b901eebca04", "sha256": "1166057df1ec900fce0448c908257b393937edc522236a957ee8d7f5bc822583" }, "downloads": -1, "filename": "pypiserver-1.2.4-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "5286a8c03523a4c6c9ac8b901eebca04", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 72554, "upload_time": "2018-08-06T22:38:18", "url": "https://files.pythonhosted.org/packages/ec/f6/593ff8da4862f73c55027c32ac6f73ea09eabb546e7ebec82f83cc034fcb/pypiserver-1.2.4-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "4aade38271f7340e89b1b62b30fa56e7", "sha256": "312a3e1b6c55affb9cf11a646bcf093c2370c902690f5136bd7625fdb1059179" }, "downloads": -1, "filename": "pypiserver-1.2.4.zip", "has_sig": true, "md5_digest": "4aade38271f7340e89b1b62b30fa56e7", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 147617, "upload_time": "2018-08-06T22:38:21", "url": "https://files.pythonhosted.org/packages/b6/14/b480c443f021ac148db0f642f6596daff7f2597999e2284fcac9946a2739/pypiserver-1.2.4.zip" } ], "1.2.5": [ { "comment_text": "", "digests": { "md5": "697241cc8c8df865e03b29751d616d83", "sha256": "a49aa136d0615ba983cda541bf155e5c55323f1f8d6071178d9c095740e78a8a" }, "downloads": -1, "filename": "pypiserver-1.2.5-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "697241cc8c8df865e03b29751d616d83", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 72540, "upload_time": "2018-11-11T17:54:53", "url": "https://files.pythonhosted.org/packages/86/d0/9af2c014878121bfdb7f2a46c40c4165bf100aa524513e11296551b11d81/pypiserver-1.2.5-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "1a12bdf9744dfbe4421956f8c3cc21f1", "sha256": "7785e6bd2b8593722a6e40b8c25a9f67c2c3502ebbdff399c3d48deb92e0e7fa" }, "downloads": -1, "filename": "pypiserver-1.2.5.zip", "has_sig": true, "md5_digest": "1a12bdf9744dfbe4421956f8c3cc21f1", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 147482, "upload_time": "2018-11-11T17:54:58", "url": "https://files.pythonhosted.org/packages/f8/50/fdb53daad3eeac92f447b74289fad68e625f0b09cfb54ad9b76de823cce2/pypiserver-1.2.5.zip" } ], "1.2.6": [ { "comment_text": "", "digests": { "md5": "f8a1df07fb5927f3b477a99ccce63215", "sha256": "c64d01a5802685cd94fb998ef358f20ecdc5918c1d097b71650818115c6e27dd" }, "downloads": -1, "filename": "pypiserver-1.2.6-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "f8a1df07fb5927f3b477a99ccce63215", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 74515, "upload_time": "2019-01-26T22:18:27", "url": "https://files.pythonhosted.org/packages/96/0b/91cbbf3c9939581bf8d6e5c9ee0781ab5683d7b6acaf90a5bf1b03bced4a/pypiserver-1.2.6-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "3bfce951a46da558e4935229aa940027", "sha256": "47e81db9a3744a05096bde1d86268caf5f796ad0ab81a525d3fac38d7f07064d" }, "downloads": -1, "filename": "pypiserver-1.2.6.zip", "has_sig": true, "md5_digest": "3bfce951a46da558e4935229aa940027", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 148265, "upload_time": "2019-01-26T22:18:30", "url": "https://files.pythonhosted.org/packages/a6/84/5de29479c65875951a6426cec156f589076db08b078e4dd3d24a155f9454/pypiserver-1.2.6.zip" } ], "1.2.7": [ { "comment_text": "", "digests": { "md5": "7abb7cb4fdd0dddf2ffebe2c8460b533", "sha256": "ae790992bfd69daf5f6bb682d9a15470f3ee1e8835ac6de7784c438446edea95" }, "downloads": -1, "filename": "pypiserver-1.2.7-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "7abb7cb4fdd0dddf2ffebe2c8460b533", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 74515, "upload_time": "2019-02-01T01:17:14", "url": "https://files.pythonhosted.org/packages/62/ad/26959e397a2e598b278aec702ba088e2b21b7b183577c4c78b5d5d20b705/pypiserver-1.2.7-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "f4fa07af7cfbf878ad9e568175974e48", "sha256": "647bea706b0148415b500aaffea6ab06dd15fa286e534b3f891b04e7987d031f" }, "downloads": -1, "filename": "pypiserver-1.2.7.zip", "has_sig": true, "md5_digest": "f4fa07af7cfbf878ad9e568175974e48", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 536035, "upload_time": "2019-02-01T01:17:18", "url": "https://files.pythonhosted.org/packages/7e/e7/69c5e5c0cf1eb2b0b73fc813a001bd75bc70d76bb7fd9ab91cb279d0e2fb/pypiserver-1.2.7.zip" } ], "1.3.0": [ { "comment_text": "", "digests": { "md5": "af8ef6523e62f891d8ff84d4ec83e718", "sha256": "07c104ff42a930baa7cd32673e965c67b225b04fa5322a734671a36736996b16" }, "downloads": -1, "filename": "pypiserver-1.3.0-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "af8ef6523e62f891d8ff84d4ec83e718", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 75037, "upload_time": "2019-05-05T22:05:13", "url": "https://files.pythonhosted.org/packages/b6/b6/a051b76b74de9f3d4509d83055a6f505364cef4adc8358d05db7b04da0b7/pypiserver-1.3.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "11753e8ac94a5b2cc80bf09751531980", "sha256": "c0361290ee11eb267475761adc1e663ef0a56739a323cfefdf904e46f693ce0a" }, "downloads": -1, "filename": "pypiserver-1.3.0.zip", "has_sig": true, "md5_digest": "11753e8ac94a5b2cc80bf09751531980", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 538529, "upload_time": "2019-05-05T22:05:16", "url": "https://files.pythonhosted.org/packages/f9/64/0a6d765c6a10ff935b18ce5fa3699be9af3cf28df380ff71d40e8d770df1/pypiserver-1.3.0.zip" } ], "1.3.1": [ { "comment_text": "", "digests": { "md5": "a1d7bb52f918584c70aeab7aa140e9f7", "sha256": "b79d8099e1a26b31d3a106a566ec315296fdd12184efecffb38f7c20594d6b3a" }, "downloads": -1, "filename": "pypiserver-1.3.1-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "a1d7bb52f918584c70aeab7aa140e9f7", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 74979, "upload_time": "2019-09-11T00:56:47", "url": "https://files.pythonhosted.org/packages/6d/66/c587bf07aea6393acae49ad3d8b0fe32a04f388cfc9c495abe88da77bb85/pypiserver-1.3.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "b2854c2d40bf18472d321d2495373d9c", "sha256": "514826a85c3fd62763dbaa32d1cf596d575a8329fb35235ef8085ea5d5dbe97d" }, "downloads": -1, "filename": "pypiserver-1.3.1.zip", "has_sig": true, "md5_digest": "b2854c2d40bf18472d321d2495373d9c", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 538986, "upload_time": "2019-09-11T00:56:50", "url": "https://files.pythonhosted.org/packages/77/72/87adc0c62a5848bf239d9af61e9190b9cc91a7d2f05506c5a6b00a33f2db/pypiserver-1.3.1.zip" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "a1d7bb52f918584c70aeab7aa140e9f7", "sha256": "b79d8099e1a26b31d3a106a566ec315296fdd12184efecffb38f7c20594d6b3a" }, "downloads": -1, "filename": "pypiserver-1.3.1-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "a1d7bb52f918584c70aeab7aa140e9f7", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 74979, "upload_time": "2019-09-11T00:56:47", "url": "https://files.pythonhosted.org/packages/6d/66/c587bf07aea6393acae49ad3d8b0fe32a04f388cfc9c495abe88da77bb85/pypiserver-1.3.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "b2854c2d40bf18472d321d2495373d9c", "sha256": "514826a85c3fd62763dbaa32d1cf596d575a8329fb35235ef8085ea5d5dbe97d" }, "downloads": -1, "filename": "pypiserver-1.3.1.zip", "has_sig": true, "md5_digest": "b2854c2d40bf18472d321d2495373d9c", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 538986, "upload_time": "2019-09-11T00:56:50", "url": "https://files.pythonhosted.org/packages/77/72/87adc0c62a5848bf239d9af61e9190b9cc91a7d2f05506c5a6b00a33f2db/pypiserver-1.3.1.zip" } ] }