Skip to main content

Makes working with existing sql databases super easy

Project description

HPDB

Current version: 4.0.5

dbClass

installation

python -m pip install hpdb

usage

settings.ini

[database]
dbhost = myhost.mydomain.com
dbname = database_name
dbuser = database_user
dbpass = secret123

Initializing from ini file

from hpdb import dbClass
db = dbClass.from_inifile('settings.ini')

Initializing directly

db = dbClass(  host, dbname, user, passwd )

SELECT

db.select('users',{'isactive':1} )

LOOKUP SPECIFIC VALUES

db.lookup('users',{'id':15}, ['name', 'active] )

INSERT

db.insert('users', {'name':'john', 'isactive':1})
id = db.last_insert_id()

UPDATE

db.update( 'users', {'name':'john'}, {'active':0})

DELETE

db.delete( 'users', {'name':'john'})

QUERY

db.execute( 'SELECT * FROM users' )

Don't forget to commit when you have an innodb table

db.commit()

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

hpdb-4.0.5.tar.gz (5.0 kB view details)

Uploaded Source

Built Distribution

hpdb-4.0.5-py3-none-any.whl (5.7 kB view details)

Uploaded Python 3

File details

Details for the file hpdb-4.0.5.tar.gz.

File metadata

  • Download URL: hpdb-4.0.5.tar.gz
  • Upload date:
  • Size: 5.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.1

File hashes

Hashes for hpdb-4.0.5.tar.gz
Algorithm Hash digest
SHA256 5545629c0481a8c3f148083baff101231af0dfe62dfebdc420f5ebf11bf56bc3
MD5 f0d79765b0d04f86da946a66640f4567
BLAKE2b-256 dc13b3e01a6e8605120b70e9434df295abef7ab18db68899a0b4a72d0978a5ff

See more details on using hashes here.

File details

Details for the file hpdb-4.0.5-py3-none-any.whl.

File metadata

  • Download URL: hpdb-4.0.5-py3-none-any.whl
  • Upload date:
  • Size: 5.7 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.1

File hashes

Hashes for hpdb-4.0.5-py3-none-any.whl
Algorithm Hash digest
SHA256 2a732e83aea39f1f68fb2b0d02c6f86338594f1609aea5a412e5278e03ae811d
MD5 aaa67f5a069767c7661af50a654af42a
BLAKE2b-256 2d3bff222761eef2e26c32008e8c29547060ff8b7baa69a494d1cb38cac9e859

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page