Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hellfish2/sqlite3.buildout
SQLite3 Buildout
https://github.com/hellfish2/sqlite3.buildout
Last synced: 1 day ago
JSON representation
SQLite3 Buildout
- Host: GitHub
- URL: https://github.com/hellfish2/sqlite3.buildout
- Owner: hellfish2
- License: gpl-2.0
- Created: 2014-06-12T14:23:50.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2014-06-12T14:50:07.000Z (over 10 years ago)
- Last Synced: 2024-11-11T11:13:18.867Z (2 months ago)
- Language: Python
- Size: 148 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.rst
- License: LICENSE
Awesome Lists containing this project
README
sqlite3.buildout
================Configuración de buildout para el compilar e instalar SQLite3
Requerimientos
==============Estos son los requerimientos mínimos de instalación: ::
aptitude install gcc g++ make tar unzip bzip2 libssl-dev libxml2-dev zlib1g-dev libjpeg62-dev libreadline6-dev readline-common wv xpdf-utils python2.7-dev libxslt1-dev
Inicialización del proyecto
===========================Para la inicialización del proyecto Buildout, ejecute el siguiente comando: ::
python bootstrap.py
Construcción del proyecto
=========================Para la construcción del proyecto Buildout, ejecute el siguiente comando: ::
./bin/buildout
Ejecutar SQLite3
================Para ejecutar la base de datos SQLite3, ejecute el siguiente comando: ::
./bin/sqlite3
SQLite3 en Python
=================Para manipular la base de datos SQLite3 en lenguaje programacion Python, ejecute el siguiente comando: ::
./bin/ipy-sqlite
>>> from pysqlite2 import dbapi2 as sqlite3
>>> sqlite3.sqlite_version
'3.8.2'