stdlb 0.0.3__py3-none-any.whl → 0.1.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
stdlb/__init__.py
CHANGED
@@ -1,31 +1,106 @@
|
|
1
|
+
"""Wildcard-import the Python standard library.
|
2
|
+
|
3
|
+
This file is auto-generated by scripts/generate_init.py.
|
4
|
+
Do not edit manually.
|
5
|
+
"""
|
6
|
+
import sys
|
7
|
+
|
8
|
+
import abc
|
9
|
+
from abc import *
|
10
|
+
|
11
|
+
import array
|
12
|
+
from array import *
|
13
|
+
|
14
|
+
import ast
|
15
|
+
from ast import *
|
16
|
+
|
17
|
+
import asyncio
|
18
|
+
from asyncio import *
|
19
|
+
|
1
20
|
import base64
|
2
21
|
from base64 import *
|
3
22
|
|
23
|
+
import binascii
|
24
|
+
from binascii import *
|
25
|
+
|
26
|
+
import bisect
|
27
|
+
from bisect import *
|
28
|
+
|
29
|
+
import calendar
|
30
|
+
from calendar import *
|
31
|
+
|
32
|
+
import cmath
|
33
|
+
from cmath import *
|
34
|
+
|
35
|
+
import code
|
36
|
+
from code import *
|
37
|
+
|
38
|
+
import codecs
|
39
|
+
from codecs import *
|
40
|
+
|
41
|
+
import collections
|
42
|
+
from collections import *
|
43
|
+
|
4
44
|
import configparser
|
5
45
|
from configparser import *
|
6
46
|
|
7
47
|
import contextlib
|
8
48
|
from contextlib import *
|
9
49
|
|
50
|
+
import copy
|
51
|
+
from copy import *
|
52
|
+
|
53
|
+
import csv
|
54
|
+
from csv import *
|
55
|
+
|
10
56
|
import dataclasses
|
11
57
|
from dataclasses import *
|
12
58
|
|
59
|
+
import datetime as _module_datetime
|
13
60
|
from datetime import *
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
61
|
+
datetime = _module_datetime
|
62
|
+
|
63
|
+
import decimal
|
64
|
+
from decimal import *
|
65
|
+
|
66
|
+
import difflib
|
67
|
+
from difflib import *
|
68
|
+
|
69
|
+
import enum
|
70
|
+
from enum import *
|
71
|
+
|
72
|
+
import fnmatch
|
73
|
+
from fnmatch import *
|
74
|
+
|
75
|
+
import fractions
|
76
|
+
from fractions import *
|
18
77
|
|
19
78
|
import functools
|
20
79
|
from functools import *
|
21
|
-
from .cached_property import cached_property
|
22
80
|
|
81
|
+
import glob as _module_glob
|
23
82
|
from glob import *
|
24
|
-
|
83
|
+
glob = _module_glob
|
84
|
+
|
85
|
+
if sys.version_info >= (3, 9):
|
86
|
+
import graphlib
|
87
|
+
from graphlib import *
|
25
88
|
|
26
89
|
import hashlib
|
27
90
|
from hashlib import *
|
28
91
|
|
92
|
+
import heapq
|
93
|
+
from heapq import *
|
94
|
+
|
95
|
+
import hmac
|
96
|
+
from hmac import *
|
97
|
+
|
98
|
+
import html
|
99
|
+
from html import *
|
100
|
+
|
101
|
+
import http
|
102
|
+
from http import *
|
103
|
+
|
29
104
|
import io
|
30
105
|
from io import *
|
31
106
|
|
@@ -33,52 +108,192 @@ import itertools
|
|
33
108
|
from itertools import *
|
34
109
|
|
35
110
|
import json
|
111
|
+
from json import *
|
112
|
+
|
113
|
+
import locale
|
114
|
+
from locale import *
|
115
|
+
|
116
|
+
import logging
|
117
|
+
from logging import *
|
36
118
|
|
37
119
|
import math
|
38
120
|
from math import *
|
39
121
|
|
40
|
-
import
|
122
|
+
import mimetypes
|
123
|
+
from mimetypes import *
|
124
|
+
|
125
|
+
import numbers
|
126
|
+
from numbers import *
|
127
|
+
|
128
|
+
import operator
|
129
|
+
from operator import *
|
130
|
+
|
131
|
+
import os as _module_os
|
41
132
|
from os import *
|
42
|
-
|
43
|
-
from os.path import *
|
133
|
+
os = _module_os
|
44
134
|
|
45
135
|
import pathlib
|
46
136
|
from pathlib import *
|
47
137
|
|
138
|
+
import pickle
|
139
|
+
from pickle import *
|
140
|
+
|
141
|
+
import platform
|
142
|
+
from platform import *
|
143
|
+
|
144
|
+
import pprint
|
145
|
+
from pprint import *
|
146
|
+
|
147
|
+
import queue
|
148
|
+
from queue import *
|
149
|
+
|
150
|
+
import random
|
151
|
+
from random import *
|
152
|
+
|
48
153
|
import re
|
49
154
|
from re import *
|
50
155
|
|
156
|
+
import reprlib
|
157
|
+
from reprlib import *
|
158
|
+
|
159
|
+
import secrets
|
160
|
+
from secrets import *
|
161
|
+
|
162
|
+
import shelve
|
163
|
+
from shelve import *
|
164
|
+
|
165
|
+
import shlex as _module_shlex
|
51
166
|
from shlex import *
|
52
|
-
|
167
|
+
shlex = _module_shlex
|
53
168
|
|
54
169
|
import shutil
|
55
170
|
from shutil import *
|
56
|
-
|
171
|
+
|
172
|
+
import signal
|
173
|
+
from signal import *
|
174
|
+
|
175
|
+
import socket
|
176
|
+
from socket import *
|
177
|
+
|
178
|
+
import sqlite3
|
179
|
+
from sqlite3 import *
|
180
|
+
|
181
|
+
import statistics
|
182
|
+
from statistics import *
|
183
|
+
|
184
|
+
import string
|
185
|
+
from string import *
|
186
|
+
|
187
|
+
import struct
|
188
|
+
from struct import *
|
57
189
|
|
58
190
|
import subprocess
|
59
191
|
from subprocess import *
|
60
192
|
|
61
|
-
import sys
|
193
|
+
import sys as _module_sys
|
62
194
|
from sys import *
|
63
|
-
|
195
|
+
sys = _module_sys
|
64
196
|
|
65
197
|
import tempfile
|
66
198
|
from tempfile import *
|
67
199
|
|
200
|
+
import textwrap
|
201
|
+
from textwrap import *
|
202
|
+
|
203
|
+
import threading
|
204
|
+
from threading import *
|
205
|
+
|
206
|
+
import time as _module_time
|
68
207
|
from time import *
|
69
|
-
|
208
|
+
time = _module_time
|
209
|
+
|
210
|
+
import timeit
|
211
|
+
from timeit import *
|
212
|
+
|
213
|
+
if sys.version_info >= (3, 11):
|
214
|
+
import tomllib
|
215
|
+
from tomllib import *
|
70
216
|
|
71
217
|
import traceback
|
72
218
|
from traceback import *
|
73
219
|
|
220
|
+
import types
|
221
|
+
from types import *
|
222
|
+
|
74
223
|
import typing
|
75
224
|
from typing import *
|
76
225
|
|
226
|
+
import unicodedata
|
227
|
+
from unicodedata import *
|
228
|
+
|
77
229
|
import urllib
|
78
230
|
from urllib import *
|
79
|
-
from urllib.parse import urlparse
|
80
231
|
|
81
232
|
import uuid
|
82
233
|
from uuid import *
|
83
234
|
|
84
235
|
import warnings
|
236
|
+
from warnings import *
|
237
|
+
|
238
|
+
import weakref
|
239
|
+
from weakref import *
|
240
|
+
|
241
|
+
import xml
|
242
|
+
from xml import *
|
243
|
+
|
244
|
+
import zipfile
|
245
|
+
from zipfile import *
|
246
|
+
|
247
|
+
import zlib
|
248
|
+
from zlib import *
|
249
|
+
|
250
|
+
if sys.version_info >= (3, 9):
|
251
|
+
import zoneinfo
|
252
|
+
from zoneinfo import *
|
253
|
+
|
254
|
+
# Preserve builtins that may be shadowed by module members
|
255
|
+
_builtins_dict = __builtins__ if isinstance(__builtins__, dict) else __builtins__.__dict__
|
256
|
+
if 'BlockingIOError' in _builtins_dict:
|
257
|
+
BlockingIOError = _builtins_dict['BlockingIOError']
|
258
|
+
if 'TimeoutError' in _builtins_dict:
|
259
|
+
TimeoutError = _builtins_dict['TimeoutError']
|
260
|
+
if 'Warning' in _builtins_dict:
|
261
|
+
Warning = _builtins_dict['Warning']
|
262
|
+
if 'abs' in _builtins_dict:
|
263
|
+
abs = _builtins_dict['abs']
|
264
|
+
if 'compile' in _builtins_dict:
|
265
|
+
compile = _builtins_dict['compile']
|
266
|
+
if 'copyright' in _builtins_dict:
|
267
|
+
copyright = _builtins_dict['copyright']
|
268
|
+
if 'enumerate' in _builtins_dict:
|
269
|
+
enumerate = _builtins_dict['enumerate']
|
270
|
+
if 'exit' in _builtins_dict:
|
271
|
+
exit = _builtins_dict['exit']
|
272
|
+
if 'filter' in _builtins_dict:
|
273
|
+
filter = _builtins_dict['filter']
|
274
|
+
if 'open' in _builtins_dict:
|
275
|
+
open = _builtins_dict['open']
|
276
|
+
if 'pow' in _builtins_dict:
|
277
|
+
pow = _builtins_dict['pow']
|
278
|
+
if 'property' in _builtins_dict:
|
279
|
+
property = _builtins_dict['property']
|
280
|
+
if 'repr' in _builtins_dict:
|
281
|
+
repr = _builtins_dict['repr']
|
282
|
+
if 'slice' in _builtins_dict:
|
283
|
+
slice = _builtins_dict['slice']
|
284
|
+
if 'str' in _builtins_dict:
|
285
|
+
str = _builtins_dict['str']
|
286
|
+
|
287
|
+
# Datetime convenience aliases
|
288
|
+
dt = datetime.datetime
|
289
|
+
fromtimestamp = dt.fromtimestamp
|
290
|
+
fromisoformat = dt.fromisoformat
|
291
|
+
|
292
|
+
# Collision resolution preferences
|
293
|
+
join = os.path.join
|
294
|
+
path = os.path
|
295
|
+
|
296
|
+
# Custom implementations
|
297
|
+
from .cached_property import cached_property
|
298
|
+
|
299
|
+
|
@@ -0,0 +1,168 @@
|
|
1
|
+
Metadata-Version: 2.4
|
2
|
+
Name: stdlb
|
3
|
+
Version: 0.1.0
|
4
|
+
Summary: Wildcard-import the Python standard library
|
5
|
+
Project-URL: Homepage, https://github.com/runsascoded/stdlb
|
6
|
+
Project-URL: Repository, https://github.com/runsascoded/stdlb
|
7
|
+
Project-URL: Issues, https://github.com/runsascoded/stdlb/issues
|
8
|
+
Author-email: Ryan Williams <ryan@runsascoded.com>
|
9
|
+
License: MIT
|
10
|
+
Classifier: Development Status :: 4 - Beta
|
11
|
+
Classifier: Intended Audience :: Developers
|
12
|
+
Classifier: License :: OSI Approved :: MIT License
|
13
|
+
Classifier: Programming Language :: Python :: 3
|
14
|
+
Classifier: Programming Language :: Python :: 3.10
|
15
|
+
Classifier: Programming Language :: Python :: 3.11
|
16
|
+
Classifier: Programming Language :: Python :: 3.12
|
17
|
+
Classifier: Programming Language :: Python :: 3.13
|
18
|
+
Requires-Python: >=3.10
|
19
|
+
Description-Content-Type: text/markdown
|
20
|
+
|
21
|
+
# `stdlb`
|
22
|
+
|
23
|
+
Wildcard-import the Python standard library
|
24
|
+
|
25
|
+
[](https://pypi.python.org/pypi/stdlb)
|
26
|
+
|
27
|
+
```python
|
28
|
+
from stdlb import *
|
29
|
+
|
30
|
+
# Most of the standard library is now available:
|
31
|
+
print(f"Current directory: {getcwd()}")
|
32
|
+
stderr.write(f"Python version: {version}\n")
|
33
|
+
print(f"Today: {dt.now()}")
|
34
|
+
data = {"key": "value"}
|
35
|
+
dumps(data) # json.dumps
|
36
|
+
```
|
37
|
+
|
38
|
+
**Features:**
|
39
|
+
- 🎯 **Comprehensive coverage**: 79+ stdlib modules available (up from ~20 in earlier versions)
|
40
|
+
- 🐍 **Python 3.10-3.13 support**: Automatically includes version-specific modules
|
41
|
+
- ⚡ **Fast**: Imports in ~2ms
|
42
|
+
- 🔒 **Safe**: Preserves all `__builtins__`, resolves name collisions intelligently
|
43
|
+
|
44
|
+
- [Install](#install)
|
45
|
+
- [Coverage](#coverage)
|
46
|
+
- [Notes](#notes)
|
47
|
+
- [Collision Resolution](#collisions)
|
48
|
+
- [`__builtins` vs. module members](#builtins)
|
49
|
+
- [Module/Members](#module-members)
|
50
|
+
- [Aliases](#aliases)
|
51
|
+
- [Custom `cached_property`](#cached-property)
|
52
|
+
- [Development](#development)
|
53
|
+
|
54
|
+
## Install <a id="install"></a>
|
55
|
+
```bash
|
56
|
+
pip install stdlb
|
57
|
+
```
|
58
|
+
|
59
|
+
## Coverage <a id="coverage"></a>
|
60
|
+
|
61
|
+
`stdlb` now includes 79+ stdlib modules, including:
|
62
|
+
|
63
|
+
**Core utilities**: `os`, `sys`, `pathlib`, `subprocess`, `tempfile`, `shutil`, `glob`, `fnmatch`
|
64
|
+
|
65
|
+
**Data structures & algorithms**: `collections`, `itertools`, `heapq`, `bisect`, `array`, `queue`
|
66
|
+
|
67
|
+
**Text processing**: `re`, `string`, `textwrap`, `difflib`, `unicodedata`
|
68
|
+
|
69
|
+
**Data formats**: `json`, `csv`, `configparser`, `pickle`, `base64`, `binascii`
|
70
|
+
|
71
|
+
**Math & numbers**: `math`, `cmath`, `decimal`, `fractions`, `statistics`, `random`, `secrets`
|
72
|
+
|
73
|
+
**Date & time**: `datetime`, `time`, `calendar`, `timeit`
|
74
|
+
|
75
|
+
**Functional programming**: `functools`, `operator`, `itertools`
|
76
|
+
|
77
|
+
**Type hints**: `typing`, `types`, `dataclasses`, `enum`
|
78
|
+
|
79
|
+
**Concurrency**: `threading`, `asyncio`, `subprocess`, `signal`
|
80
|
+
|
81
|
+
**Networking**: `socket`, `urllib`, `http`, `html`, `mimetypes`
|
82
|
+
|
83
|
+
**Cryptography**: `hashlib`, `hmac`, `secrets`
|
84
|
+
|
85
|
+
**Compression**: `zlib`, `zipfile`
|
86
|
+
|
87
|
+
**And more**: `logging`, `warnings`, `traceback`, `pprint`, `platform`, `locale`, etc.
|
88
|
+
|
89
|
+
### Version-specific modules
|
90
|
+
|
91
|
+
- **Python 3.9+**: `graphlib`, `zoneinfo`
|
92
|
+
- **Python 3.11+**: `tomllib`
|
93
|
+
|
94
|
+
## Notes <a id="notes"></a>
|
95
|
+
I've found this especially useful in Jupyter notebooks, where I don't have an easy "add `import` statements as I add code" setup.
|
96
|
+
|
97
|
+
Importing seems to take a few milliseconds (on my Macbook Air):
|
98
|
+
```ipython
|
99
|
+
%%time
|
100
|
+
from stdlb import *
|
101
|
+
# CPU times: user 914 µs, sys: 397 µs, total: 1.31 ms
|
102
|
+
# Wall time: 1.6 ms
|
103
|
+
```
|
104
|
+
|
105
|
+
### Collision Resolution <a id="collisions"></a>
|
106
|
+
|
107
|
+
#### `__builtins` vs. module members <a id="builtins"></a>
|
108
|
+
`stdlb` avoids overwriting `__builtins__` with conflicting module members, e.g.:
|
109
|
+
- `open` vs. `os.open`
|
110
|
+
- `compile` vs. `re.compile`
|
111
|
+
- `pow` vs. `math.pow`
|
112
|
+
- `copyright` vs. `sys.copyright`
|
113
|
+
- `BlockingIOError` vs. `io.BlockingIOError`
|
114
|
+
|
115
|
+
[`test.ipynb`](test.ipynb) is executed as part of [`ci.yml`](.github/workflows/ci.yml) to verify there are no `__builtins__` are unexpectedly shadowed.
|
116
|
+
|
117
|
+
#### Module/Members <a id="module-members"></a>
|
118
|
+
In a few cases, a top-level standard library module also contains a member with the same name (e.g. `datetime`, `shlex`, `time`). `stdlb` makes an effort to ensure the module "wins" in this case:
|
119
|
+
|
120
|
+
```python
|
121
|
+
from stdlb import *
|
122
|
+
|
123
|
+
datetime # <module 'datetime' from '$PYTHON_HOME/lib/python3.9/datetime.py'>
|
124
|
+
shlex # <module 'shlex' from '$PYTHON_HOME/lib/python3.9/shlex.py'>
|
125
|
+
time # <module 'time' (built-in)>
|
126
|
+
```
|
127
|
+
|
128
|
+
A few names are disambiguated with the most sensible-seeming defaults:
|
129
|
+
```python
|
130
|
+
path # resolves to os.path, not sys.path
|
131
|
+
join # os.path.join, not shlex.join
|
132
|
+
```
|
133
|
+
|
134
|
+
### Aliases <a id="aliases"></a>
|
135
|
+
|
136
|
+
For convenience, `datetime.datetime` is also exposed as `dt`, and a few of its members are exported directly:
|
137
|
+
```python
|
138
|
+
dt.now() # datetime.datetime(2023, 8, 3, 10, 9, 43, 981458)
|
139
|
+
fromtimestamp # datetime.datetime.fromtimestamp
|
140
|
+
fromisoformat # datetime.datetime.fromisoformat
|
141
|
+
```
|
142
|
+
|
143
|
+
### Custom `cached_property` <a id="cached-property"></a>
|
144
|
+
One additional bit of functionality is [this custom `cached_property` decorator](stdlb/cached_property.py), which omits an unnecessary/unserializable lock found in `functools.cached_property`. [cpython#87634](https://github.com/python/cpython/issues/87634) has more info, seems like [a fix is coming in Python 3.12](https://github.com/python/cpython/issues/87634#issuecomment-1467140709).
|
145
|
+
|
146
|
+
## Development <a id="development"></a>
|
147
|
+
|
148
|
+
This project uses [uv](https://github.com/astral-sh/uv) for development.
|
149
|
+
|
150
|
+
```bash
|
151
|
+
# Install dependencies
|
152
|
+
uv sync
|
153
|
+
|
154
|
+
# Run tests
|
155
|
+
uv run pytest tests/ -v
|
156
|
+
|
157
|
+
# Test across multiple Python versions
|
158
|
+
for v in .venv/3.*/bin/python; do $v scripts/quick_test.py; done
|
159
|
+
|
160
|
+
# Regenerate __init__.py (if needed)
|
161
|
+
uv run python scripts/generate_init.py > stdlb/__init__.py
|
162
|
+
```
|
163
|
+
|
164
|
+
### Scripts
|
165
|
+
|
166
|
+
- `scripts/discover_stdlib.py`: Analyze the stdlib and identify modules to include
|
167
|
+
- `scripts/generate_init.py`: Generate `stdlb/__init__.py` from stdlib discovery
|
168
|
+
- `scripts/quick_test.py`: Quick functionality test across Python versions
|
@@ -0,0 +1,5 @@
|
|
1
|
+
stdlb/__init__.py,sha256=gkNYAY5Mu9PuSrqqFHm9p9aoYK7f0yZiF4toM3qHTxo,4861
|
2
|
+
stdlb/cached_property.py,sha256=-fSgW9c7qIpeVaMQ21TyssdH2MbxIJVBDdWuuQIA_Ro,617
|
3
|
+
stdlb-0.1.0.dist-info/METADATA,sha256=cI1dOrPJpbOTCIATFKzELOvmBTT_jDRlmG5xp_CP760,5937
|
4
|
+
stdlb-0.1.0.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
5
|
+
stdlb-0.1.0.dist-info/RECORD,,
|
stdlb-0.0.3.dist-info/METADATA
DELETED
@@ -1,67 +0,0 @@
|
|
1
|
-
Metadata-Version: 2.1
|
2
|
-
Name: stdlb
|
3
|
-
Version: 0.0.3
|
4
|
-
Summary: Wildcard-import the Python standard library
|
5
|
-
Home-page: UNKNOWN
|
6
|
-
Author: Ryan Williams
|
7
|
-
Author-email: ryan@runsascoded.com
|
8
|
-
License: MIT
|
9
|
-
Platform: UNKNOWN
|
10
|
-
Description-Content-Type: text/markdown
|
11
|
-
|
12
|
-
# `stdlb`
|
13
|
-
|
14
|
-
Wildcard-import the Python standard library
|
15
|
-
|
16
|
-
```python
|
17
|
-
from stdlb import *
|
18
|
-
|
19
|
-
# Most of the standard library is now available:
|
20
|
-
print(f"Current directory: {getcwd()}")
|
21
|
-
stderr.write("Python version: {version}\n")
|
22
|
-
```
|
23
|
-
|
24
|
-
## Install
|
25
|
-
```bash
|
26
|
-
pip install stdlb
|
27
|
-
```
|
28
|
-
|
29
|
-
## Notes
|
30
|
-
I've found this especially useful in Jupyter notebooks, where I don't have an easy "add `import` statements as I add code" setup.
|
31
|
-
|
32
|
-
Importing seems to take a few milliseconds (on my Macbook Air):
|
33
|
-
```ipython
|
34
|
-
%%time
|
35
|
-
from stdlb import *
|
36
|
-
# CPU times: user 914 µs, sys: 397 µs, total: 1.31 ms
|
37
|
-
# Wall time: 1.6 ms
|
38
|
-
```
|
39
|
-
|
40
|
-
### Collisions / Aliases
|
41
|
-
In a few cases, a top-level standard library module also contains a member with the same name (e.g. `datetime`, `shlex`, `time`). `stdlb` makes an effort to ensure the module "wins" in this case:
|
42
|
-
|
43
|
-
```python
|
44
|
-
from stdlb import *
|
45
|
-
|
46
|
-
datetime # <module 'datetime' from '$PYTHON_HOME/lib/python3.9/datetime.py'>
|
47
|
-
shlex # <module 'shlex' from '$PYTHON_HOME/lib/python3.9/shlex.py'>
|
48
|
-
time # <module 'time' (built-in)>
|
49
|
-
```
|
50
|
-
|
51
|
-
A few names are disambiguated with the most sensible-seeming defaults:
|
52
|
-
```python
|
53
|
-
path # resolves to os.path, not sys.path
|
54
|
-
join # os.path.join, not shlex.join
|
55
|
-
```
|
56
|
-
|
57
|
-
For convenience, `datetime.datetime` is also exposed as `dt`, and a few of its members are exported directly:
|
58
|
-
```python
|
59
|
-
dt.now() # datetime.datetime(2023, 8, 3, 10, 9, 43, 981458)
|
60
|
-
fromtimestamp # datetime.datetime.fromtimestamp
|
61
|
-
fromisoformat # datetime.datetime.fromisoformat
|
62
|
-
```
|
63
|
-
|
64
|
-
### Custom `cached_property`
|
65
|
-
One additional bit of functionality is [this custom `cached_property` decorator](stdlb/cached_property.py), which omits an unnecessary/unserializable lock found in `functools.cached_property`. [cpython#87634](https://github.com/python/cpython/issues/87634) has more info, seems like [a fix is coming in Python 3.12](https://github.com/python/cpython/issues/87634#issuecomment-1467140709).
|
66
|
-
|
67
|
-
|
stdlb-0.0.3.dist-info/RECORD
DELETED
@@ -1,6 +0,0 @@
|
|
1
|
-
stdlb/__init__.py,sha256=z5IngI-97MEBIVf-rfYyjeLdCY6q2eZ0FW0dulFfZq8,1226
|
2
|
-
stdlb/cached_property.py,sha256=-fSgW9c7qIpeVaMQ21TyssdH2MbxIJVBDdWuuQIA_Ro,617
|
3
|
-
stdlb-0.0.3.dist-info/METADATA,sha256=c5zeQ4akqQ33zfnpIP1Zg9Q11RCW69ERRx8lZAHN_Dk,2161
|
4
|
-
stdlb-0.0.3.dist-info/WHEEL,sha256=AtBG6SXL3KF_v0NxLf0ehyVOh0cold-JbJYXNGorC6Q,92
|
5
|
-
stdlb-0.0.3.dist-info/top_level.txt,sha256=CR0nzaBSdkIbdFxO8KiV7fA6MVGndY-kc48vsnImc0E,6
|
6
|
-
stdlb-0.0.3.dist-info/RECORD,,
|
@@ -1 +0,0 @@
|
|
1
|
-
stdlb
|