https://github.com/kupolak/nukat
Python client for searching the NUKAT library catalog
https://github.com/kupolak/nukat
academic beautifulsoup catalog cli-tool koha libraries library nukat opac polish python research-tool web-scraping
Last synced: 16 days ago
JSON representation
Python client for searching the NUKAT library catalog
- Host: GitHub
- URL: https://github.com/kupolak/nukat
- Owner: kupolak
- License: mit
- Created: 2025-12-21T20:34:00.000Z (19 days ago)
- Default Branch: main
- Last Pushed: 2025-12-21T21:07:16.000Z (19 days ago)
- Last Synced: 2025-12-23T09:25:48.274Z (17 days ago)
- Topics: academic, beautifulsoup, catalog, cli-tool, koha, libraries, library, nukat, opac, polish, python, research-tool, web-scraping
- Language: Python
- Homepage:
- Size: 733 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
# Nukat
[](https://github.com/kupolak/nukat/actions/workflows/ci.yml)
[](https://pypi.org/project/nukat/)
[](https://opensource.org/licenses/MIT)
Python client for the NUKAT library catalog.
## Installation
```bash
pip install nukat
```
## Usage
### Command line
```bash
nukat "Python programming"
nukat "Ireneusz Kania" --all
nukat 48685 --id
```
### Python
```python
from nukat import Nukat
client = Nukat()
results = client.search("Python programming")
for result in results:
print(result['title'], result.get('author'))
```
## Search options
```python
# Basic search
client.search("Python", limit=50)
# Search all pages
client.search_all("Ireneusz Kania")
# Filters
client.search("AI", year_from=2020, year_to=2024, language="eng")
# Convenience methods
client.search_by_author("Kowalski Jan")
client.search_by_title("Python in practice")
client.search_by_isbn("978-83-246-1234-5")
# Get full record
client.get_record_details("48685")
```
## Development
```bash
git clone https://github.com/kupolak/nukat.git
cd nukat
pip install -e ".[dev]"
pytest
```
## License
MIT