Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# SPGCI Python Library

Python Client for the [S&P Global Commodity Insights API](https://developer.platts.com).
Python Client for the [S&P Global Energy (previously S&P Global Commodity Insights) API](https://developer.platts.com).

Looking for more examples? Check out our [Notebook Gallery](https://developer.spglobal.com/commodityinsights/tools/notebooks).

Expand Down Expand Up @@ -421,7 +421,6 @@ egp.get_daily_flow_point_selection(
df = egp.get_overview_hub_balance(
gas_day_gte="2024-10-01",
gas_day_lte="2024-10-31",
average_type="Daily value",
hub="PEG",
uom="MCM",
)
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[tool.poetry]
name = "spgci"
version = "0.0.91"
description = "SPGCI is an API Client for the S&P Commodity Insights REST API"
description = "SPGCI is an API Client for the S&P Global Energy (previously S&P Global Commodity Insights) REST API"
authors = ["S&P Global Commodity Insights <pl_api_support@spglobal.com>"]
license = "Apache-2.0"
readme = "README.md"
Expand Down
4 changes: 3 additions & 1 deletion spgci/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
# limitations under the License.

"""
S&P Global Commodity Insights API\n
S&P Global Energy (previously S&P Global Commodity Insights) API\n
More details available here: https://developer.platts.com

Getting Started
Expand Down Expand Up @@ -50,6 +50,7 @@
from .gas_long_term_supply_and_demand import GasLongTermSupplyAndDemand
from .scenario_manager import ScenarioManager
from .utilities import parallel
from .clean_energy_technology import CleanEnergyTechnology


from .config import username, password, set_credentials, version
Expand Down Expand Up @@ -87,4 +88,5 @@
"GasLongTermSupplyAndDemand",
"ScenarioManager",
"parallel",
"CleanEnergyTechnology",
]
Loading