Useful library
Project description
rn3: Python tools to help manage EEA Reportnet3
This repository contains tools to ineract with Reportnet3.
Requirements
- Windows or Linux operating system
- Python x64 3.8 - 3.12
Installation
From PyPI:
pip install rn3
Use 1: Generate Microsoft SQL script to create data tables based on a dataset in Reportnet3
import rn3
ds = DatasetModel()
ds.from_url(
dataset_id=20822,
api_key="ApiKey 0123456-12345-yyyy-xxxx-zzzzz",
base_url=r"https://sandbox-api.reportnet.europa.eu",
)
sql_cmd = ds.sql_cmd(database_name="EnergyCommunity", schema_name="annex_XXIV")
print(sql_cmd)
output:
USE [EnergyCommunity]
GO
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE TABLE [annex_XXIV].[PaMs](
[Id] [int] IDENTITY(1,1) NOT NULL,
[Title] [nvarchar](500) NOT NULL,
[TitleNational] [nvarchar](500) NULL,
[IsGroup] [int] NOT NULL,
[ListOfSinglePams] [nvarchar](500) NULL,
[ShortDescription] [text] NOT NULL,
[ReportNet3HistoricReleaseId] [int] NOT NULL,
CONSTRAINT [PK_PaMs] PRIMARY KEY CLUSTERED
(
[Id] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
) ON [PRIMARY]
GO
ALTER TABLE [annex_XXIV].[PaMs] WITH NOCHECK ADD CONSTRAINT [FK_PaMs_ReportNet3HistoricReleases] FOREIGN KEY([ReportNet3HistoricReleaseId])
REFERENCES [metadata].[ReportNet3HistoricReleases] ([Id])
ON DELETE CASCADE
GO
ALTER TABLE [annex_XXIV].[PaMs] CHECK CONSTRAINT [FK_PaMs_ReportNet3HistoricReleases]
GO
.
.
.
... for all tables in dataset
Use 2: Write Code List Tables and Reference Data to database
Export Reference Data to excel
import rn3
dsrd = rn3.DatasetReferenceData()
dsrd.from_xlsx(xlsx_filepath="~/Downloads/Reference Dataset - Reference data.xlsx")
dsrd.to_mssql("osprey", "EnergyCommunity", "annex_XXIV")
output
writing table: [annex_XXIV].[dict_Sector]
writing table: [annex_XXIV].[dict_Objectives]
writing table: [annex_XXIV].[dict_UnionPolicies]
writing table: [annex_XXIV].[dict_Dimensions]
writing table: [annex_XXIV].[dict_Currencies]
Export the Codelist to database
ds = rn3.DatasetModel()
ds.from_url(
dataset_id=60425,
api_key="ApiKey 7xxxxxx-fyyyy-4xxxx-azzz-zzzzzzzzz",
base_url=r"https://api.reportnet.europa.eu",
)
ds.sql_codelist_data("osprey", "EnergyCommunity", "annex_XXIV")
output
writing table: [annex_XXIV].[dict_IsGroup]
writing table: [annex_XXIV].[dict_GeographicalCoverage]
writing table: [annex_XXIV].[dict_GHGAffected]
writing table: [annex_XXIV].[dict_TypePolicyInstrument]
writing table: [annex_XXIV].[dict_UnionPolicy]
writing table: [annex_XXIV].[dict_PaMRelateAirQuality]
writing table: [annex_XXIV].[dict_StatusImplementation]
writing table: [annex_XXIV].[dict_ProjectionsScenario]
writing table: [annex_XXIV].[dict_partNDC]
writing table: [annex_XXIV].[dict_Type]
writing table: [annex_XXIV].[dict_PolicyImpacting]
Contributor note
Before commit, run pre-commit hook
pip install pre-commit
pre-commit run -a
Connect to DB using sqlalchmy and odbc
from sqlalchemy import create_engine
servername = "osprey"
dbname = "EnergyCommunity"
engine = create_engine('mssql+pyodbc://@' + servername + '/' + dbname + '?trusted_connection=yes&driver=ODBC Driver 17 for SQL Server')
conn = engine.connect()
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
rn3-0.0.15.tar.gz
(139.4 kB
view details)
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
rn3-0.0.15-py3-none-any.whl
(16.8 kB
view details)
File details
Details for the file rn3-0.0.15.tar.gz.
File metadata
- Download URL: rn3-0.0.15.tar.gz
- Upload date:
- Size: 139.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
73f19a652fd7fcffe80a5119497612347fe80087c58cadcfb43a0e05db777a54
|
|
| MD5 |
904e92ff5eb55c03e2b38b78acbcfd22
|
|
| BLAKE2b-256 |
a10be37fbaf0509066fcb19a908f9a4dcfe8b9dfa18e335d50ae43005db211d0
|
File details
Details for the file rn3-0.0.15-py3-none-any.whl.
File metadata
- Download URL: rn3-0.0.15-py3-none-any.whl
- Upload date:
- Size: 16.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
149bb7544497320d79ab1eb34b26265c04257825c6cdd454f4db927c10525856
|
|
| MD5 |
26b49b9e1f5a8dc12fb4e73c098db58a
|
|
| BLAKE2b-256 |
bf6ee2f401403c51ab550b5265c55209a094233328d4ae09e23de2474651bbcd
|