pyqb
Advanced tools
+1
-1
| 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 |
+17
-0
@@ -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 = {} |
+1
-1
| 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', |
Alert delta unavailable
Currently unable to show alert delta for PyPI packages.
12755
4.72%241
5.7%