All Projects → alpine-wheels → index

alpine-wheels / index

Licence: other
A PEP 503-compliant Python package index specifically providing wheels built for Alpine Linux

Programming Languages

HTML
75241 projects
python
139335 projects - #7 most used programming language
Dockerfile
14818 projects

Projects that are alternatives of or similar to index

requirementslib
A tool for converting between pip-style and pipfile requirements - maintained by the pipenv team
Stars: ✭ 74 (+184.62%)
Mutual labels:  pip, pipenv
serverless-python-requirements
⚡️🐍📦 Serverless plugin to bundle Python packages
Stars: ✭ 971 (+3634.62%)
Mutual labels:  pip, pipenv
passa
Resolver implementation and toolset for generating and interacting with Pipfile and Pipfile.lock.
Stars: ✭ 54 (+107.69%)
Mutual labels:  pip, pipenv
rfc-bibtex
A command line tool that creates bibtex entries for IETF RFCs and Internet Drafts.
Stars: ✭ 43 (+65.38%)
Mutual labels:  pip, pipenv
Coronavirus Tracker Api
🦠 A simple and fast (< 200ms) API for tracking the global coronavirus (COVID-19, SARS-CoV-2) outbreak. It's written in python using the 🔥 FastAPI framework. Supports multiple sources!
Stars: ✭ 1,577 (+5965.38%)
Mutual labels:  pip, pipenv
Dephell
📦 🔥 Python project management. Manage packages: convert between formats, lock, install, resolve, isolate, test, build graph, show outdated, audit. Manage venvs, build package, bump version.
Stars: ✭ 1,730 (+6553.85%)
Mutual labels:  pip, pipenv
resolvelib
Resolve abstract dependencies into concrete ones
Stars: ✭ 92 (+253.85%)
Mutual labels:  pip, pipenv
docker-dind-awscli
A Docker image for Docker-in-Docker (dind) with AWS CLI v2 awscli tool included
Stars: ✭ 36 (+38.46%)
Mutual labels:  alpine-linux
docker-alpine-nginx-pagespeed
Dockerized Nginx with PageSpeed Module on Alpine Linux
Stars: ✭ 28 (+7.69%)
Mutual labels:  alpine-linux
pipyuan
pipyuan 内置了国内常用的 pip 源, 你可以快速设置想要的源
Stars: ✭ 30 (+15.38%)
Mutual labels:  pip
My.Jdownloader-API-Python-Library
My.Jdownloader API Python Library
Stars: ✭ 65 (+150%)
Mutual labels:  pip
pipm
Python dependency management workflow using setup.cfg and requirements files without reinventing the wheels
Stars: ✭ 30 (+15.38%)
Mutual labels:  pip
p4python
[Officially Supported] P4Python is a wrapper for the P4 C++ API in Python.
Stars: ✭ 30 (+15.38%)
Mutual labels:  pip
headless-chrome-alpine
A Docker container running headless Chrome
Stars: ✭ 26 (+0%)
Mutual labels:  alpine-linux
pypackage
Cookiecutter python package using Poetry, mypy, black, isort, autoflake, pytest, mkdocs, and GitHub Actions
Stars: ✭ 12 (-53.85%)
Mutual labels:  pipenv
Python-Course
🐍 This is the most complete course in Python, completely practical and all the lessons are explained with examples, so that they can be easily understood. 🍫
Stars: ✭ 18 (-30.77%)
Mutual labels:  pip
docker-healthchecks
Healthchecks Docker image
Stars: ✭ 17 (-34.62%)
Mutual labels:  alpine-linux
lnmp-docker
Docker for LNMP ( Alpine Linux + PHP7 + Nginx+ Supervisor + Crontab ) 开发环境镜像
Stars: ✭ 23 (-11.54%)
Mutual labels:  alpine-linux
django-kcproject-starter
Kickstart Coding's Django Project Starter Template
Stars: ✭ 14 (-46.15%)
Mutual labels:  pipenv
meta-package-manager
🎁 a wrapper around all package managers
Stars: ✭ 277 (+965.38%)
Mutual labels:  pip

alpine-wheels/index

This is a PEP 503-compliant Python package index specifically providing wheels built for Alpine Linux.

If you want to use python:alpine Docker containers but you donʼt want to build Python packages yourself, you may find this index useful.

Usage examples

Pip

$ pip install --extra-index-url https://alpine-wheels.github.io/index pandas

Pip with a requirements file

# contents of requirements.txt

--extra-index-url https://alpine-wheels.github.io/index

pandas
$ pip install -r requirements.txt

pip-tools

# add this to the top of requirements.in

--extra-index-url https://alpine-wheels.github.io/index
$ pip-compile

Poetry

# add this section to pyproject.toml

[[tool.poetry.source]]
name = "alpine-wheels"
url = "https://alpine-wheels.github.io/index"
$ poetry add pandas

Pipenv

# add this section to Pipfile

[[source]]
name = "alpine-wheels"
url = "https://alpine-wheels.github.io/index"
verify_ssl = true
$ pipenv install pandas

Contributing

Is there a package you need that is missing from the index? Open an issue to suggest it. We only support packages that are available on PyPI but do not already have a wheel that is compatible with Alpine Linux.

To add a new package, do not fork this repository directly; make a new repository for the individual package using https://github.com/alpine-wheels/_template.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].