| 注册
请输入搜索内容

热门搜索

Java Linux MySQL PHP JavaScript Hibernate jQuery Nginx
jopen
10年前发布

用Python编写基于Web的SQLite数据库浏览器:sqlite-browser

用Python编写基于Web的SQLite数据库浏览器:sqlite-browser
sqlite-browser是一个用Python编写基于Web的SQLite数据库浏览器。

项目依赖

安装:

$ pip install sqlite-browser flask peewee

使用:

$ sqlite_browser /path/to/database.db

特性:

  • 可用于您现有的SQLite数据库,或者可以用来创建新的数据库
  • Add or drop:
    • Tables
    • Columns (yes, you can drop and rename columns!)
    • Indexes
    </li>
  • 导出数据成JSON或CSV.
  • 导入JSON 或CSV 文件.
  • 浏览表中的数据。
  • </ul>

    截屏

    The index page shows some basic information about the database, including the number of tables and indexes, as well as its size on disk:

    The structure tab displays information about the structure of the table, including columns, indexes, and foreign keys (if any exist). From this page you can also create, rename or drop columns and indexes.

    The content tab displays all the table data. Links in the table header can be used to sort the data:

    The query tab allows you to execute arbitrary SQL queries on a table. The query results are displayed in a table and can be exported to either JSON or CSV:

    The import tab supports importing CSV and JSON files into a table. There is an option to automatically create columns for any unrecognized keys in the import file:



    项目主页:http://www.open-open.com/lib/view/home/1415511633637

     

 本文由用户 jopen 自行上传分享,仅供网友学习交流。所有权归原作者,若您的权利被侵害,请联系管理员。
 转载本站原创文章,请注明出处,并保留原始链接、图片水印。
 本站是一个以用户分享为主的开源技术平台,欢迎各类分享!
 本文地址:https://www.open-open.com/lib/view/open1415511633637.html
数据库管理工具 sqlite-browser