You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
from api import *
|
|
|
|
if __name__ == "__main__":
|
|
products_json = get_products()
|
|
print(json.dumps(products_json, ensure_ascii=False, indent=2))
|
|
|
|
product1_json = get_product(1)
|
|
print(json.dumps(product1_json, ensure_ascii=False, indent=2))
|