firebirdsql


Namefirebirdsql JSON
Version 1.2.5 PyPI version JSON
download
home_pagehttp://github.com/nakagami/pyfirebirdsql/
SummaryFirebird RDBMS bindings for python.
upload_time2024-02-23 09:22:19
maintainer
docs_urlNone
authorHajime Nakagami
requires_python
licenseBSD
keywords firebird
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            ================
PyfirebirdSQL
================

.. image:: https://img.shields.io/pypi/v/firebirdsql.png
   :target: https://pypi.python.org/pypi/firebirdsql

.. image:: https://img.shields.io/pypi/l/firebirdsql.png

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()

            

Raw data

            {
    "_id": null,
    "home_page": "http://github.com/nakagami/pyfirebirdsql/",
    "name": "firebirdsql",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "Firebird",
    "author": "Hajime Nakagami",
    "author_email": "nakagami@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/89/4e/5bece793543430d486b1ca6dfef8fef128a2a91784c9b895841360028a85/firebirdsql-1.2.5.tar.gz",
    "platform": null,
    "description": "================\nPyfirebirdSQL\n================\n\n.. image:: https://img.shields.io/pypi/v/firebirdsql.png\n   :target: https://pypi.python.org/pypi/firebirdsql\n\n.. image:: https://img.shields.io/pypi/l/firebirdsql.png\n\nfirebirdsql package is a set of Firebird RDBMS (https://firebirdsql.org/) bindings for Python (Written in pure Python : no C compiler needed or fbclient library)\n\n\nsee https://pyfirebirdsql.readthedocs.io/en/latest/\n\nIt works on Python 2.7 and 3.7+.\n\nBut if you want to use the timezone feature of Firebird 4.0 ...\n\n- Not supported by python2.7\n- Python 3.7, 3.8 requires backports.zoneinfo https://pypi.org/project/backports.zoneinfo/ install\n\nExample\n-----------\n\n::\n\n   import firebirdsql\n   conn = firebirdsql.connect(\n       host='localhost',\n       database='/foo/bar.fdb',\n       port=3050,\n       user='alice',\n       password='secret'\n   )\n   cur = conn.cursor()\n   cur.execute(\"select * from baz\")\n   for c in cur.fetchall():\n       print(c)\n   conn.close()\n",
    "bugtrack_url": null,
    "license": "BSD",
    "summary": "Firebird RDBMS bindings for python.",
    "version": "1.2.5",
    "project_urls": {
        "Homepage": "http://github.com/nakagami/pyfirebirdsql/"
    },
    "split_keywords": [
        "firebird"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "894e5bece793543430d486b1ca6dfef8fef128a2a91784c9b895841360028a85",
                "md5": "7ae834064a1ae49231b322d3c3f8dc8e",
                "sha256": "ac47a347379352a270742927fea6f509bdf4a30654a471950e49ea2db990d401"
            },
            "downloads": -1,
            "filename": "firebirdsql-1.2.5.tar.gz",
            "has_sig": false,
            "md5_digest": "7ae834064a1ae49231b322d3c3f8dc8e",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 71440,
            "upload_time": "2024-02-23T09:22:19",
            "upload_time_iso_8601": "2024-02-23T09:22:19.501476Z",
            "url": "https://files.pythonhosted.org/packages/89/4e/5bece793543430d486b1ca6dfef8fef128a2a91784c9b895841360028a85/firebirdsql-1.2.5.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-02-23 09:22:19",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "nakagami",
    "github_project": "pyfirebirdsql",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "firebirdsql"
}
        
Elapsed time: 0.22566s