You're Invited:Meet the Socket Team at RSAC and BSidesSF 2026, March 23–26.RSVP
Socket
Book a DemoSign in
Socket

pyqb

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

pyqb - pypi Package Compare versions

Comparing version
0.2.3
to
0.2.4
+1
-1
PKG-INFO
Metadata-Version: 1.1
Name: pyqb
Version: 0.2.3
Version: 0.2.4
Summary: Quickbase API Python Wrapper

@@ -5,0 +5,0 @@ Home-page: http://github.com/sjmh/pyqb

Metadata-Version: 1.1
Name: pyqb
Version: 0.2.3
Version: 0.2.4
Summary: Quickbase API Python Wrapper

@@ -5,0 +5,0 @@ Home-page: http://github.com/sjmh/pyqb

@@ -214,2 +214,19 @@ """Python Library for the Quickbase API

# Delete multiple records based on a queryid or table
def purgerecords(self, query=None, qid=None, database=None):
req = {}
if database is None:
database = self.database
if query is not None:
req["query"] = query
elif qid is not None:
req["qid"] = str(qid)
if query is None and qid is None:
raise ResponseError("You must specify a query or qid to delete")
res = self.__request('PurgeRecords', database, req)
return xmltodict.parse(et.tostring(res))['qdbapi']
def importfromcsv(self, recordscsv=None, database=None, clist=None, skipfirst=None, decimalpercent=None):

@@ -216,0 +233,0 @@ req = {}

from setuptools import setup
setup(name='pyqb',
version='0.2.3',
version='0.2.4',
description='Quickbase API Python Wrapper',

@@ -6,0 +6,0 @@ url='http://github.com/sjmh/pyqb',