Package Search Help

You can use boolean logic (e.g. AND/OR/NOT) for complex search queries. For more help and examples, see the search documentation.

Search by package name:
my-package (implicit)
name:my-package (explicit)

Search by package filename:
my-package.ext (implicit)
filename:my-package.ext (explicit)

Search by package tag:
latest (implicit)
tag:latest (explicit)

Search by package version:
1.0.0 (implicit)
version:1.0.0 (explicit)
prerelease:true (prereleases)
prerelease:false (no prereleases)

Search by package architecture:
architecture:x86_64 

Search by package distribution:
distribution:el 

Search by package license:
license:MIT 

Search by package format:
format:deb 

Search by package status:
status:in_progress 

Search by package file checksum:
checksum:5afba 

Search by package security status:
severity:critical 

Search by package vulnerabilities:
vulnerabilities:>1 
vulnerabilities:<1000 

Search by # of package downloads:
downloads:>8 
downloads:<100 

Search by package type:
type:binary 
type:source 

Search by package size (bytes):
size:>50000 
size:<10000 

Search by dependency name/version:
dependency:log4j 
dependency:log4j=1.0.0 
dependency:log4j>1.0.0 

Search by uploaded date:
uploaded:>"1 day ago" 
uploaded:<"August 14, 2022 EST" 

Search by entitlement token (identifier):
entitlement:3lKPVJPosCsY 

Search by policy violation:
policy_violated:true
deny_policy_violated:true
license_policy_violated:true
vulnerability_policy_violated:true

Search by repository:
repository:repo-name

Search queries for all Debian-specific (and related) package types

Search by component:
deb_component:unstable

Search queries for all Maven-specific (and related) package types

Search by group ID:
maven_group_id:org.apache

Search queries for all Docker-specific (and related) package types

Search by image digest:
docker_image_digest:sha256:7c5..6d4
(full hashref only)

Search by layer digest:
docker_layer_digest:sha256:4c4..ae4
(full hashref only)

Field type modifiers (depending on the type, you can influence behaviour)

For all queries, you can use:
~foo for negation

For string queries, you can use:
^foo to anchor to start of term
foo$ to anchor to end of term
foo*bar for fuzzy matching

For number/date or version queries, you can use:
>foo for values greater than
>=foo for values greater / equal
<foo for values less than
<=foo for values less / equal

Need a secure and centralised artifact repository to deliver Alpine, Cargo, CocoaPods, Composer, Conan, Conda, CRAN, Dart, Debian, Docker, Go, Helm, Hex, LuaRocks, Maven, npm, NuGet, P2, Python, RedHat, Ruby, Swift, Terraform, Vagrant, Raw & More packages?

Cloudsmith is the new standard in Package / Artifact Management and Software Distribution.

With support for all major package formats, you can trust us to manage your software supply chain.

Start My Free Trial
 Public agriconnect agriconnect (AgriConnect) / python-musl
Python-Musl: Containing wheel packages built with musl (like Alpine OS)

Python logo dulwich  0.19.11

One-liner (summary)

Python Git Library

Description

Build Status Windows Build Status

This is the Dulwich project.

It aims to provide an interface to git repos (both local and remote) that doesn't call out to git directly but instead uses pure Python.

Main website: <https://www.dulwich.io/>

License: Apache License, version 2 or GNU General Public License, version 2 or later.

The project is named after the part of London that Mr. and Mrs. Git live in in the particular Monty Python sketch.

Installation

By default, Dulwich' setup.py will attempt to build and install the optional C extensions. The reason for this is that they significantly improve the performance since some low-level operations that are executed often are much slower in CPython.

If you don't want to install the C bindings, specify the --pure argument to setup.py:

$ python setup.py --pure install

or if you are installing from pip:

$ pip install dulwich --global-option="--pure"

Note that you can also specify --global-option in a requirements.txt file, e.g. like this:

dulwich --global-option=--pure

Getting started

Dulwich comes with both a lower-level API and higher-level plumbing ("porcelain").

For example, to use the lower level API to access the commit message of the last commit:

>>> from dulwich.repo import Repo
>>> r = Repo('.')
>>> r.head()
'57fbe010446356833a6ad1600059d80b1e731e15'
>>> c = r[r.head()]
>>> c
<Commit 015fc1267258458901a94d228e39f0a378370466>
>>> c.message
'Add note about encoding.\n'

And to print it using porcelain:

>>> from dulwich import porcelain
>>> porcelain.log('.', max_entries=1)
--------------------------------------------------
commit: 57fbe010446356833a6ad1600059d80b1e731e15
Author: Jelmer Vernooij <jelmer@jelmer.uk>
Date:   Sat Apr 29 2017 23:57:34 +0000

Add note about encoding.

Further documentation

The dulwich documentation can be found in docs/ and on the web.

The API reference can be generated using pydoctor, by running "make pydoctor", or on the web.

Help

There is a #dulwich IRC channel on the Freenode, and dulwich-announce and dulwich-discuss mailing lists.

Contributing

For a full list of contributors, see the git logs or AUTHORS.

If you'd like to contribute to Dulwich, see the CONTRIBUTING file and list of open issues.

Supported versions of Python

At the moment, Dulwich supports (and is tested on) CPython 2.7, 3.4, 3.5, 3.6 and Pypy.

Size

458.2 KB

Downloads

96

Tags

bdist/wheel whl linux_x86_64 cp36 cp36m latest

Status  Completed
Checksum (MD5) e1390f248052f7979d27bcea249d940a
Checksum (SHA-1) 76533990869af36959afc2dcc34b18f8a935bb05
Checksum (SHA-256) 008b93d1d01541ce838c98dc7e7faf0d909e0dbe7de4e6e14865e9c6988e64b3
Checksum (SHA-512) 271d0625bc06ebeaf5561de2473f5af9f74a5ea0cbfd3b5729bb1d7a4ba81e967e…
GPG Signature
Storage Region  Dublin, Ireland
Type  Binary (contains binaries and binary artifacts)
Uploaded At 5 years, 1 month ago
Uploaded By quan
Slug Id dulwich-01911-cp36-cp36m-linux_x86_64whl
Unique Id jxieTL8CsrRv
Version (Raw) 0.19.11
Version (Parsed)
  • Major: 0
  • Minor: 19
  • Patch: 11
  • Type: SemVer (Strict)
  extended metadata
Abi cp36m
Author Jelmer Vernooij <jelmer@jelmer.uk>
Classifiers Development Status :: 4 - Beta | License :: OSI Approved :: Apache Software License | Operating System :: Microsoft :: Windows | Operating System :: POSIX | Programming Language :: Python :: 2.7 | 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 :: Version Control
Homepage URL https://www.dulwich.io/
Keywords git vcs
Metadata Version 2.1
Project Urls Bug Tracker, https://github.com/dulwich/dulwich/issues | GitHub, https://github.com/dulwich/dulwich | Repository, https://www.dulwich.io/code/
Py Filetype bdist_wheel
Py Version cp36
pkg dulwich-0.19.11-cp36-cp36m-linu… 96
458.2 KB
md5 sha1 sha256 sha512
Package Contents (dulwich-0.19.11-cp36-cp36m-linux_x86_64.whl)
Loading...

This package has 278 files/directories.

Security Scanning:
You can't see this because your subscription doesn't include this feature, sorry!

With Security Scanning, Cloudsmith will scan your artifacts for vulnerabilities when they're uploaded. These are then presented to you via the UI and the API, so that you can build rules into your CI/CD pipelines to decide how to handle low, medium, high and critical software vulnerabilities.

If you'd like to trial or ask about the Security Scanning feature, just ask us. We'll be happy to help!

Last scanned

1 day ago

Scan result

Vulnerable

Vulnerability count

1

Max. severity

Critical
Target:
MEDIUM

CVE-5862-73056: library: vulnerability title



Package Name: package_name
Installed Version: 1.5.35
Fixed Version: 2.1.16

References: waters.com www.norton-thomas.com www.lamb.com

You can embed a badge in another website that shows this or the latest version of this package.

To embed the badge for this specific package version, use the following:

[![This version of 'dulwich' @ Cloudsmith](https://api-prd.cloudsmith.io/v1/badges/version/agriconnect/python-musl/python/dulwich/0.19.11/a=linux_x86_64;xa=cp36m;xf=bdist_wheel;xn=dulwich;xv=cp36/?render=true)](https://cloudsmith.io/~agriconnect/repos/python-musl/packages/detail/python/dulwich/0.19.11/a=linux_x86_64;xa=cp36m;xf=bdist_wheel;xn=dulwich;xv=cp36/)
|This version of 'dulwich' @ Cloudsmith|
.. |This version of 'dulwich' @ Cloudsmith| image:: https://api-prd.cloudsmith.io/v1/badges/version/agriconnect/python-musl/python/dulwich/0.19.11/a=linux_x86_64;xa=cp36m;xf=bdist_wheel;xn=dulwich;xv=cp36/?render=true
   :target: https://cloudsmith.io/~agriconnect/repos/python-musl/packages/detail/python/dulwich/0.19.11/a=linux_x86_64;xa=cp36m;xf=bdist_wheel;xn=dulwich;xv=cp36/
image::https://api-prd.cloudsmith.io/v1/badges/version/agriconnect/python-musl/python/dulwich/0.19.11/a=linux_x86_64;xa=cp36m;xf=bdist_wheel;xn=dulwich;xv=cp36/?render=true[link="https://cloudsmith.io/~agriconnect/repos/python-musl/packages/detail/python/dulwich/0.19.11/a=linux_x86_64;xa=cp36m;xf=bdist_wheel;xn=dulwich;xv=cp36/",title="This version of 'dulwich' @ Cloudsmith"]
<a href="https://cloudsmith.io/~agriconnect/repos/python-musl/packages/detail/python/dulwich/0.19.11/a=linux_x86_64;xa=cp36m;xf=bdist_wheel;xn=dulwich;xv=cp36/"><img src="https://api-prd.cloudsmith.io/v1/badges/version/agriconnect/python-musl/python/dulwich/0.19.11/a=linux_x86_64;xa=cp36m;xf=bdist_wheel;xn=dulwich;xv=cp36/?render=true" alt="This version of 'dulwich' @ Cloudsmith" /></a>

rendered as: This version of 'dulwich' @ Cloudsmith

To embed the badge for the latest package version, use the following:

[![Latest version of 'dulwich' @ Cloudsmith](https://api-prd.cloudsmith.io/v1/badges/version/agriconnect/python-musl/python/dulwich/latest/a=linux_x86_64;xa=cp36m;xf=bdist_wheel;xn=dulwich;xv=cp36/?render=true&show_latest=true)](https://cloudsmith.io/~agriconnect/repos/python-musl/packages/detail/python/dulwich/latest/a=linux_x86_64;xa=cp36m;xf=bdist_wheel;xn=dulwich;xv=cp36/)
|Latest version of 'dulwich' @ Cloudsmith|
.. |Latest version of 'dulwich' @ Cloudsmith| image:: https://api-prd.cloudsmith.io/v1/badges/version/agriconnect/python-musl/python/dulwich/latest/a=linux_x86_64;xa=cp36m;xf=bdist_wheel;xn=dulwich;xv=cp36/?render=true&show_latest=true
   :target: https://cloudsmith.io/~agriconnect/repos/python-musl/packages/detail/python/dulwich/latest/a=linux_x86_64;xa=cp36m;xf=bdist_wheel;xn=dulwich;xv=cp36/
image::https://api-prd.cloudsmith.io/v1/badges/version/agriconnect/python-musl/python/dulwich/latest/a=linux_x86_64;xa=cp36m;xf=bdist_wheel;xn=dulwich;xv=cp36/?render=true&show_latest=true[link="https://cloudsmith.io/~agriconnect/repos/python-musl/packages/detail/python/dulwich/latest/a=linux_x86_64;xa=cp36m;xf=bdist_wheel;xn=dulwich;xv=cp36/",title="Latest version of 'dulwich' @ Cloudsmith"]
<a href="https://cloudsmith.io/~agriconnect/repos/python-musl/packages/detail/python/dulwich/latest/a=linux_x86_64;xa=cp36m;xf=bdist_wheel;xn=dulwich;xv=cp36/"><img src="https://api-prd.cloudsmith.io/v1/badges/version/agriconnect/python-musl/python/dulwich/latest/a=linux_x86_64;xa=cp36m;xf=bdist_wheel;xn=dulwich;xv=cp36/?render=true&show_latest=true" alt="Latest version of 'dulwich' @ Cloudsmith" /></a>

rendered as: Latest version of 'dulwich' @ Cloudsmith

These instructions assume you have setup the repository first (or read it).

To install/use dulwich @ version 0.19.11 ...

pip install 'dulwich==0.19.11'

You can also install the latest version of this package:

pip install --upgrade 'dulwich'

If necessary, you can specify the repository directly:

pip install \
  --index-url=https://dl.cloudsmith.io/public/agriconnect/python-musl/python/simple/ \
  dulwich==0.19.11

If you've got a project requirements.txt file, you can specify this as a dependency:

--index-url=https://dl.cloudsmith.io/public/agriconnect/python-musl/python/simple/
dulwich==0.19.11

In addition, you can use this repository as an extra index url. However, please read our documentation on this parameter before using it. For example in a requirements.txt file:

--extra-index-url=https://dl.cloudsmith.io/public/agriconnect/python-musl/python/simple/
dulwich==0.19.11
Warning: We highly recommend using pip (or similar) rather than installing directly.
Previous Version
Next Version
Top