{"id":16942292,"url":"https://github.com/steiza/simplepypi","last_synced_at":"2025-05-06T20:00:27.285Z","repository":{"id":55601303,"uuid":"1874042","full_name":"steiza/simplepypi","owner":"steiza","description":"A really, really, simple HTTP PyPI-like server","archived":false,"fork":false,"pushed_at":"2024-09-11T14:36:44.000Z","size":18,"stargazers_count":63,"open_issues_count":1,"forks_count":14,"subscribers_count":4,"default_branch":"main","last_synced_at":"2025-05-03T01:40:28.241Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/steiza.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2011-06-10T02:24:10.000Z","updated_at":"2025-03-30T23:56:15.000Z","dependencies_parsed_at":"2025-03-20T17:15:19.814Z","dependency_job_id":null,"html_url":"https://github.com/steiza/simplepypi","commit_stats":{"total_commits":24,"total_committers":8,"mean_commits":3.0,"dds":0.375,"last_synced_commit":"eb07f2c90872ef007910df60605e772026b7f192"},"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/steiza%2Fsimplepypi","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/steiza%2Fsimplepypi/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/steiza%2Fsimplepypi/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/steiza%2Fsimplepypi/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/steiza","download_url":"https://codeload.github.com/steiza/simplepypi/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":252761120,"owners_count":21800123,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-10-13T21:11:31.439Z","updated_at":"2025-05-06T20:00:26.852Z","avatar_url":"https://github.com/steiza.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"#### This is a really, really, simple HTTP PyPI-like server.\n\nIt is intended to be used for companies or organizations that need a private\nPyPi.\n\nIt literally supports four functions:\n\n    - Allows uploading of packages\n    - Downloading by package (or package and version)\n    - A / page that is navigatable with a web browser\n    - /pypi/ listing\n\nIt does not support:\n\n    - Stopping you from overwriting a package with the same name / version\n    - Registering packages\n    - Any sort of ACLs\n\nTo use it run \"simplepypi\". You can upload packages by:\n\n#### Install twine if you haven't already:\n\n    pip install twine\n\n#### Build your package if you haven't already:\n\n    python setup.py sdist\n\n#### Upload your package using twine:\n\n    $ twine upload --repository-url http://127.0.0.1:8000/ dist/*\n    Uploading distributions to http://127.0.0.1:8000/\n    Enter your username: \u003cwhatever\u003e\n    Enter your password: \u003cdoesn't matter, see above\u003e\n\n#### Then, when you want to install packages from it you do:\n\n    pip install -i http://127.0.0.1:8000/pypi \u003cyour favorite package\u003e\n    \n#### Or, if you're stuck in the stone ages with `setuptools`/`easy_install`:\n\n    from setuptools import setup\n\n    setup(\n        ...\n        install_requires=['\u003cpackage\u003e'],\n        dependency_links=['http://127.0.0.1:8000/packages/\u003cpackage\u003e'],\n    )\n    \n    python setup.py install\n\n#### To use the docker image, build and run:\n\n    docker build -t simplepypi .\n    docker run -it -p 8000:8000 simplepypi\n\nNot using twine yet? Here is the legacy way of uploading Python packages (not\nrecommended):\n\n#### Modify your ~/.pypirc so it looks like:\n\n    [distutils]\n    index-servers =\n        pypi\n        local\n\n    [local]\n    username: \u003cwhatever\u003e\n    password: \u003cdoesn't matter, see above\u003e\n    repository: http://127.0.0.1:8000\n\n    [pypi]\n    ...\n\n#### Run this on the setup.py of your favorite package:\n\n    $ python setup.py sdist upload -r local\n\nAnd that's it!\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsteiza%2Fsimplepypi","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsteiza%2Fsimplepypi","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsteiza%2Fsimplepypi/lists"}