Skip to content

whl2conda.api.stdrename

Support for standard pypi to conda renames drawn from conda-forge.

There are files generated automatically by conda-forge bots that include information about pypi/conda package names. These are available from:

https://github.com/regro/cf-graph-countyfair/blob/master/mappings/pypi

This package provides utility functions for downlaading mappings from that site and extracting a standard pypi to conda name mapping dictionary.

NOTE: this module should not be considered stable! The API may change incompatibly in a future release.

Attributes

DEFAULT_MIN_EXPIRATION module-attribute

DEFAULT_MIN_EXPIRATION = 300

Default minimum expiration in seconds for cached renames

NAME_MAPPINGS_DOWNLOAD_URL module-attribute

NAME_MAPPINGS_DOWNLOAD_URL = (
    f"{RAW_MAPPINGS_URL}/{NAME_MAPPINGS_FILENAME}"
)

URL from which automatically generated pypi to conda name mappings are downloaded.

Classes

DownloadedMappings

Bases: NamedTuple

Holds downloaded mapping table from github with HTTP headers.

Source code in src/whl2conda/api/stdrename.py
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
class DownloadedMappings(NamedTuple):
    """
    Holds downloaded mapping table from github with HTTP headers.
    """

    url: str
    headers: email.message.EmailMessage
    mappings: Sequence[NameMapping]

    @property
    def date(self) -> Optional[datetime.datetime]:
        """Date from header"""
        return parse_datetime(self.datestr)

    @property
    def datestr(self) -> str:
        """Date string from header"""
        return self.headers.get("Date", "")

    @property
    def etag(self) -> str:
        """ETag string from header"""
        return self.headers.get("ETag", "").strip('"')

    @property
    def expires(self) -> Optional[datetime.datetime]:
        """Expires date string frome header"""
        return parse_datetime(self.headers.get("Expires", ""))

    @property
    def max_age(self) -> int:
        """Max age from Cache-Control header

        Max age in seconds from cache control header, or
        else difference between [expires][..] and [date][..] or else -1.
        """
        if cc := self.headers.get("Cache-Control", ""):
            if m := re.search(r"max-age=(\d+)", cc):
                return int(m.group(1))
        if expires := self.expires:
            date = self.date or datetime.datetime.now(datetime.timezone.utc)
            return (expires - date).seconds
        return -1

Attributes

date property
date: Optional[datetime.datetime]

Date from header

datestr property
datestr: str

Date string from header

etag property
etag: str

ETag string from header

expires property
expires: Optional[datetime.datetime]

Expires date string frome header

max_age property
max_age: int

Max age from Cache-Control header

Max age in seconds from cache control header, or else difference between expires and date or else -1.

NameMapping

Bases: TypedDict

Expected format of github name_mapping.json table

Source code in src/whl2conda/api/stdrename.py
147
148
149
150
151
152
class NameMapping(TypedDict):
    """Expected format of github name_mapping.json table"""

    pypi_name: str
    conda_name: str
    import_name: str

NotModified

Bases: HTTPError

Indicates content was not modified

Source code in src/whl2conda/api/stdrename.py
287
288
class NotModified(HTTPError):  # pylint: disable=too-many-ancestors
    """Indicates content was not modified"""

Functions

download_mappings

download_mappings(
    url: str = NAME_MAPPINGS_DOWNLOAD_URL,
    *,
    etag: str = "",
    timeout: float = 20.0
) -> DownloadedMappings

Download pypi to conda name mappings from github

PARAMETER DESCRIPTION
url

download url of mappings file on github

TYPE: str DEFAULT: NAME_MAPPINGS_DOWNLOAD_URL

etag

ETag from previous download

TYPE: str DEFAULT: ''

timeout

max seconds to wait for connection

TYPE: float DEFAULT: 20.0

RETURNS DESCRIPTION
DownloadedMappings

Mapping table and HTTP headers.

RAISES DESCRIPTION
NotModified

if etag was specified and content has not changed

HttpError

other HTTP errors (e.g. 404 etc)

URLError

connection errors

Source code in src/whl2conda/api/stdrename.py
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
def download_mappings(
    url: str = NAME_MAPPINGS_DOWNLOAD_URL,
    *,
    etag: str = "",
    timeout: float = 20.0,
) -> DownloadedMappings:
    """
    Download pypi to conda name mappings from github

    Args:
        url: download url of mappings file on github
        etag: ETag from previous download
        timeout: max seconds to wait for connection

    Returns:
        Mapping table and HTTP headers.

    Raises:
        NotModified: if etag was specified and content has not changed
        HttpError: other HTTP errors (e.g. 404 etc)
        URLError: connection errors
    """

    req = urllib.request.Request(
        url,
        headers={"User-Agent": f"whl2conda/{__version__}"},
    )
    if etag:
        req.add_header("If-None-Match", f'"{etag}"')

    try:
        with urllib.request.urlopen(req, timeout=timeout) as response:
            headers = response.headers
            content = response.read()
            mappings = json.loads(content)
    except HTTPError as err:
        if err.status == HTTPStatus.NOT_MODIFIED:  # type: ignore
            raise NotModified(
                url,
                err.code,
                err.reason,
                err.headers,
                err.fp,
            ) from err
        raise

    return DownloadedMappings(url, headers, mappings)

load_std_renames

load_std_renames(*, update: bool = False) -> dict[str, str]

Load standard pypi to conda package rename table.

A copy of this table is kept in a local a cache file (see user_stdrenames_path) The table will be read from that file, it it exists, otherwise the table included in this package will be copied to the user cache file.

PARAMETER DESCRIPTION
update

if true, this will update the table from online list generated from conda-forge and saves it as the new cached copy.

TYPE: bool DEFAULT: False

RETURNS DESCRIPTION
dict[str, str]

Dictionary of pypi to conda package name mappings. The

dict[str, str]

returned dictionary will also contain the entries "$etag",

dict[str, str]

"$date" and "$source" taken from the downloaded web file

dict[str, str]

from which it was computed.

Source code in src/whl2conda/api/stdrename.py
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
def load_std_renames(
    *,
    update: bool = False,
) -> dict[str, str]:
    """
    Load standard pypi to conda package rename table.

    A copy of this table is kept in a local a cache
    file (see [user_stdrenames_path][(m).])
    The table will be read from that file, it it exists, otherwise the
    table included in this package will be copied to the
    user cache file.

    Arguments:
        update: if true, this will update the table from online
            list generated from conda-forge and saves it as the
            new cached copy.

    Returns:
        Dictionary of pypi to conda package name mappings. The
        returned dictionary will also contain the entries "$etag",
        "$date" and "$source" taken from the downloaded web file
        from which it was computed.
    """
    # Look for local copy of stdrenames
    local_std_rename_file = user_stdrenames_path()
    if not local_std_rename_file.exists():
        # pylint: disable=no-member
        if sys.version_info >= (3, 9):  # pragma: no cover
            resources = importlib.resources.files('whl2conda.api')
            s = resources.joinpath("stdrename.json").read_text("utf8")
        else:  # pragma: no cover
            s = importlib.resources.read_text(
                "whl2conda.api",
                "stdrename.json",
                encoding="utf",
            )
        local_std_rename_file.parent.mkdir(parents=True, exist_ok=True)
        local_std_rename_file.write_text(s, "utf8")

    if update:
        update_renames_file(local_std_rename_file)

    s = local_std_rename_file.read_text("utf8")
    return json.loads(s)

parse_datetime

parse_datetime(s: str) -> Optional[datetime.datetime]

Parse datetime string from HTTP header

Returns None if string is empty or time is malformed.

Source code in src/whl2conda/api/stdrename.py
77
78
79
80
81
82
83
84
85
def parse_datetime(s: str) -> Optional[datetime.datetime]:
    """Parse datetime string from HTTP header

    Returns None if string is empty or time is malformed.
    """
    try:
        return parsedate_to_datetime(s)
    except Exception:  # pylint: disable=broad-exception-caught
        return None

process_name_mapping_dict

process_name_mapping_dict(
    mappings: DownloadedMappings,
) -> dict[str, str]

Convert name mapping table from github to simple rename table.

This only returns mappings where the name is different.

PARAMETER DESCRIPTION
mappings

downlaoded mappings

TYPE: DownloadedMappings

RETURNS DESCRIPTION
dict[str, str]

dictionary mapping pypi to conda package names

Source code in src/whl2conda/api/stdrename.py
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
def process_name_mapping_dict(mappings: DownloadedMappings) -> dict[str, str]:
    """
    Convert name mapping table from github to simple rename table.

    This only returns mappings where the name is different.

    Args:
        mappings: downlaoded mappings

    Returns:
        dictionary mapping pypi to conda package names
    """
    renames: dict[str, str] = {
        "$source": mappings.url,
        "$date": mappings.datestr or formatdate(usegmt=True),
        "$etag": mappings.etag,
        "$max-age": str(max(mappings.max_age, DEFAULT_MIN_EXPIRATION)),
    }
    for entry in mappings.mappings:
        pypi_name = entry.get("pypi_name")
        conda_name = entry.get("conda_name")
        if pypi_name and conda_name and pypi_name != conda_name:
            renames[pypi_name] = conda_name
    return renames

update_renames_file

update_renames_file(
    renames_file: Union[Path, str],
    *,
    url: str = NAME_MAPPINGS_DOWNLOAD_URL,
    min_expiration: int = DEFAULT_MIN_EXPIRATION,
    dry_run: bool = False
) -> bool

Update standard renames file from github if changed

This will only download new data if the existing data has passed its expiration.

PARAMETER DESCRIPTION
renames_file

path to renames file, which does not have to exist initially

TYPE: Union[Path, str]

url

url of name mapping file to download. This file is expected to contain a JSON array of dictionary containing "pypi_name" and "conda_name" entries.

TYPE: str DEFAULT: NAME_MAPPINGS_DOWNLOAD_URL

min_expiration

minimum seconds before existing data expires. Default is 5 minutes.

TYPE: int DEFAULT: DEFAULT_MIN_EXPIRATION

dry_run

does not update the file, but still does download and returns True if file would change

TYPE: bool DEFAULT: False

RETURNS DESCRIPTION
bool

True if file was updated. False if file has not expired yet

bool

or upstream data has not changed.

Source code in src/whl2conda/api/stdrename.py
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
def update_renames_file(
    renames_file: Union[Path, str],
    *,
    url: str = NAME_MAPPINGS_DOWNLOAD_URL,
    min_expiration: int = DEFAULT_MIN_EXPIRATION,
    dry_run: bool = False,
) -> bool:
    """
    Update standard renames file from github if changed

    This will only download new data if the existing
    data has passed its expiration.

    Args:
        renames_file: path to renames file, which does not have to
            exist initially
        url: url of name mapping file to download. This file is
            expected to contain a JSON array of dictionary
            containing "pypi_name" and "conda_name" entries.
        min_expiration: minimum seconds before existing data expires.
            Default is 5 minutes.
        dry_run: does not update the file, but still does download
            and returns True if file would change

    Returns:
        True if file was updated. False if file has not expired yet
        or upstream data has not changed.
    """
    renames_path = Path(renames_file).expanduser()

    etag = ""
    if renames_path.is_file():
        # check expiration information from existing file
        current_renames = json.loads(renames_path.read_text("utf8"))
        if date := parse_datetime(current_renames.get("$date", "")):
            try:
                max_age = int(current_renames.get("$max-age", 0))
            except Exception:  # pylint: disable=broad-exception-caught
                max_age = 0
            max_age = max(min_expiration, max_age)
            if (date.timestamp() + max_age) > time.time():
                # Not expired yet
                return False
        etag = current_renames.get("$etag")

    try:
        downloaded = download_mappings(url=url, etag=etag)
    except NotModified:
        return False

    new_renames = process_name_mapping_dict(downloaded)
    if not dry_run:
        renames_path.parent.mkdir(parents=True, exist_ok=True)
        renames_path.write_text(
            json.dumps(new_renames, sort_keys=True, indent=2),
            encoding="utf8",
        )

    return True

user_stdrenames_path

user_stdrenames_path() -> Path

Path to user's cached copy of standard pypi to conda renames file

The location of this file depends on the operating system:

  • Linux: ~/.cache/whl2conda/stdrename.json
  • MacOS: ~/Library/Caches/whl2conda/stdrename.json
  • Windows: ~\AppData\Local\whl2conda\Cache\stdrename.json
Source code in src/whl2conda/api/stdrename.py
88
89
90
91
92
93
94
95
96
97
def user_stdrenames_path() -> Path:
    r"""Path to user's cached copy of standard pypi to conda renames file

    The location of this file depends on the operating system:

    * Linux: ~/.cache/whl2conda/stdrename.json
    * MacOS: ~/Library/Caches/whl2conda/stdrename.json
    * Windows: ~\AppData\Local\whl2conda\Cache\stdrename.json
    """
    return user_cache_path("whl2conda").joinpath("stdrename.json")