-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Osneil Drakes
authored and
Osneil Drakes
committed
Sep 5, 2024
1 parent
3914c69
commit 97da22c
Showing
4 changed files
with
52 additions
and
38 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
from enum import Enum | ||
|
||
|
||
class FamilyColumnsNames(Enum): | ||
"""The fields the GCF data mapper needs to parse family data/ metadata.""" | ||
|
||
APPROVED_REF = "ApprovedRef" | ||
COUNTRIES = "Countries" | ||
ENTITIES = "Entities" | ||
FUNDING = "Funding" | ||
PROJECT_URL = "ProjectURL" | ||
PROJECTS_ID = "ProjectsID" | ||
RESULT_AREAS = "ResultAreas" | ||
SECTOR = "Sector" | ||
THEME = "Theme" | ||
|
||
|
||
class FamilyNestedColumnNames(Enum): | ||
"""The fields the GCF data mapper needs to parse nested family data/ metadata.""" | ||
|
||
AREA = "Area" | ||
BUDGET = "BudgetUSDeq" | ||
NAME = "Name" | ||
REGION = "Region" | ||
SOURCE = "Source" | ||
TYPE = "Type" | ||
|
||
|
||
class GCFProjectBudgetSource(Enum): | ||
"""The source of financing for the project's budget funding""" | ||
|
||
CO_FINANCING = "Co-Financing" | ||
GCF = "GCF" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters