files3


Namefiles3 JSON
Version 0.6.0.1 PyPI version JSON
download
home_page
Summary(pickle+lz4 based) save Python objects in binary to the file system and manage them.
upload_time2024-01-01 03:27:26
maintainerEagle'sBaby
docs_urlNone
author
requires_python>=3
licenseApache Licence 2.0
keywords pickle lz4 file system file management
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            <h1>Files3 Python Object Management</h1>
<ol>
<li><a href="#en_installation">English Version</li>
<ol>
<li><a href="#en_installation">Intallation</li>
<li><a href="#en_quick_start">Quick Start</li>
<li><a href="#en_advanced">Advanced</li>
<li><a href="#en_notice">Notice</li>
<li><a href="#en_cmd_command">Cmd Command</li>
<li><a href="#en_last">Last</li>
</ol>
<li><a href="#cn_installation">Chinese Version</li>
<ol>
<li><a href="#cn_installation">Intallation</li>
<li><a href="#cn_quick_start">Quick Start</li>
<li><a href="#cn_advanced">Advanced</li>
<li><a href="#cn_cmd_command">Cmd Command</li>
<li><a href="#cn_last">Last</li>
</ol>
</ol>
<a name="en_installation"></a>
<h2>Installation</h2>
<cib-code-block code-lang="python" clipboard-data="pip install files3
"><pre><code class="language-python">pip install files3
</code></pre>
</cib-code-block>
<div style="width: 100%; background-color: rgb(240, 240, 240); border: 1px solid rgb(224, 224, 224); border-radius: 5px; padding: 15px; --darkreader-inline-bgcolor: #f5eee1; --darkreader-inline-border-top: #e5ded1; --darkreader-inline-border-right: #e5ded1; --darkreader-inline-border-bottom: #e5ded1; --darkreader-inline-border-left: #e5ded1;" data-darkreader-inline-bgcolor="" data-darkreader-inline-border-top="" data-darkreader-inline-border-right="" data-darkreader-inline-border-bottom="" data-darkreader-inline-border-left="">
    <p><b># </b>After installation, you can use the command in cmd: 
    <pre><code class="language-cmd">f3assoc .inst</code></pre>
    to associate the '.inst' file with the 'f3open' program.</p>
</div>
<a name="en_quick_start"></a>
<h2>Quick Start</h2>
<pre><code class="language-python">
from files3 import files
f = files()  # save pyfile in current directory with default suffix '.inst'
&nbsp
## save python object (modify is also like save)
f.set('a', 1)
&nbsp
## check if file exist
f.has('a')  # True
&nbsp
## load python object
print(f.get('a'))  # 1
&nbsp
## delete file
f.delete('a')
</code></pre>
<p>files(dir:str="", type:str=".inst")</p>
<a name="en_advanced"></a>
<h2>Advanced</h2>
<pre><code class="language-python">
from files3 import files
f = files()
&nbsp
## Save
f.a = 1
# f['a'] = 1
&nbsp
## load
print(f.a)  # 1
# print(f['a'])  # 1
&nbsp
## delete
del f.a
# del f['a']
&nbsp
## check if file exist
'a' in f  # False
&nbsp
&nbsp
## Use other key not only str:
# 1. tuple or list
f[('a', 'b')] = [1, 2]
print(f.a, f.b, f['a'], f['b'])  # 1, 2, [1, 2]
&nbsp
# 2. slice
print(f[:])  # [1, 2]
# print(f[...])  # [1, 2]
&nbsp
# 3. function
print(f[lambda x: x == 'a'])  # 1
&nbsp
# 4. re
print(f[re.compile('a')])  # 1
&nbsp
del f[...]
</code></pre>
<pre><code class="language-python">
# hash: get hash of the file
fhash = f.hash('a')
&nbsp
# retype: adjust the ftype of exists files
f.retytpe('.newtype', 'a', 'b', ...)  # f.retype('.newtype')  # all files
&nbsp
# relink: manual adjust the scp(Source Code Path) of exists files 
f.retytpe('C:/mycode/code.py', 'a', 'b', ...)  # f.retype('C:/mycode/code.py')  # all files
</code></pre>
<a name="en_notice"></a>
<h2>Notice</h2>
<p>There are some special case that you can't save:</p>
<ol>
    <li>f3bool object and files object (alias Files, F3Shell)</li><li>Actively refuse to serialize objects (such objects will actively throw errors when attempting to serialize)</li><li>cases not supported by pickle (such as module, lambda, local function/class (that is nested inside other functions and classes))</li>
</ol>
<a name="en_cmd_command"></a>
<h2>Cmd Command</h2>
<pre><code>
f3 [name] [type] -d [dir]  # open a files3 object
f3open [fpath]  # open a files3 object
f3assoc [type]  # associate the '.type' file with the 'f3open' program
</code></pre>
<a name="en_last"></a>
<h2>Last</h2>
<p>It's really convinent but, because pickle is not safe, so mayn't use it to load the file you don't trust. However, if you do not care about it like me, you can use it to bring you a good programming experience.</p>

<a name="cn_installation"></a>
<h2>安装files3</h2>
<cib-code-block code-lang="python" clipboard-data="pip install files3
"><pre><code class="language-python">pip install files3
</code></pre>
</cib-code-block>
<div style="width: 100%; background-color: rgb(240, 240, 240); border: 1px solid rgb(224, 224, 224); border-radius: 5px; padding: 15px; --darkreader-inline-bgcolor: #f5eee1; --darkreader-inline-border-top: #e5ded1; --darkreader-inline-border-right: #e5ded1; --darkreader-inline-border-bottom: #e5ded1; --darkreader-inline-border-left: #e5ded1;" data-darkreader-inline-bgcolor="" data-darkreader-inline-border-top="" data-darkreader-inline-border-right="" data-darkreader-inline-border-bottom="" data-darkreader-inline-border-left="">
    <p><b># </b>安装后,可以在cmd中使用命令:
    <pre><code class="language-cmd">f3assoc .inst</code></pre>
    将'.inst'文件关联到'f3open'程序。</p>
</div>
<a name="cn_quick_start"></a>
<h2>快速开始</h2>
<pre><code class="language-python">
from files3 import files
f = files()  # 保存py文件在当前目录,后缀为'.inst'
&nbsp
## 保存python对象(修改也是这样)
f.set('a', 1)
&nbsp
## 检查文件是否存在
f.has('a')  # True
&nbsp
## 加载python对象
print(f.get('a'))  # 1
&nbsp
## 删除文件
f.delete('a')
</code></pre>
<p>files(dir:str="", type:str=".inst")</p>
<a name="cn_advanced"></a>
<h2>高级用法</h2>
<pre><code class="language-python">
from files3 import files
f = files()
&nbsp
## 保存
f.a = 1
# f['a'] = 1
&nbsp
## 加载
print(f.a)  # 1
# print(f['a'])  # 1
&nbsp
## 删除
del f.a
# del f['a']
&nbsp
## 检查文件是否存在
'a' in f  # False
&nbsp
&nbsp
## 使用其他键不仅仅是str:
# 1. tuple or list
f[('a', 'b')] = [1, 2]
print(f.a, f.b, f['a'], f['b'])  # 1, 2, [1, 2]
&nbsp
# 2. slice
print(f[:])  # [1, 2]
# print(f[...])  # [1, 2]
&nbsp
# 3. function
print(f[lambda x: x == 'a'])  # 1
&nbsp
# 4. re
print(f[re.compile('a')])  # 1
&nbsp
del f[...]
</code></pre>
<pre><code class="language-python">
# hash:获取目标的文件指纹
fhash = f.hash('a')
&nbsp
# retype: 调整已有文件的后缀
f.retytpe('.newtype', 'a', 'b', ...)  # f.retype('.newtype')  # 全部文件
&nbsp
# relink: 手动调整已有文件的源代码后位置
f.retytpe('C:/mycode/code.py', 'a', 'b', ...)  # f.retype('C:/mycode/code.py')  # 全部文件
</code></pre>
<a name="cn_notice"></a>
<h2>注意</h2>
<p>有一些特殊情况不能保存:</p>
<ol>
<li>f3bool对象和files对象(别名Files, F3Shell)</li>
<li>主动拒绝序列化的对象(例如此类对象在试图序列化时会主动抛出error)</li>
<li>pickle不支持的情况(例如 module,lambda,local function/class (那种嵌套在其他函数和class内部的))</li>
</ol>
<a name="cn_cmd_command"></a>
<h2>Cmd命令</h2>
<pre><code>
f3 [name] [type] -d [dir]  # 打开一个files3对象
f3open [fpath]  # 打开一个files3对象
f3assoc [type]  # 将'.type'文件关联到'f3open'程序
</code></pre>
<a name="cn_last"></a>
<h2>最后</h2>
<p>这确实很方便,但是由于pickle不安全,因此可能不要使用它来加载您不信任的文件。 但是,如果您不像我一样不怎么关心它,那么可以使用它为您带来良好的编程体验。</p>


            

Raw data

            {
    "_id": null,
    "home_page": "",
    "name": "files3",
    "maintainer": "Eagle'sBaby",
    "docs_url": null,
    "requires_python": ">=3",
    "maintainer_email": "2229066748@qq.com",
    "keywords": "pickle,lz4,file system,file management",
    "author": "",
    "author_email": "2229066748@qq.com",
    "download_url": "https://files.pythonhosted.org/packages/75/99/c935928f6ab9d6b63ec17acdcb739151896bb5dd652ab11313de6a83a55c/files3-0.6.0.1.tar.gz",
    "platform": null,
    "description": "<h1>Files3 Python Object Management</h1>\r\n<ol>\r\n<li><a href=\"#en_installation\">English Version</li>\r\n<ol>\r\n<li><a href=\"#en_installation\">Intallation</li>\r\n<li><a href=\"#en_quick_start\">Quick Start</li>\r\n<li><a href=\"#en_advanced\">Advanced</li>\r\n<li><a href=\"#en_notice\">Notice</li>\r\n<li><a href=\"#en_cmd_command\">Cmd Command</li>\r\n<li><a href=\"#en_last\">Last</li>\r\n</ol>\r\n<li><a href=\"#cn_installation\">Chinese Version</li>\r\n<ol>\r\n<li><a href=\"#cn_installation\">Intallation</li>\r\n<li><a href=\"#cn_quick_start\">Quick Start</li>\r\n<li><a href=\"#cn_advanced\">Advanced</li>\r\n<li><a href=\"#cn_cmd_command\">Cmd Command</li>\r\n<li><a href=\"#cn_last\">Last</li>\r\n</ol>\r\n</ol>\r\n<a name=\"en_installation\"></a>\r\n<h2>Installation</h2>\r\n<cib-code-block code-lang=\"python\" clipboard-data=\"pip install files3\r\n\"><pre><code class=\"language-python\">pip install files3\r\n</code></pre>\r\n</cib-code-block>\r\n<div style=\"width: 100%; background-color: rgb(240, 240, 240); border: 1px solid rgb(224, 224, 224); border-radius: 5px; padding: 15px; --darkreader-inline-bgcolor: #f5eee1; --darkreader-inline-border-top: #e5ded1; --darkreader-inline-border-right: #e5ded1; --darkreader-inline-border-bottom: #e5ded1; --darkreader-inline-border-left: #e5ded1;\" data-darkreader-inline-bgcolor=\"\" data-darkreader-inline-border-top=\"\" data-darkreader-inline-border-right=\"\" data-darkreader-inline-border-bottom=\"\" data-darkreader-inline-border-left=\"\">\r\n    <p><b># </b>After installation, you can use the command in cmd: \r\n    <pre><code class=\"language-cmd\">f3assoc .inst</code></pre>\r\n    to associate the '.inst' file with the 'f3open' program.</p>\r\n</div>\r\n<a name=\"en_quick_start\"></a>\r\n<h2>Quick Start</h2>\r\n<pre><code class=\"language-python\">\r\nfrom files3 import files\r\nf = files()  # save pyfile in current directory with default suffix '.inst'\r\n&nbsp\r\n## save python object (modify is also like save)\r\nf.set('a', 1)\r\n&nbsp\r\n## check if file exist\r\nf.has('a')  # True\r\n&nbsp\r\n## load python object\r\nprint(f.get('a'))  # 1\r\n&nbsp\r\n## delete file\r\nf.delete('a')\r\n</code></pre>\r\n<p>files(dir:str=\"\", type:str=\".inst\")</p>\r\n<a name=\"en_advanced\"></a>\r\n<h2>Advanced</h2>\r\n<pre><code class=\"language-python\">\r\nfrom files3 import files\r\nf = files()\r\n&nbsp\r\n## Save\r\nf.a = 1\r\n# f['a'] = 1\r\n&nbsp\r\n## load\r\nprint(f.a)  # 1\r\n# print(f['a'])  # 1\r\n&nbsp\r\n## delete\r\ndel f.a\r\n# del f['a']\r\n&nbsp\r\n## check if file exist\r\n'a' in f  # False\r\n&nbsp\r\n&nbsp\r\n## Use other key not only str:\r\n# 1. tuple or list\r\nf[('a', 'b')] = [1, 2]\r\nprint(f.a, f.b, f['a'], f['b'])  # 1, 2, [1, 2]\r\n&nbsp\r\n# 2. slice\r\nprint(f[:])  # [1, 2]\r\n# print(f[...])  # [1, 2]\r\n&nbsp\r\n# 3. function\r\nprint(f[lambda x: x == 'a'])  # 1\r\n&nbsp\r\n# 4. re\r\nprint(f[re.compile('a')])  # 1\r\n&nbsp\r\ndel f[...]\r\n</code></pre>\r\n<pre><code class=\"language-python\">\r\n# hash: get hash of the file\r\nfhash = f.hash('a')\r\n&nbsp\r\n# retype: adjust the ftype of exists files\r\nf.retytpe('.newtype', 'a', 'b', ...)  # f.retype('.newtype')  # all files\r\n&nbsp\r\n# relink: manual adjust the scp(Source Code Path) of exists files \r\nf.retytpe('C:/mycode/code.py', 'a', 'b', ...)  # f.retype('C:/mycode/code.py')  # all files\r\n</code></pre>\r\n<a name=\"en_notice\"></a>\r\n<h2>Notice</h2>\r\n<p>There are some special case that you can't save:</p>\r\n<ol>\r\n    <li>f3bool object and files object (alias Files, F3Shell)</li><li>Actively refuse to serialize objects (such objects will actively throw errors when attempting to serialize)</li><li>cases not supported by pickle (such as module, lambda, local function/class (that is nested inside other functions and classes))</li>\r\n</ol>\r\n<a name=\"en_cmd_command\"></a>\r\n<h2>Cmd Command</h2>\r\n<pre><code>\r\nf3 [name] [type] -d [dir]  # open a files3 object\r\nf3open [fpath]  # open a files3 object\r\nf3assoc [type]  # associate the '.type' file with the 'f3open' program\r\n</code></pre>\r\n<a name=\"en_last\"></a>\r\n<h2>Last</h2>\r\n<p>It's really convinent but, because pickle is not safe, so mayn't use it to load the file you don't trust. However, if you do not care about it like me, you can use it to bring you a good programming experience.</p>\r\n\r\n<a name=\"cn_installation\"></a>\r\n<h2>\u5b89\u88c5files3</h2>\r\n<cib-code-block code-lang=\"python\" clipboard-data=\"pip install files3\r\n\"><pre><code class=\"language-python\">pip install files3\r\n</code></pre>\r\n</cib-code-block>\r\n<div style=\"width: 100%; background-color: rgb(240, 240, 240); border: 1px solid rgb(224, 224, 224); border-radius: 5px; padding: 15px; --darkreader-inline-bgcolor: #f5eee1; --darkreader-inline-border-top: #e5ded1; --darkreader-inline-border-right: #e5ded1; --darkreader-inline-border-bottom: #e5ded1; --darkreader-inline-border-left: #e5ded1;\" data-darkreader-inline-bgcolor=\"\" data-darkreader-inline-border-top=\"\" data-darkreader-inline-border-right=\"\" data-darkreader-inline-border-bottom=\"\" data-darkreader-inline-border-left=\"\">\r\n    <p><b># </b>\u5b89\u88c5\u540e\uff0c\u53ef\u4ee5\u5728cmd\u4e2d\u4f7f\u7528\u547d\u4ee4\uff1a\r\n    <pre><code class=\"language-cmd\">f3assoc .inst</code></pre>\r\n    \u5c06'.inst'\u6587\u4ef6\u5173\u8054\u5230'f3open'\u7a0b\u5e8f\u3002</p>\r\n</div>\r\n<a name=\"cn_quick_start\"></a>\r\n<h2>\u5feb\u901f\u5f00\u59cb</h2>\r\n<pre><code class=\"language-python\">\r\nfrom files3 import files\r\nf = files()  # \u4fdd\u5b58py\u6587\u4ef6\u5728\u5f53\u524d\u76ee\u5f55\uff0c\u540e\u7f00\u4e3a'.inst'\r\n&nbsp\r\n## \u4fdd\u5b58python\u5bf9\u8c61\uff08\u4fee\u6539\u4e5f\u662f\u8fd9\u6837\uff09\r\nf.set('a', 1)\r\n&nbsp\r\n## \u68c0\u67e5\u6587\u4ef6\u662f\u5426\u5b58\u5728\r\nf.has('a')  # True\r\n&nbsp\r\n## \u52a0\u8f7dpython\u5bf9\u8c61\r\nprint(f.get('a'))  # 1\r\n&nbsp\r\n## \u5220\u9664\u6587\u4ef6\r\nf.delete('a')\r\n</code></pre>\r\n<p>files(dir:str=\"\", type:str=\".inst\")</p>\r\n<a name=\"cn_advanced\"></a>\r\n<h2>\u9ad8\u7ea7\u7528\u6cd5</h2>\r\n<pre><code class=\"language-python\">\r\nfrom files3 import files\r\nf = files()\r\n&nbsp\r\n## \u4fdd\u5b58\r\nf.a = 1\r\n# f['a'] = 1\r\n&nbsp\r\n## \u52a0\u8f7d\r\nprint(f.a)  # 1\r\n# print(f['a'])  # 1\r\n&nbsp\r\n## \u5220\u9664\r\ndel f.a\r\n# del f['a']\r\n&nbsp\r\n## \u68c0\u67e5\u6587\u4ef6\u662f\u5426\u5b58\u5728\r\n'a' in f  # False\r\n&nbsp\r\n&nbsp\r\n## \u4f7f\u7528\u5176\u4ed6\u952e\u4e0d\u4ec5\u4ec5\u662fstr\uff1a\r\n# 1. tuple or list\r\nf[('a', 'b')] = [1, 2]\r\nprint(f.a, f.b, f['a'], f['b'])  # 1, 2, [1, 2]\r\n&nbsp\r\n# 2. slice\r\nprint(f[:])  # [1, 2]\r\n# print(f[...])  # [1, 2]\r\n&nbsp\r\n# 3. function\r\nprint(f[lambda x: x == 'a'])  # 1\r\n&nbsp\r\n# 4. re\r\nprint(f[re.compile('a')])  # 1\r\n&nbsp\r\ndel f[...]\r\n</code></pre>\r\n<pre><code class=\"language-python\">\r\n# hash\uff1a\u83b7\u53d6\u76ee\u6807\u7684\u6587\u4ef6\u6307\u7eb9\r\nfhash = f.hash('a')\r\n&nbsp\r\n# retype: \u8c03\u6574\u5df2\u6709\u6587\u4ef6\u7684\u540e\u7f00\r\nf.retytpe('.newtype', 'a', 'b', ...)  # f.retype('.newtype')  # \u5168\u90e8\u6587\u4ef6\r\n&nbsp\r\n# relink: \u624b\u52a8\u8c03\u6574\u5df2\u6709\u6587\u4ef6\u7684\u6e90\u4ee3\u7801\u540e\u4f4d\u7f6e\r\nf.retytpe('C:/mycode/code.py', 'a', 'b', ...)  # f.retype('C:/mycode/code.py')  # \u5168\u90e8\u6587\u4ef6\r\n</code></pre>\r\n<a name=\"cn_notice\"></a>\r\n<h2>\u6ce8\u610f</h2>\r\n<p>\u6709\u4e00\u4e9b\u7279\u6b8a\u60c5\u51b5\u4e0d\u80fd\u4fdd\u5b58\uff1a</p>\r\n<ol>\r\n<li>f3bool\u5bf9\u8c61\u548cfiles\u5bf9\u8c61(\u522b\u540dFiles, F3Shell)</li>\r\n<li>\u4e3b\u52a8\u62d2\u7edd\u5e8f\u5217\u5316\u7684\u5bf9\u8c61(\u4f8b\u5982\u6b64\u7c7b\u5bf9\u8c61\u5728\u8bd5\u56fe\u5e8f\u5217\u5316\u65f6\u4f1a\u4e3b\u52a8\u629b\u51faerror)</li>\r\n<li>pickle\u4e0d\u652f\u6301\u7684\u60c5\u51b5(\u4f8b\u5982 module\uff0clambda\uff0clocal function/class (\u90a3\u79cd\u5d4c\u5957\u5728\u5176\u4ed6\u51fd\u6570\u548cclass\u5185\u90e8\u7684))</li>\r\n</ol>\r\n<a name=\"cn_cmd_command\"></a>\r\n<h2>Cmd\u547d\u4ee4</h2>\r\n<pre><code>\r\nf3 [name] [type] -d [dir]  # \u6253\u5f00\u4e00\u4e2afiles3\u5bf9\u8c61\r\nf3open [fpath]  # \u6253\u5f00\u4e00\u4e2afiles3\u5bf9\u8c61\r\nf3assoc [type]  # \u5c06'.type'\u6587\u4ef6\u5173\u8054\u5230'f3open'\u7a0b\u5e8f\r\n</code></pre>\r\n<a name=\"cn_last\"></a>\r\n<h2>\u6700\u540e</h2>\r\n<p>\u8fd9\u786e\u5b9e\u5f88\u65b9\u4fbf\uff0c\u4f46\u662f\u7531\u4e8epickle\u4e0d\u5b89\u5168\uff0c\u56e0\u6b64\u53ef\u80fd\u4e0d\u8981\u4f7f\u7528\u5b83\u6765\u52a0\u8f7d\u60a8\u4e0d\u4fe1\u4efb\u7684\u6587\u4ef6\u3002 \u4f46\u662f\uff0c\u5982\u679c\u60a8\u4e0d\u50cf\u6211\u4e00\u6837\u4e0d\u600e\u4e48\u5173\u5fc3\u5b83\uff0c\u90a3\u4e48\u53ef\u4ee5\u4f7f\u7528\u5b83\u4e3a\u60a8\u5e26\u6765\u826f\u597d\u7684\u7f16\u7a0b\u4f53\u9a8c\u3002</p>\r\n\r\n",
    "bugtrack_url": null,
    "license": "Apache Licence 2.0",
    "summary": "(pickle+lz4 based) save Python objects in binary to the file system and manage them.",
    "version": "0.6.0.1",
    "project_urls": null,
    "split_keywords": [
        "pickle",
        "lz4",
        "file system",
        "file management"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "93a447774997651b96be0d785deb921279561b877c8b4160ca73c66edbec2137",
                "md5": "53a5a76ccb3aa1436bf4fcaf66c8fcd4",
                "sha256": "88c56e75297c324ba1df7622da33a2e6ce7afd00b4f68bb7581b36e08be6c18c"
            },
            "downloads": -1,
            "filename": "files3-0.6.0.1-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "53a5a76ccb3aa1436bf4fcaf66c8fcd4",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3",
            "size": 26200,
            "upload_time": "2024-01-01T03:27:23",
            "upload_time_iso_8601": "2024-01-01T03:27:23.828953Z",
            "url": "https://files.pythonhosted.org/packages/93/a4/47774997651b96be0d785deb921279561b877c8b4160ca73c66edbec2137/files3-0.6.0.1-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7599c935928f6ab9d6b63ec17acdcb739151896bb5dd652ab11313de6a83a55c",
                "md5": "7c7d3da07e63632b63dbdb9bf6997648",
                "sha256": "d930ed3f9fdaeb393805afca81c7499f0f6bea50b13a09f09c22ae8babf44b21"
            },
            "downloads": -1,
            "filename": "files3-0.6.0.1.tar.gz",
            "has_sig": false,
            "md5_digest": "7c7d3da07e63632b63dbdb9bf6997648",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3",
            "size": 25935,
            "upload_time": "2024-01-01T03:27:26",
            "upload_time_iso_8601": "2024-01-01T03:27:26.570480Z",
            "url": "https://files.pythonhosted.org/packages/75/99/c935928f6ab9d6b63ec17acdcb739151896bb5dd652ab11313de6a83a55c/files3-0.6.0.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-01-01 03:27:26",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "lcname": "files3"
}
        
Elapsed time: 0.16016s