firebirdsql package is a set of Firebird RDBMS (https://firebirdsql.org/) bindings for Python (Written in pure Python : no C compiler needed or fbclient library)
see https://pyfirebirdsql.readthedocs.io/en/latest/
It works on Python 2.7 and 3.7+.
But if you want to use the timezone feature of Firebird 4.0 …
Not supported by python2.7
Python 3.7, 3.8 requires backports.zoneinfo https://pypi.org/project/backports.zoneinfo/ install
Example
import firebirdsql
conn = firebirdsql.connect(
host='localhost',
database='/foo/bar.fdb',
port=3050,
user='alice',
password='secret'
)
cur = conn.cursor()
cur.execute("select * from baz")
for c in cur.fetchall():
print(c)
conn.close()
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
firebirdsql-1.2.6.tar.gz
(71.8 kB
view details)
File details
Details for the file firebirdsql-1.2.6.tar.gz.
File metadata
- Download URL: firebirdsql-1.2.6.tar.gz
- Upload date:
- Size: 71.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via:
twine/3.8.0 colorama/0.4.4 importlib-metadata/4.6.4 keyring/23.5.0 pkginfo/1.8.2 readme-renderer/34.0 requests-toolbelt/0.9.1 requests/2.25.1 rfc3986/1.5.0 tqdm/4.57.0 urllib3/1.26.5 CPython/3.10.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f7f5f8b6125d921df5865ea8023b78827a71a4fa4e7fd157eb514b6f6fe70ca5
|
|
| MD5 |
1a61b67b2b794677504e50e8d978bb12
|
|
| BLAKE2b-256 |
4aa35d20340a47d0d9f3c8213fa9603d49a0adef6f1381143dd58c59c2130b03
|