Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/klarh/pyqaxe
https://github.com/klarh/pyqaxe
Last synced: 9 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/klarh/pyqaxe
- Owner: klarh
- License: bsd-3-clause
- Created: 2023-05-30T17:20:42.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2023-05-30T17:21:00.000Z (over 1 year ago)
- Last Synced: 2024-11-06T17:57:49.574Z (about 2 months ago)
- Language: Python
- Size: 59.6 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.rst
- License: LICENSE.txt
Awesome Lists containing this project
README
========
Overview
========`pyqaxe` is a library to facilitate unifying data access from a
variety of sources. The basic idea is to expose data through custom
tables and adapters using python's `sqlite3` module.::
cache = pyqaxe.Cache()
cache.index(pyqaxe.mines.Directory())
cache.index(pyqaxe.mines.GTAR())for (positions,) in cache.query(
'select data from gtar_records where name = "position"'):
pass # do something with positions arrayInstallation
============Use the typical distutils procedure::
python setup.py install
Examples
========Usage examples go in the `examples` directory.