• 大小: 69KB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2021-05-21
  • 语言: Python
  • 标签: Python  数据库  

资源简介

misiemens thinydb Python实现数据库,是进阶学习python的好资料!

资源截图

代码片段和文件信息

# coding=utf-8
from setuptools import setup find_packages
from codecs import open
import os


def read(fname):
    path = os.path.join(os.path.dirname(__file__) fname)
    return open(path encoding=‘utf-8‘).read()


setup(
    name=“tinydb“
    version=“3.2.2“
    packages=find_packages()

    # development metadata
    zip_safe=True

    # metadata for upload to PyPI
    author=“Markus Siemens“
    author_email=“markus@m-siemens.de“
    description=“TinyDB is a tiny document oriented database optimized for “
                “your happiness :)“
    license=“MIT“
    keywords=“database nosql“
    url=“https://github.com/msiemens/tinydb“
    classifiers=[
        “Development Status :: 5 - Production/Stable“
        “Intended Audience :: Developers“
        “Intended Audience :: System Administrators“
        “License :: OSI Approved :: MIT License“
        “Topic :: Database“
        “Topic :: Database :: Database Engines/Servers“
        “Topic :: Utilities“
        “Programming Language :: Python :: 2.6“
        “Programming Language :: Python :: 2.7“
        “Programming Language :: Python :: 3.3“
        “Programming Language :: Python :: 3.4“
        “Programming Language :: Python :: 3.5“
        “Programming Language :: Python :: 3.6“
        “Programming Language :: Python :: Implementation :: PyPy“
        “Operating System :: OS Independent“
    ]

    long_description=read(‘README.rst‘)


 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2017-04-02 19:51  tinydb-master\
     文件         178  2017-04-02 19:51  tinydb-master\.coveragerc
     文件         342  2017-04-02 19:51  tinydb-master\.gitignore
     文件         369  2017-04-02 19:51  tinydb-master\.travis.yml
     文件        1836  2017-04-02 19:51  tinydb-master\CONTRIBUTING.rst
     文件        1080  2017-04-02 19:51  tinydb-master\LICENSE
     文件       14804  2017-04-02 19:51  tinydb-master\README.rst
     目录           0  2017-04-02 19:51  tinydb-master\artwork\
     文件        3298  2017-04-02 19:51  tinydb-master\artwork\logo.png
     文件        2985  2017-04-02 19:51  tinydb-master\artwork\logo.svg
     目录           0  2017-04-02 19:51  tinydb-master\docs\
     文件           7  2017-04-02 19:51  tinydb-master\docs\.gitignore
     文件        6762  2017-04-02 19:51  tinydb-master\docs\Makefile
     目录           0  2017-04-02 19:51  tinydb-master\docs\_static\
     文件        3298  2017-04-02 19:51  tinydb-master\docs\_static\logo.png
     目录           0  2017-04-02 19:51  tinydb-master\docs\_templates\
     文件         332  2017-04-02 19:51  tinydb-master\docs\_templates\links.html
     文件         134  2017-04-02 19:51  tinydb-master\docs\_templates\sidebarlogo.html
     目录           0  2017-04-02 19:51  tinydb-master\docs\_themes\
     文件          22  2017-04-02 19:51  tinydb-master\docs\_themes\.gitignore
     文件        1789  2017-04-02 19:51  tinydb-master\docs\_themes\LICENSE
     文件        1093  2017-04-02 19:51  tinydb-master\docs\_themes\README
     目录           0  2017-04-02 19:51  tinydb-master\docs\_themes\flask\
     文件         846  2017-04-02 19:51  tinydb-master\docs\_themes\flask\layout.html
     文件         518  2017-04-02 19:51  tinydb-master\docs\_themes\flask\page.html
     文件         501  2017-04-02 19:51  tinydb-master\docs\_themes\flask\relations.html
     目录           0  2017-04-02 19:51  tinydb-master\docs\_themes\flask\static\
     文件        9578  2017-04-02 19:51  tinydb-master\docs\_themes\flask\static\flasky.css_t
     文件          97  2017-04-02 19:51  tinydb-master\docs\_themes\flask\theme.conf
     文件        4875  2017-04-02 19:51  tinydb-master\docs\_themes\flask_theme_support.py
     文件        2277  2017-04-02 19:51  tinydb-master\docs\api.rst
............此处省略30个文件信息

评论

共有 条评论