├── .env ├── .gitignore ├── LICENSE ├── Procfile ├── README.md ├── main.py ├── requirements.txt └── src ├── connections_db ├── connections_cryptocurrencies.py ├── create_database.py └── get_data_local.py ├── get_data_internet.py ├── get_price_cryptocurrencies.py ├── lists.py └── updateValues.py /.env: -------------------------------------------------------------------------------- 1 | API_KEY='' -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramonpaolo/api-b3/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramonpaolo/api-b3/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramonpaolo/api-b3/HEAD/Procfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramonpaolo/api-b3/HEAD/README.md -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramonpaolo/api-b3/HEAD/main.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramonpaolo/api-b3/HEAD/requirements.txt -------------------------------------------------------------------------------- /src/connections_db/connections_cryptocurrencies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramonpaolo/api-b3/HEAD/src/connections_db/connections_cryptocurrencies.py -------------------------------------------------------------------------------- /src/connections_db/create_database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramonpaolo/api-b3/HEAD/src/connections_db/create_database.py -------------------------------------------------------------------------------- /src/connections_db/get_data_local.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramonpaolo/api-b3/HEAD/src/connections_db/get_data_local.py -------------------------------------------------------------------------------- /src/get_data_internet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramonpaolo/api-b3/HEAD/src/get_data_internet.py -------------------------------------------------------------------------------- /src/get_price_cryptocurrencies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramonpaolo/api-b3/HEAD/src/get_price_cryptocurrencies.py -------------------------------------------------------------------------------- /src/lists.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramonpaolo/api-b3/HEAD/src/lists.py -------------------------------------------------------------------------------- /src/updateValues.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramonpaolo/api-b3/HEAD/src/updateValues.py --------------------------------------------------------------------------------