evemarkettools is a simple python library for pulling price data from the EVE ESI. It also contains functions to convert type_ids, system_ids, region_ids etc. into their respective names and vice versa.
Use the package manager pip to install evemarkettools.
pip install evemarkettools
import evemarkettools as emt
emt.typeNameToID('Sabre') # returns 22456
emt.regionNameToID('The Forge') # returns 10000002
emt.item_price(22456, region_id=10000002, order_type='sell') # returns 63560000
emt.item_quantity_price(22456, quantity=100, region_id=10000002) # returns 6531720000
Check out this colab-notebook to see what other function the library provides and how to use them