===========
PythonIrbis
===========
``PythonIrbis`` package is universal client software for IRBIS64 library
automation system (`ManagedIrbis <https://github.com/amironov73/ManagedIrbis>`_
package ported from C# to Python 3). Available on `PyPi <https://pypi.org/project/irbis>`_.
Supported environments
======================
``PythonIrbis`` currently supports Python 3.6 and 3.7 on 32-bit and 64-bit Windows, Linux, Mac OS X and IRBIS64 server version 2014 or later.
Sample program
==============
.. code-block:: python
import cbsvibpyirbis
# Connect to the server
client = irbis.Connection()
client.parse_connection_string('host=127.0.0.1;database=IBIS;' +
'user=librarian;password=secret;')
client.connect()
if not client.connected:
print("Can't connect")
exit(1)
# Search for books written by Byron
found = client.search('"A=Byron$"')
print(f'Records found: {len(found)}')
# Take first 10 records
for mfn in found[:10]:
# Read the record from the server
record = client.read_record(mfn)
# Extract the field and subfield from the record
title = record.fm(200, 'a')
print(f'Title: {title}')
# Format the record by the server
description = client.format_record(irbis.BRIEF, mfn)
print(f'Description: {description}')
print() # Print empty line
# Disconnect from the server
client.disconnect()
Links
=====
* `Builds on AppVeyor <https://ci.appveyor.com/project/AlexeyMironov/pythonirbis/>`_;
Build status
============
|Issues| |Release| |Build| |FOSSA Status| |GitHub Action|
.. |Issues| image:: https://img.shields.io/github/issues/amironov73/PythonIrbis.svg
:target: https://github.com/amironov73/PythonIrbis/issues
:alt: Issues
.. |Release| image:: https://img.shields.io/github/release/amironov73/PythonIrbis.svg
:target: https://github.com/amironov73/PythonIrbis/releases
:alt: Release
.. |Build| image:: https://img.shields.io/appveyor/ci/AlexeyMironov/pythonirbis.svg
:target: https://ci.appveyor.com/project/AlexeyMironov/pythonirbis/
:alt: Build
.. |FOSSA Status| image:: https://app.fossa.io/api/projects/git%2Bgithub.com%2Famironov73%2FPythonIrbis.svg?type=shield
:target: https://app.fossa.io/projects/git%2Bgithub.com%2Famironov73%2FPythonIrbis?ref=badge_shield
:alt: FOSSA Status
.. |GitHub Action| image:: https://github.com/amironov73/PythonIrbis/workflows/Python%20package/badge.svg
:target: https://github.com/amironov73/PythonIrbis/actions
:alt: GitHub Action
License
=======
.. image:: https://app.fossa.io/api/projects/git%2Bgithub.com%2Famironov73%2FPythonIrbis.svg?type=large
:alt: FOSSA Status
:target: https://app.fossa.io/projects/git%2Bgithub.com%2Famironov73%2FPythonIrbis?ref=badge_large
Documentation (in russian)
==========================
* https://pythonirbis.readthedocs.io/
Raw data
{
"_id": null,
"home_page": "https://github.com/amironov73/PythonIrbis",
"name": "cbsvibpyirbis",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3.6",
"maintainer_email": null,
"keywords": "IRBIS64",
"author": "Alexey Mironov",
"author_email": "amironov73@gmail.com",
"download_url": "https://files.pythonhosted.org/packages/af/c9/cad857587ce5079ab322ee86602245c4e26a9955bd81bea8636ef16a1d85/cbsvibpyirbis-0.2.6.tar.gz",
"platform": null,
"description": "===========\nPythonIrbis\n===========\n\n``PythonIrbis`` package is universal client software for IRBIS64 library\nautomation system (`ManagedIrbis <https://github.com/amironov73/ManagedIrbis>`_\npackage ported from C# to Python 3). Available on `PyPi <https://pypi.org/project/irbis>`_.\n\nSupported environments\n======================\n\n``PythonIrbis`` currently supports Python 3.6 and 3.7 on 32-bit and 64-bit Windows, Linux, Mac OS X and IRBIS64 server version 2014 or later.\n\nSample program\n==============\n\n.. code-block:: python\n\n import cbsvibpyirbis\n\n # Connect to the server\n client = irbis.Connection()\n client.parse_connection_string('host=127.0.0.1;database=IBIS;' +\n 'user=librarian;password=secret;')\n client.connect()\n\n if not client.connected:\n print(\"Can't connect\")\n exit(1)\n\n # Search for books written by Byron\n found = client.search('\"A=Byron$\"')\n print(f'Records found: {len(found)}')\n\n # Take first 10 records\n for mfn in found[:10]:\n # Read the record from the server\n record = client.read_record(mfn)\n\n # Extract the field and subfield from the record\n title = record.fm(200, 'a')\n print(f'Title: {title}')\n\n # Format the record by the server\n description = client.format_record(irbis.BRIEF, mfn)\n print(f'Description: {description}')\n\n print() # Print empty line\n\n # Disconnect from the server\n client.disconnect()\n\nLinks\n=====\n\n* `Builds on AppVeyor <https://ci.appveyor.com/project/AlexeyMironov/pythonirbis/>`_;\n\nBuild status\n============\n\n|Issues| |Release| |Build| |FOSSA Status| |GitHub Action|\n\n.. |Issues| image:: https://img.shields.io/github/issues/amironov73/PythonIrbis.svg\n :target: https://github.com/amironov73/PythonIrbis/issues\n :alt: Issues\n\n.. |Release| image:: https://img.shields.io/github/release/amironov73/PythonIrbis.svg\n :target: https://github.com/amironov73/PythonIrbis/releases\n :alt: Release\n\n.. |Build| image:: https://img.shields.io/appveyor/ci/AlexeyMironov/pythonirbis.svg\n :target: https://ci.appveyor.com/project/AlexeyMironov/pythonirbis/\n :alt: Build\n\n.. |FOSSA Status| image:: https://app.fossa.io/api/projects/git%2Bgithub.com%2Famironov73%2FPythonIrbis.svg?type=shield\n :target: https://app.fossa.io/projects/git%2Bgithub.com%2Famironov73%2FPythonIrbis?ref=badge_shield\n :alt: FOSSA Status\n\n.. |GitHub Action| image:: https://github.com/amironov73/PythonIrbis/workflows/Python%20package/badge.svg\n :target: https://github.com/amironov73/PythonIrbis/actions\n :alt: GitHub Action\n\nLicense\n=======\n\n.. image:: https://app.fossa.io/api/projects/git%2Bgithub.com%2Famironov73%2FPythonIrbis.svg?type=large\n :alt: FOSSA Status\n :target: https://app.fossa.io/projects/git%2Bgithub.com%2Famironov73%2FPythonIrbis?ref=badge_large\n\nDocumentation (in russian)\n==========================\n\n* https://pythonirbis.readthedocs.io/\n",
"bugtrack_url": null,
"license": null,
"summary": "Framework for client development for popular Russian library computer system IRBIS64",
"version": "0.2.6",
"project_urls": {
"Documentation": "https://pythonirbis.readthedocs.io",
"Homepage": "https://github.com/amironov73/PythonIrbis",
"Repository": "https://github.com/amironov73/PythonIrbis"
},
"split_keywords": [
"irbis64"
],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "017761ef8072cccfbd2cc31fcfaded65e73286e6b1023681be61dbd4e377e3de",
"md5": "c46f7ac378abe37c194413e2112a0da6",
"sha256": "0c8c6256549bd070bfd9435be1fa2e9143dd01cfc33fe335fd6b7a43cbc7906a"
},
"downloads": -1,
"filename": "cbsvibpyirbis-0.2.6-py3-none-any.whl",
"has_sig": false,
"md5_digest": "c46f7ac378abe37c194413e2112a0da6",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.6",
"size": 69650,
"upload_time": "2025-07-21T10:13:02",
"upload_time_iso_8601": "2025-07-21T10:13:02.986434Z",
"url": "https://files.pythonhosted.org/packages/01/77/61ef8072cccfbd2cc31fcfaded65e73286e6b1023681be61dbd4e377e3de/cbsvibpyirbis-0.2.6-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "afc9cad857587ce5079ab322ee86602245c4e26a9955bd81bea8636ef16a1d85",
"md5": "96ad3cb8e348422716303a3df623529c",
"sha256": "6439beb7205c91658b526fe7f413df1fff48ff0e3d97bd1e6f8f0706516aaf99"
},
"downloads": -1,
"filename": "cbsvibpyirbis-0.2.6.tar.gz",
"has_sig": false,
"md5_digest": "96ad3cb8e348422716303a3df623529c",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.6",
"size": 53696,
"upload_time": "2025-07-21T10:13:04",
"upload_time_iso_8601": "2025-07-21T10:13:04.596680Z",
"url": "https://files.pythonhosted.org/packages/af/c9/cad857587ce5079ab322ee86602245c4e26a9955bd81bea8636ef16a1d85/cbsvibpyirbis-0.2.6.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2025-07-21 10:13:04",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "amironov73",
"github_project": "PythonIrbis",
"github_not_found": true,
"lcname": "cbsvibpyirbis"
}