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
# Copyright (c) 2024 Juan Luis Gabriel | |
# This software is released under the MIT License. | |
# https://opensource.org/licenses/MIT | |
"""Aircraft Tracker | |
This program is an open source real-time aircraft tracker that visualizes Aerofly FS4 - (C) Copyright IPACS - | |
flight simulator data on an interactive map. It can be used to track flights, analyze routes, | |
and enhance the overall simulation experience. Key features include: |
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
import requests | |
import math | |
import pandas as pd | |
import flatten_json | |
# instalar flatten_json con: pip install flatten_json | |
# Referencia: https://github.com/amirziai/flatten | |
# parámetros | |
url_api_productos_contar = "https://api.jumpseller.com/v1/products/count.json" |