Python wrapper for the Diavgeia Open Data API
Project description
Diavgeia API Client
A Python wrapper for the Diavgeia Open Data API
Table of Contents
Features
Makes easy to:
- Fetch:
- decisions (and their version log)
- organizations (with their respective:
- units like "ΓΡΑΦΕΙΟ ΑΝΤΙΔΗΜΑΡΧΟΥ",
- positions, like "Προϊστάμενος Διεύθυνσης", "Δήμαρχος", etc.
- specific signers
- types (of government actions, like "ΠΡΑΞΕΙΣ ΚΑΝΟΝΙΣΤΙΚΟΥ ΠΕΡΙΕΧΟΜΕΝΟΥ", "ΠΡΑΞΕΙΣ ΟΙΚΟΝΟΜΙΚΟΥ ΠΕΡΙΕΧΟΜΕΝΟΥ", etc.),
- dictionaries where various unique id's are explained, for example:
- "uid": "FEKTYPES" --> "label": "Τύποι τευχών ΦΕΚ"
- Search decisions using advanced criteria (like issue date - Ημερομηνία έκδοσης- or signer - Κωδικός υπογράφοντα -) and their combinations (both a specific signer and a specific date range)
Installation
pip install diavgeia-api
Usage
Overview
As is described in an example, right now there are these methods:
Available methods:
- get_a_decision: Return a specific decision's details.
- get_a_decisions_specific_version: Returns details of a specific version of a decision.
- get_a_decisions_version_log: Returns details of a specific version of a decision.
- get_a_types_details: Returns details of a type.
- get_a_types_summary: Returns a summary of a specific type.
- get_all_types: Returns all existing types.
- get_dictionaries: Return the list of available dictionaries.
- get_dictionary: Return all items for a specific dictionary.
- get_organization: Returns details of a specific organization.
- get_organization_positions: Returns positions of a specific organization.
- get_organization_signers: Returns signers of a specific organization.
- get_organization_units: Returns units of a specific organization.
- get_organizations: Returns a list of registered organizations.
- search_advanced: Search for decisions with advanced query syntax.
- search_decisions: Search for decisions with simple parameters.
Examples
This package includes several examples to help you get started:
- Target a specific decision - Learn how to fetch information about a decision and related entities
- Search for decisions - Examples of using the search functionality
- Work with organizations - Explore organization data
You can find all examples in the examples folder.
Decisions
from diavgeia_api import DiavgeiaClient
# Initialize client
client = DiavgeiaClient()
decision = client.get_a_decision("Ψ11446ΜΓΨ7-ΠΚΛ")
print(f"Subject: {decision.subject}")
print(f"Organization: {decision.organization.label}")
print(f"Decision date: {decision.issue_date}")
Organizations
# Organizations example
organizations = client.get_organizations()
for org in organizations.organizations[:5]:
print(f"{org.label} ({org.uid})")
Types
# Types example
types = client.get_all_types()
for type_item in types.types[:5]:
print(f"{type_item.label} ({type_item.uid})")
# Get details for a specific type
type_details = client.get_a_types_details("Β.1.3")
print(f"Type: {type_details.label}")
print(f"Description: {type_details.description}")
Dictionaries
# Dictionaries example
dictionaries = client.get_dictionaries()
print("Available dictionaries:")
for dictionary in dictionaries.dictionaries[:5]:
print(f"- {dictionary.label} (ID: {dictionary.uid})")
# Get items from a specific dictionary
org_category_dict = client.get_dictionary("ORG_CATEGORY")
print("\nOrganization categories:")
for item in org_category_dict.items[:5]:
print(f"- {item.label} (ID: {item.uid})")
Search
# Simple search example
search_results = client.search_decisions(
term="προμήθεια υπολογιστών",
date_from="2023-01-01",
date_to="2023-12-31"
)
print(f"Found {search_results.info.total} decisions")
for decision in search_results.decisions[:3]:
print(f"- {decision.subject[:50]}... (ΑΔΑ: {decision.ada})")
# Advanced search example
advanced_search = client.search_advanced(
q="subject:(προμήθεια υπολογιστών) AND issueDate:[2023-01-01 TO 2023-12-31] AND organizationUid:6321",
sort="issueDate:desc"
)
print(f"\nAdvanced search found {advanced_search.info.total} decisions")
for decision in advanced_search.decisions[:3]:
print(f"- {decision.subject[:50]}... (ΑΔΑ: {decision.ada})")
Testing
This project uses pytest for testing. To run the tests:
# Install development dependencies
poetry install --with dev
# Run the tests
poetry run pytest
# Run with coverage report
poetry run pytest --cov=diavgeia_api
Contributing
Contributions are welcome! Please feel free to submit a Pull Request.
License
This project is licensed under the MIT License - see the LICENSE file for details.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file diavgeia_api-0.0.2.tar.gz.
File metadata
- Download URL: diavgeia_api-0.0.2.tar.gz
- Upload date:
- Size: 12.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/2.1.2 CPython/3.12.8 Windows/11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3d7df00b301a1bd1cd6ff36b4ac193f70a91532917d09e49c85db8614edc2e4a
|
|
| MD5 |
931afe329148507cde996aa7e22acaab
|
|
| BLAKE2b-256 |
1b3babaff3c6448bd4c58f1b302049ed4fd8de5673cc87801f9900dbdec4935e
|
File details
Details for the file diavgeia_api-0.0.2-py3-none-any.whl.
File metadata
- Download URL: diavgeia_api-0.0.2-py3-none-any.whl
- Upload date:
- Size: 15.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/2.1.2 CPython/3.12.8 Windows/11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9b65942522cd2c6d145ada5a029ac4b098f07d1e5a34a5f916edf5e19bbe4c17
|
|
| MD5 |
da717122e2a43980eaffb8c5865fb7d8
|
|
| BLAKE2b-256 |
5cfc4573d0760044ed4f323f3a24d136b136049d0dab6474ee24e4c6615d7719
|