Python wrapper to make interacting with SQL databases easy
Project description
A Python based wrapper (meta-wrapper, even) allowing easy MySQL and SQLite interactions.
Requirements
Python 2.7.3 (this is what I test with, should work with most 2.x; 3.x not guaranteed without porting)
sqlite3 module (comes with Python installs)
Install MySQLdb if you want MySQL support
If you’re using a Debian-like distro (Ubuntu, Debian, Crunchbang, etc), install the package python-mysqldb
$ sudo apt-get install python-mysqldb
There is no pypi package (someone get on this)
If that didn’t work, or you’re not using a Debian-like distro:
Build and install the MySQLdb module from source.
This link explains better than I could.
Verify it’s installed: $ python -c 'import MySQLdb'
If nothing shows up, you’re good!
If you get an ImportError, think, do you really need MySQL?
If yes, this is a problem, and I can’t really help. :(
If you don’t, just use sqlite, it’s much easier.
Usage
Install pysqlw: $ pip install pysqlw
Import pysqlw:
import pysqlw
Create a new instance:
p = pysqlw.pysqlw(db_type="sqlite", db_path="/home/user/example.db")
If you want to use MySQL you need to supply more details:
p = pysqlw.pysqlw(db_type="mysql", db_host="localhost", db_user="username", db_pass="password", db_name="database_name")
Alternatively, you can use it with Python’s with statement.
Documentation is now on the pysqlw readthedocs entry.
Contributing
If you’re interested, you can write extra meta-wrappers for foreign database types. They’re pretty simple, look at the pysqlw wrappers documentation page for an example.
If there’s not a wrapper for a database type you’d like (that is, an actual wrapper, not just a meta-wrapper), you should make one of those and send in some pull requests with meta-wrappers! More coverage is great.
If you wish to help contribute to the base wrapper functions, feel free to fork the github repo and send in pull requests!
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file pysqlw-1.3.1.tar.gz
.
File metadata
- Download URL: pysqlw-1.3.1.tar.gz
- Upload date:
- Size: 6.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 98d6a351b205d648fda4534d9ec8ed369ca455d6c36f9e4de1d81a03f1e5a463 |
|
MD5 | 9da12eaac22893f66ba2cabef25a479d |
|
BLAKE2b-256 | 827322ac0a4cc7dc4eb13ca9f52d52e76c2a30b337d402ccbc1925397fa498ff |