├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── astra.json ├── controller ├── __init__.py ├── credentials_controller.py ├── spacecraft_instruments_controller.py └── spacecraft_journey_controller.py ├── dao ├── __init__.py ├── session_manager.py ├── spacecraft_journey_catalog_dao.py ├── spacecraft_location_dao.py ├── spacecraft_pressure_dao.py ├── spacecraft_speed_dao.py └── spacecraft_temperature_dao.py ├── getting_started_with_astra.py ├── model ├── __init__.py ├── spacecraft_journey_catalog.py ├── spacecraft_location.py ├── spacecraft_pressure.py ├── spacecraft_speed.py └── spacecraft_temperature.py ├── schema.cql ├── service ├── __init__.py └── astra_service.py └── util ├── __init__.py ├── cql_file_util.py └── data_type_util.py /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | __pycache__ -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataStax-Examples/getting-started-with-astra-python/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataStax-Examples/getting-started-with-astra-python/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataStax-Examples/getting-started-with-astra-python/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataStax-Examples/getting-started-with-astra-python/HEAD/README.md -------------------------------------------------------------------------------- /astra.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataStax-Examples/getting-started-with-astra-python/HEAD/astra.json -------------------------------------------------------------------------------- /controller/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /controller/credentials_controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataStax-Examples/getting-started-with-astra-python/HEAD/controller/credentials_controller.py -------------------------------------------------------------------------------- /controller/spacecraft_instruments_controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataStax-Examples/getting-started-with-astra-python/HEAD/controller/spacecraft_instruments_controller.py -------------------------------------------------------------------------------- /controller/spacecraft_journey_controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataStax-Examples/getting-started-with-astra-python/HEAD/controller/spacecraft_journey_controller.py -------------------------------------------------------------------------------- /dao/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dao/session_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataStax-Examples/getting-started-with-astra-python/HEAD/dao/session_manager.py -------------------------------------------------------------------------------- /dao/spacecraft_journey_catalog_dao.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataStax-Examples/getting-started-with-astra-python/HEAD/dao/spacecraft_journey_catalog_dao.py -------------------------------------------------------------------------------- /dao/spacecraft_location_dao.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataStax-Examples/getting-started-with-astra-python/HEAD/dao/spacecraft_location_dao.py -------------------------------------------------------------------------------- /dao/spacecraft_pressure_dao.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataStax-Examples/getting-started-with-astra-python/HEAD/dao/spacecraft_pressure_dao.py -------------------------------------------------------------------------------- /dao/spacecraft_speed_dao.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataStax-Examples/getting-started-with-astra-python/HEAD/dao/spacecraft_speed_dao.py -------------------------------------------------------------------------------- /dao/spacecraft_temperature_dao.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataStax-Examples/getting-started-with-astra-python/HEAD/dao/spacecraft_temperature_dao.py -------------------------------------------------------------------------------- /getting_started_with_astra.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataStax-Examples/getting-started-with-astra-python/HEAD/getting_started_with_astra.py -------------------------------------------------------------------------------- /model/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /model/spacecraft_journey_catalog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataStax-Examples/getting-started-with-astra-python/HEAD/model/spacecraft_journey_catalog.py -------------------------------------------------------------------------------- /model/spacecraft_location.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataStax-Examples/getting-started-with-astra-python/HEAD/model/spacecraft_location.py -------------------------------------------------------------------------------- /model/spacecraft_pressure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataStax-Examples/getting-started-with-astra-python/HEAD/model/spacecraft_pressure.py -------------------------------------------------------------------------------- /model/spacecraft_speed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataStax-Examples/getting-started-with-astra-python/HEAD/model/spacecraft_speed.py -------------------------------------------------------------------------------- /model/spacecraft_temperature.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataStax-Examples/getting-started-with-astra-python/HEAD/model/spacecraft_temperature.py -------------------------------------------------------------------------------- /schema.cql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataStax-Examples/getting-started-with-astra-python/HEAD/schema.cql -------------------------------------------------------------------------------- /service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /service/astra_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataStax-Examples/getting-started-with-astra-python/HEAD/service/astra_service.py -------------------------------------------------------------------------------- /util/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /util/cql_file_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataStax-Examples/getting-started-with-astra-python/HEAD/util/cql_file_util.py -------------------------------------------------------------------------------- /util/data_type_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataStax-Examples/getting-started-with-astra-python/HEAD/util/data_type_util.py --------------------------------------------------------------------------------