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 d79237c1-8942-44b9-b6df-2ef20fca66a4",
base_url=r"https://sandbox-api.reportnet.europa.eu",
)
sql_cmd = ds.sql_cmd(self, 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
Contributor note
Before commit, run pre-commit hook
pip install pre-commit
re-commit run -a
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.11.tar.gz
(136.2 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.11-py3-none-any.whl
(15.1 kB
view details)
File details
Details for the file rn3-0.0.11.tar.gz.
File metadata
- Download URL: rn3-0.0.11.tar.gz
- Upload date:
- Size: 136.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
12e712d0ff83bef3e7ced6b21e7134913c768d541c003ce53663964408e08ed6
|
|
| MD5 |
d147baee6061546efdcd4d5393efef64
|
|
| BLAKE2b-256 |
105ef22e6cb1dc2e3ea79297b0655ea11b5f9221348d41625d790e8f76c46b5b
|
File details
Details for the file rn3-0.0.11-py3-none-any.whl.
File metadata
- Download URL: rn3-0.0.11-py3-none-any.whl
- Upload date:
- Size: 15.1 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 |
814d49b54c24a66597e4b0b4dc9a4cda316cd53167d71d94678663614b10a6ac
|
|
| MD5 |
67ea83c239d2039379dfc745295017b9
|
|
| BLAKE2b-256 |
c32f3a9cd69be46186cf117cc99f0093da41f0a50ce75f6030480f1708e0717c
|