getdango 0.0.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- getdango-0.0.1/CHANGELOG.md +48 -0
- getdango-0.0.1/LICENSE +201 -0
- getdango-0.0.1/MANIFEST.in +18 -0
- getdango-0.0.1/PKG-INFO +300 -0
- getdango-0.0.1/README.md +146 -0
- getdango-0.0.1/dango/__init__.py +12 -0
- getdango-0.0.1/dango/cli/__init__.py +5 -0
- getdango-0.0.1/dango/cli/db_helpers.py +123 -0
- getdango-0.0.1/dango/cli/env_helpers.py +336 -0
- getdango-0.0.1/dango/cli/init.py +815 -0
- getdango-0.0.1/dango/cli/main.py +3252 -0
- getdango-0.0.1/dango/cli/model_wizard.py +519 -0
- getdango-0.0.1/dango/cli/oauth.py +436 -0
- getdango-0.0.1/dango/cli/schema_manager.py +361 -0
- getdango-0.0.1/dango/cli/source_wizard.py +665 -0
- getdango-0.0.1/dango/cli/utils.py +780 -0
- getdango-0.0.1/dango/cli/validate.py +549 -0
- getdango-0.0.1/dango/cli/wizard.py +309 -0
- getdango-0.0.1/dango/config/__init__.py +49 -0
- getdango-0.0.1/dango/config/exceptions.py +25 -0
- getdango-0.0.1/dango/config/loader.py +288 -0
- getdango-0.0.1/dango/config/models.py +406 -0
- getdango-0.0.1/dango/ingestion/__init__.py +18 -0
- getdango-0.0.1/dango/ingestion/csv_loader.py +749 -0
- getdango-0.0.1/dango/ingestion/dlt_runner.py +1257 -0
- getdango-0.0.1/dango/ingestion/dlt_sources/__init__.py +11 -0
- getdango-0.0.1/dango/ingestion/dlt_sources/airtable/README.md +87 -0
- getdango-0.0.1/dango/ingestion/dlt_sources/airtable/__init__.py +68 -0
- getdango-0.0.1/dango/ingestion/dlt_sources/asana_dlt/README.md +69 -0
- getdango-0.0.1/dango/ingestion/dlt_sources/asana_dlt/__init__.py +264 -0
- getdango-0.0.1/dango/ingestion/dlt_sources/asana_dlt/helpers.py +17 -0
- getdango-0.0.1/dango/ingestion/dlt_sources/asana_dlt/settings.py +144 -0
- getdango-0.0.1/dango/ingestion/dlt_sources/chess/README.md +64 -0
- getdango-0.0.1/dango/ingestion/dlt_sources/chess/__init__.py +167 -0
- getdango-0.0.1/dango/ingestion/dlt_sources/chess/helpers.py +21 -0
- getdango-0.0.1/dango/ingestion/dlt_sources/chess/settings.py +4 -0
- getdango-0.0.1/dango/ingestion/dlt_sources/facebook_ads/README.md +72 -0
- getdango-0.0.1/dango/ingestion/dlt_sources/facebook_ads/__init__.py +214 -0
- getdango-0.0.1/dango/ingestion/dlt_sources/facebook_ads/exceptions.py +5 -0
- getdango-0.0.1/dango/ingestion/dlt_sources/facebook_ads/helpers.py +256 -0
- getdango-0.0.1/dango/ingestion/dlt_sources/facebook_ads/settings.py +192 -0
- getdango-0.0.1/dango/ingestion/dlt_sources/facebook_ads/utils.py +49 -0
- getdango-0.0.1/dango/ingestion/dlt_sources/freshdesk/README.md +71 -0
- getdango-0.0.1/dango/ingestion/dlt_sources/freshdesk/__init__.py +76 -0
- getdango-0.0.1/dango/ingestion/dlt_sources/freshdesk/freshdesk_client.py +102 -0
- getdango-0.0.1/dango/ingestion/dlt_sources/freshdesk/settings.py +9 -0
- getdango-0.0.1/dango/ingestion/dlt_sources/github/README.md +60 -0
- getdango-0.0.1/dango/ingestion/dlt_sources/github/__init__.py +149 -0
- getdango-0.0.1/dango/ingestion/dlt_sources/github/helpers.py +193 -0
- getdango-0.0.1/dango/ingestion/dlt_sources/github/queries.py +115 -0
- getdango-0.0.1/dango/ingestion/dlt_sources/github/settings.py +10 -0
- getdango-0.0.1/dango/ingestion/dlt_sources/google_ads/README.md +88 -0
- getdango-0.0.1/dango/ingestion/dlt_sources/google_ads/__init__.py +163 -0
- getdango-0.0.1/dango/ingestion/dlt_sources/google_ads/helpers/__init__.py +0 -0
- getdango-0.0.1/dango/ingestion/dlt_sources/google_ads/helpers/data_processing.py +20 -0
- getdango-0.0.1/dango/ingestion/dlt_sources/google_ads/setup_script_gcp_oauth.py +55 -0
- getdango-0.0.1/dango/ingestion/dlt_sources/google_analytics/README.md +59 -0
- getdango-0.0.1/dango/ingestion/dlt_sources/google_analytics/__init__.py +153 -0
- getdango-0.0.1/dango/ingestion/dlt_sources/google_analytics/helpers/__init__.py +72 -0
- getdango-0.0.1/dango/ingestion/dlt_sources/google_analytics/helpers/data_processing.py +189 -0
- getdango-0.0.1/dango/ingestion/dlt_sources/google_analytics/settings.py +3 -0
- getdango-0.0.1/dango/ingestion/dlt_sources/google_analytics/setup_script_gcp_oauth.py +55 -0
- getdango-0.0.1/dango/ingestion/dlt_sources/google_sheets/README.md +97 -0
- getdango-0.0.1/dango/ingestion/dlt_sources/google_sheets/__init__.py +152 -0
- getdango-0.0.1/dango/ingestion/dlt_sources/google_sheets/helpers/__init__.py +1 -0
- getdango-0.0.1/dango/ingestion/dlt_sources/google_sheets/helpers/api_calls.py +147 -0
- getdango-0.0.1/dango/ingestion/dlt_sources/google_sheets/helpers/data_processing.py +349 -0
- getdango-0.0.1/dango/ingestion/dlt_sources/google_sheets/setup_script_gcp_oauth.py +61 -0
- getdango-0.0.1/dango/ingestion/dlt_sources/hubspot/README.md +76 -0
- getdango-0.0.1/dango/ingestion/dlt_sources/hubspot/__init__.py +537 -0
- getdango-0.0.1/dango/ingestion/dlt_sources/hubspot/helpers.py +251 -0
- getdango-0.0.1/dango/ingestion/dlt_sources/hubspot/settings.py +130 -0
- getdango-0.0.1/dango/ingestion/dlt_sources/hubspot/utils.py +29 -0
- getdango-0.0.1/dango/ingestion/dlt_sources/inbox/README.md +101 -0
- getdango-0.0.1/dango/ingestion/dlt_sources/inbox/__init__.py +179 -0
- getdango-0.0.1/dango/ingestion/dlt_sources/inbox/helpers.py +186 -0
- getdango-0.0.1/dango/ingestion/dlt_sources/inbox/settings.py +5 -0
- getdango-0.0.1/dango/ingestion/dlt_sources/jira/README.md +80 -0
- getdango-0.0.1/dango/ingestion/dlt_sources/jira/__init__.py +138 -0
- getdango-0.0.1/dango/ingestion/dlt_sources/jira/settings.py +30 -0
- getdango-0.0.1/dango/ingestion/dlt_sources/kafka/README.md +82 -0
- getdango-0.0.1/dango/ingestion/dlt_sources/kafka/__init__.py +134 -0
- getdango-0.0.1/dango/ingestion/dlt_sources/kafka/helpers.py +262 -0
- getdango-0.0.1/dango/ingestion/dlt_sources/kafka/sources/kafka/__init__.py +0 -0
- getdango-0.0.1/dango/ingestion/dlt_sources/kinesis/README.md +82 -0
- getdango-0.0.1/dango/ingestion/dlt_sources/kinesis/__init__.py +130 -0
- getdango-0.0.1/dango/ingestion/dlt_sources/kinesis/helpers.py +63 -0
- getdango-0.0.1/dango/ingestion/dlt_sources/matomo/README.md +81 -0
- getdango-0.0.1/dango/ingestion/dlt_sources/matomo/__init__.py +223 -0
- getdango-0.0.1/dango/ingestion/dlt_sources/matomo/helpers/__init__.py +1 -0
- getdango-0.0.1/dango/ingestion/dlt_sources/matomo/helpers/data_processing.py +104 -0
- getdango-0.0.1/dango/ingestion/dlt_sources/matomo/helpers/matomo_client.py +170 -0
- getdango-0.0.1/dango/ingestion/dlt_sources/matomo/settings.py +3 -0
- getdango-0.0.1/dango/ingestion/dlt_sources/mongodb/README.md +81 -0
- getdango-0.0.1/dango/ingestion/dlt_sources/mongodb/__init__.py +164 -0
- getdango-0.0.1/dango/ingestion/dlt_sources/mongodb/helpers.py +665 -0
- getdango-0.0.1/dango/ingestion/dlt_sources/mux/README.md +56 -0
- getdango-0.0.1/dango/ingestion/dlt_sources/mux/__init__.py +88 -0
- getdango-0.0.1/dango/ingestion/dlt_sources/mux/settings.py +4 -0
- getdango-0.0.1/dango/ingestion/dlt_sources/notion/README.md +52 -0
- getdango-0.0.1/dango/ingestion/dlt_sources/notion/__init__.py +84 -0
- getdango-0.0.1/dango/ingestion/dlt_sources/notion/helpers/__init__.py +0 -0
- getdango-0.0.1/dango/ingestion/dlt_sources/notion/helpers/client.py +164 -0
- getdango-0.0.1/dango/ingestion/dlt_sources/notion/helpers/database.py +78 -0
- getdango-0.0.1/dango/ingestion/dlt_sources/notion/settings.py +3 -0
- getdango-0.0.1/dango/ingestion/dlt_sources/personio/README.md +87 -0
- getdango-0.0.1/dango/ingestion/dlt_sources/personio/__init__.py +330 -0
- getdango-0.0.1/dango/ingestion/dlt_sources/personio/helpers.py +85 -0
- getdango-0.0.1/dango/ingestion/dlt_sources/personio/settings.py +2 -0
- getdango-0.0.1/dango/ingestion/dlt_sources/pipedrive/README.md +78 -0
- getdango-0.0.1/dango/ingestion/dlt_sources/pipedrive/__init__.py +200 -0
- getdango-0.0.1/dango/ingestion/dlt_sources/pipedrive/helpers/__init__.py +20 -0
- getdango-0.0.1/dango/ingestion/dlt_sources/pipedrive/helpers/custom_fields_munger.py +102 -0
- getdango-0.0.1/dango/ingestion/dlt_sources/pipedrive/helpers/pages.py +115 -0
- getdango-0.0.1/dango/ingestion/dlt_sources/pipedrive/settings.py +29 -0
- getdango-0.0.1/dango/ingestion/dlt_sources/pipedrive/typing.py +4 -0
- getdango-0.0.1/dango/ingestion/dlt_sources/salesforce/README.md +131 -0
- getdango-0.0.1/dango/ingestion/dlt_sources/salesforce/__init__.py +148 -0
- getdango-0.0.1/dango/ingestion/dlt_sources/salesforce/helpers/__init__.py +0 -0
- getdango-0.0.1/dango/ingestion/dlt_sources/salesforce/helpers/client.py +214 -0
- getdango-0.0.1/dango/ingestion/dlt_sources/salesforce/helpers/records.py +121 -0
- getdango-0.0.1/dango/ingestion/dlt_sources/salesforce/settings.py +4 -0
- getdango-0.0.1/dango/ingestion/dlt_sources/shopify_dlt/README.md +61 -0
- getdango-0.0.1/dango/ingestion/dlt_sources/shopify_dlt/__init__.py +228 -0
- getdango-0.0.1/dango/ingestion/dlt_sources/shopify_dlt/exceptions.py +2 -0
- getdango-0.0.1/dango/ingestion/dlt_sources/shopify_dlt/helpers.py +146 -0
- getdango-0.0.1/dango/ingestion/dlt_sources/shopify_dlt/settings.py +5 -0
- getdango-0.0.1/dango/ingestion/dlt_sources/slack/README.md +95 -0
- getdango-0.0.1/dango/ingestion/dlt_sources/slack/__init__.py +288 -0
- getdango-0.0.1/dango/ingestion/dlt_sources/slack/helpers.py +205 -0
- getdango-0.0.1/dango/ingestion/dlt_sources/slack/settings.py +22 -0
- getdango-0.0.1/dango/ingestion/dlt_sources/strapi/README.md +58 -0
- getdango-0.0.1/dango/ingestion/dlt_sources/strapi/__init__.py +33 -0
- getdango-0.0.1/dango/ingestion/dlt_sources/strapi/helpers.py +42 -0
- getdango-0.0.1/dango/ingestion/dlt_sources/strapi/settings.py +1 -0
- getdango-0.0.1/dango/ingestion/dlt_sources/stripe_analytics/README.md +60 -0
- getdango-0.0.1/dango/ingestion/dlt_sources/stripe_analytics/__init__.py +118 -0
- getdango-0.0.1/dango/ingestion/dlt_sources/stripe_analytics/helpers.py +68 -0
- getdango-0.0.1/dango/ingestion/dlt_sources/stripe_analytics/metrics.py +95 -0
- getdango-0.0.1/dango/ingestion/dlt_sources/stripe_analytics/schemas.py +311 -0
- getdango-0.0.1/dango/ingestion/dlt_sources/stripe_analytics/settings.py +15 -0
- getdango-0.0.1/dango/ingestion/dlt_sources/workable/README.md +83 -0
- getdango-0.0.1/dango/ingestion/dlt_sources/workable/__init__.py +119 -0
- getdango-0.0.1/dango/ingestion/dlt_sources/workable/settings.py +30 -0
- getdango-0.0.1/dango/ingestion/dlt_sources/workable/workable_client.py +96 -0
- getdango-0.0.1/dango/ingestion/dlt_sources/zendesk/README.md +67 -0
- getdango-0.0.1/dango/ingestion/dlt_sources/zendesk/__init__.py +462 -0
- getdango-0.0.1/dango/ingestion/dlt_sources/zendesk/helpers/__init__.py +25 -0
- getdango-0.0.1/dango/ingestion/dlt_sources/zendesk/helpers/api_helpers.py +106 -0
- getdango-0.0.1/dango/ingestion/dlt_sources/zendesk/helpers/credentials.py +52 -0
- getdango-0.0.1/dango/ingestion/dlt_sources/zendesk/helpers/talk_api.py +116 -0
- getdango-0.0.1/dango/ingestion/dlt_sources/zendesk/settings.py +70 -0
- getdango-0.0.1/dango/ingestion/sources/__init__.py +9 -0
- getdango-0.0.1/dango/ingestion/sources/registry.py +1390 -0
- getdango-0.0.1/dango/platform/__init__.py +12 -0
- getdango-0.0.1/dango/platform/__main__.py +10 -0
- getdango-0.0.1/dango/platform/docker.py +380 -0
- getdango-0.0.1/dango/platform/network.py +509 -0
- getdango-0.0.1/dango/platform/watcher.py +531 -0
- getdango-0.0.1/dango/platform/watcher_runner.py +315 -0
- getdango-0.0.1/dango/templates/Dockerfile.metabase +40 -0
- getdango-0.0.1/dango/templates/__init__.py +5 -0
- getdango-0.0.1/dango/templates/dbt/schema.yml.j2 +21 -0
- getdango-0.0.1/dango/templates/dbt/sources.yml.j2 +48 -0
- getdango-0.0.1/dango/templates/dbt/staging_model.sql.j2 +31 -0
- getdango-0.0.1/dango/templates/docker-compose.yml.j2 +46 -0
- getdango-0.0.1/dango/templates/nginx.conf.j2 +110 -0
- getdango-0.0.1/dango/transformation/__init__.py +113 -0
- getdango-0.0.1/dango/transformation/generator.py +528 -0
- getdango-0.0.1/dango/utils/__init__.py +24 -0
- getdango-0.0.1/dango/utils/activity_log.py +54 -0
- getdango-0.0.1/dango/utils/data_validation.py +312 -0
- getdango-0.0.1/dango/utils/database.py +30 -0
- getdango-0.0.1/dango/utils/db_health.py +244 -0
- getdango-0.0.1/dango/utils/dbt_lock.py +236 -0
- getdango-0.0.1/dango/utils/dbt_status.py +106 -0
- getdango-0.0.1/dango/utils/sync_history.py +58 -0
- getdango-0.0.1/dango/visualization/__init__.py +9 -0
- getdango-0.0.1/dango/visualization/dashboard_manager.py +1102 -0
- getdango-0.0.1/dango/visualization/metabase.py +1046 -0
- getdango-0.0.1/dango/web/__init__.py +9 -0
- getdango-0.0.1/dango/web/app.py +2819 -0
- getdango-0.0.1/dango/web/static/css/main.css +200 -0
- getdango-0.0.1/dango/web/static/health.html +425 -0
- getdango-0.0.1/dango/web/static/index.html +528 -0
- getdango-0.0.1/dango/web/static/js/app.js +2154 -0
- getdango-0.0.1/dango/web/static/js/logs.js +473 -0
- getdango-0.0.1/dango/web/static/logs.html +251 -0
- getdango-0.0.1/getdango.egg-info/PKG-INFO +300 -0
- getdango-0.0.1/getdango.egg-info/SOURCES.txt +194 -0
- getdango-0.0.1/getdango.egg-info/dependency_links.txt +1 -0
- getdango-0.0.1/getdango.egg-info/entry_points.txt +2 -0
- getdango-0.0.1/getdango.egg-info/requires.txt +160 -0
- getdango-0.0.1/getdango.egg-info/top_level.txt +1 -0
- getdango-0.0.1/pyproject.toml +210 -0
- getdango-0.0.1/setup.cfg +4 -0
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
All notable changes to Dango will be documented in this file.
|
|
4
|
+
|
|
5
|
+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
6
|
+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
|
+
|
|
8
|
+
## [Unreleased]
|
|
9
|
+
|
|
10
|
+
## [0.0.1] - 2025-11-14
|
|
11
|
+
|
|
12
|
+
### Added
|
|
13
|
+
- Initial pre-MVP preview release
|
|
14
|
+
- CLI framework with 9 core commands
|
|
15
|
+
- CSV and Stripe data source integration (fully tested)
|
|
16
|
+
- dbt auto-generation for staging models
|
|
17
|
+
- Web UI with FastAPI backend and live monitoring
|
|
18
|
+
- Metabase integration with auto-setup
|
|
19
|
+
- File watcher with auto-triggers for CSV and dbt changes
|
|
20
|
+
- Interactive wizards for project setup and source configuration
|
|
21
|
+
- DuckDB as embedded analytics database
|
|
22
|
+
- Docker Compose orchestration for services
|
|
23
|
+
|
|
24
|
+
### Core Commands
|
|
25
|
+
- `dango init` - Initialize new project with interactive wizard
|
|
26
|
+
- `dango source add/list/remove` - Manage data sources
|
|
27
|
+
- `dango sync` - Load data from sources with auto-dbt generation
|
|
28
|
+
- `dango start/stop/status` - Service management
|
|
29
|
+
- `dango run` - Run dbt transformations
|
|
30
|
+
- `dango model add` - Create intermediate/marts models with wizard
|
|
31
|
+
- `dango dashboard export/import` - Dashboard version control
|
|
32
|
+
- `dango validate` - Comprehensive project validation
|
|
33
|
+
- `dango config` - Configuration management
|
|
34
|
+
|
|
35
|
+
### Known Limitations
|
|
36
|
+
- **Only CSV and Stripe sources tested** in v0.0.1
|
|
37
|
+
- Other dlt sources available but not verified
|
|
38
|
+
- OAuth sources (Google Ads, Meta Ads, GA4, Shopify) planned for v0.1.0
|
|
39
|
+
- REST API framework for custom sources planned for v0.1.0
|
|
40
|
+
- Bootstrap installer script coming in v0.1.0
|
|
41
|
+
- Demo project coming in v0.1.0
|
|
42
|
+
|
|
43
|
+
### Notes
|
|
44
|
+
This is a **preview release** for early feedback. Not recommended for production use.
|
|
45
|
+
Full MVP (v0.1.0) with OAuth and complete documentation targeted for late November 2025.
|
|
46
|
+
|
|
47
|
+
[Unreleased]: https://github.com/getdango/dango/compare/v0.0.1...HEAD
|
|
48
|
+
[0.0.1]: https://github.com/getdango/dango/releases/tag/v0.0.1
|
getdango-0.0.1/LICENSE
ADDED
|
@@ -0,0 +1,201 @@
|
|
|
1
|
+
Apache License
|
|
2
|
+
Version 2.0, January 2004
|
|
3
|
+
http://www.apache.org/licenses/
|
|
4
|
+
|
|
5
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
6
|
+
|
|
7
|
+
1. Definitions.
|
|
8
|
+
|
|
9
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
|
10
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
|
11
|
+
|
|
12
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
|
13
|
+
the copyright owner that is granting the License.
|
|
14
|
+
|
|
15
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
|
16
|
+
other entities that control, are controlled by, or are under common
|
|
17
|
+
control with that entity. For the purposes of this definition,
|
|
18
|
+
"control" means (i) the power, direct or indirect, to cause the
|
|
19
|
+
direction or management of such entity, whether by contract or
|
|
20
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
|
21
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
|
22
|
+
|
|
23
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
|
24
|
+
exercising permissions granted by this License.
|
|
25
|
+
|
|
26
|
+
"Source" form shall mean the preferred form for making modifications,
|
|
27
|
+
including but not limited to software source code, documentation
|
|
28
|
+
source, and configuration files.
|
|
29
|
+
|
|
30
|
+
"Object" form shall mean any form resulting from mechanical
|
|
31
|
+
transformation or translation of a Source form, including but
|
|
32
|
+
not limited to compiled object code, generated documentation,
|
|
33
|
+
and conversions to other media types.
|
|
34
|
+
|
|
35
|
+
"Work" shall mean the work of authorship, whether in Source or
|
|
36
|
+
Object form, made available under the License, as indicated by a
|
|
37
|
+
copyright notice that is included in or attached to the work
|
|
38
|
+
(an example is provided in the Appendix below).
|
|
39
|
+
|
|
40
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
|
41
|
+
form, that is based on (or derived from) the Work and for which the
|
|
42
|
+
editorial revisions, annotations, elaborations, or other modifications
|
|
43
|
+
represent, as a whole, an original work of authorship. For the purposes
|
|
44
|
+
of this License, Derivative Works shall not include works that remain
|
|
45
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
|
46
|
+
the Work and Derivative Works thereof.
|
|
47
|
+
|
|
48
|
+
"Contribution" shall mean any work of authorship, including
|
|
49
|
+
the original version of the Work and any modifications or additions
|
|
50
|
+
to that Work or Derivative Works thereof, that is intentionally
|
|
51
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
|
52
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
|
53
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
|
54
|
+
means any form of electronic, verbal, or written communication sent
|
|
55
|
+
to the Licensor or its representatives, including but not limited to
|
|
56
|
+
communication on electronic mailing lists, source code control systems,
|
|
57
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
|
58
|
+
Licensor for the purpose of discussing and improving the Work, but
|
|
59
|
+
excluding communication that is conspicuously marked or otherwise
|
|
60
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
|
61
|
+
|
|
62
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
|
63
|
+
on behalf of whom a Contribution has been received by Licensor and
|
|
64
|
+
subsequently incorporated within the Work.
|
|
65
|
+
|
|
66
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
|
67
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
68
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
69
|
+
copyright license to reproduce, prepare Derivative Works of,
|
|
70
|
+
publicly display, publicly perform, sublicense, and distribute the
|
|
71
|
+
Work and such Derivative Works in Source or Object form.
|
|
72
|
+
|
|
73
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
|
74
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
75
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
76
|
+
(except as stated in this section) patent license to make, have made,
|
|
77
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
|
78
|
+
where such license applies only to those patent claims licensable
|
|
79
|
+
by such Contributor that are necessarily infringed by their
|
|
80
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
|
81
|
+
with the Work to which such Contribution(s) was submitted. If You
|
|
82
|
+
institute patent litigation against any entity (including a
|
|
83
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
|
84
|
+
or a Contribution incorporated within the Work constitutes direct
|
|
85
|
+
or contributory patent infringement, then any patent licenses
|
|
86
|
+
granted to You under this License for that Work shall terminate
|
|
87
|
+
as of the date such litigation is filed.
|
|
88
|
+
|
|
89
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
|
90
|
+
Work or Derivative Works thereof in any medium, with or without
|
|
91
|
+
modifications, and in Source or Object form, provided that You
|
|
92
|
+
meet the following conditions:
|
|
93
|
+
|
|
94
|
+
(a) You must give any other recipients of the Work or
|
|
95
|
+
Derivative Works a copy of this License; and
|
|
96
|
+
|
|
97
|
+
(b) You must cause any modified files to carry prominent notices
|
|
98
|
+
stating that You changed the files; and
|
|
99
|
+
|
|
100
|
+
(c) You must retain, in the Source form of any Derivative Works
|
|
101
|
+
that You distribute, all copyright, patent, trademark, and
|
|
102
|
+
attribution notices from the Source form of the Work,
|
|
103
|
+
excluding those notices that do not pertain to any part of
|
|
104
|
+
the Derivative Works; and
|
|
105
|
+
|
|
106
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
|
107
|
+
distribution, then any Derivative Works that You distribute must
|
|
108
|
+
include a readable copy of the attribution notices contained
|
|
109
|
+
within such NOTICE file, excluding those notices that do not
|
|
110
|
+
pertain to any part of the Derivative Works, in at least one
|
|
111
|
+
of the following places: within a NOTICE text file distributed
|
|
112
|
+
as part of the Derivative Works; within the Source form or
|
|
113
|
+
documentation, if provided along with the Derivative Works; or,
|
|
114
|
+
within a display generated by the Derivative Works, if and
|
|
115
|
+
wherever such third-party notices normally appear. The contents
|
|
116
|
+
of the NOTICE file are for informational purposes only and
|
|
117
|
+
do not modify the License. You may add Your own attribution
|
|
118
|
+
notices within Derivative Works that You distribute, alongside
|
|
119
|
+
or as an addendum to the NOTICE text from the Work, provided
|
|
120
|
+
that such additional attribution notices cannot be construed
|
|
121
|
+
as modifying the License.
|
|
122
|
+
|
|
123
|
+
You may add Your own copyright statement to Your modifications and
|
|
124
|
+
may provide additional or different license terms and conditions
|
|
125
|
+
for use, reproduction, or distribution of Your modifications, or
|
|
126
|
+
for any such Derivative Works as a whole, provided Your use,
|
|
127
|
+
reproduction, and distribution of the Work otherwise complies with
|
|
128
|
+
the conditions stated in this License.
|
|
129
|
+
|
|
130
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
131
|
+
any Contribution intentionally submitted for inclusion in the Work
|
|
132
|
+
by You to the Licensor shall be under the terms and conditions of
|
|
133
|
+
this License, without any additional terms or conditions.
|
|
134
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
|
135
|
+
the terms of any separate license agreement you may have executed
|
|
136
|
+
with Licensor regarding such Contributions.
|
|
137
|
+
|
|
138
|
+
6. Trademarks. This License does not grant permission to use the trade
|
|
139
|
+
names, trademarks, service marks, or product names of the Licensor,
|
|
140
|
+
except as required for reasonable and customary use in describing the
|
|
141
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
|
142
|
+
|
|
143
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
|
144
|
+
agreed to in writing, Licensor provides the Work (and each
|
|
145
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
146
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
147
|
+
implied, including, without limitation, any warranties or conditions
|
|
148
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
149
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
150
|
+
appropriateness of using or redistributing the Work and assume any
|
|
151
|
+
risks associated with Your exercise of permissions under this License.
|
|
152
|
+
|
|
153
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
|
154
|
+
whether in tort (including negligence), contract, or otherwise,
|
|
155
|
+
unless required by applicable law (such as deliberate and grossly
|
|
156
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
|
157
|
+
liable to You for damages, including any direct, indirect, special,
|
|
158
|
+
incidental, or consequential damages of any character arising as a
|
|
159
|
+
result of this License or out of the use or inability to use the
|
|
160
|
+
Work (including but not limited to damages for loss of goodwill,
|
|
161
|
+
work stoppage, computer failure or malfunction, or any and all
|
|
162
|
+
other commercial damages or losses), even if such Contributor
|
|
163
|
+
has been advised of the possibility of such damages.
|
|
164
|
+
|
|
165
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
|
166
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
|
167
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
|
168
|
+
or other liability obligations and/or rights consistent with this
|
|
169
|
+
License. However, in accepting such obligations, You may act only
|
|
170
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
|
171
|
+
of any other Contributor, and only if You agree to indemnify,
|
|
172
|
+
defend, and hold each Contributor harmless for any liability
|
|
173
|
+
incurred by, or claims asserted against, such Contributor by reason
|
|
174
|
+
of your accepting any such warranty or additional liability.
|
|
175
|
+
|
|
176
|
+
END OF TERMS AND CONDITIONS
|
|
177
|
+
|
|
178
|
+
APPENDIX: How to apply the Apache License to your work.
|
|
179
|
+
|
|
180
|
+
To apply the Apache License to your work, attach the following
|
|
181
|
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
|
182
|
+
replaced with your own identifying information. (Don't include
|
|
183
|
+
the brackets!) The text should be enclosed in the appropriate
|
|
184
|
+
comment syntax for the file format. We also recommend that a
|
|
185
|
+
file or class name and description of purpose be included on the
|
|
186
|
+
same "printed page" as the copyright notice for easier
|
|
187
|
+
identification within third-party archives.
|
|
188
|
+
|
|
189
|
+
Copyright [yyyy] [name of copyright owner]
|
|
190
|
+
|
|
191
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
192
|
+
you may not use this file except in compliance with the License.
|
|
193
|
+
You may obtain a copy of the License at
|
|
194
|
+
|
|
195
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
196
|
+
|
|
197
|
+
Unless required by applicable law or agreed to in writing, software
|
|
198
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
199
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
200
|
+
See the License for the specific language governing permissions and
|
|
201
|
+
limitations under the License.
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
# Include documentation and license files
|
|
2
|
+
include README.md
|
|
3
|
+
include LICENSE
|
|
4
|
+
include CHANGELOG.md
|
|
5
|
+
|
|
6
|
+
# Include all template files
|
|
7
|
+
recursive-include dango/templates *
|
|
8
|
+
|
|
9
|
+
# Include all web static files
|
|
10
|
+
recursive-include dango/web/static *
|
|
11
|
+
|
|
12
|
+
# Include dlt source files (README, helpers, settings)
|
|
13
|
+
recursive-include dango/ingestion/dlt_sources *
|
|
14
|
+
|
|
15
|
+
# Exclude Python cache and compiled files
|
|
16
|
+
global-exclude __pycache__
|
|
17
|
+
global-exclude *.py[cod]
|
|
18
|
+
global-exclude .DS_Store
|
getdango-0.0.1/PKG-INFO
ADDED
|
@@ -0,0 +1,300 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: getdango
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Local-first data platform - Laptop to cloud data stack in one weekend
|
|
5
|
+
Author-email: Dango Team <hello@getdango.dev>
|
|
6
|
+
License: Apache-2.0
|
|
7
|
+
Project-URL: Homepage, https://getdango.dev
|
|
8
|
+
Project-URL: Documentation, https://docs.getdango.dev
|
|
9
|
+
Project-URL: Repository, https://github.com/getdango/dango
|
|
10
|
+
Project-URL: Issues, https://github.com/getdango/dango/issues
|
|
11
|
+
Keywords: data,analytics,dbt,duckdb,metabase,etl,local-first
|
|
12
|
+
Classifier: Development Status :: 3 - Alpha
|
|
13
|
+
Classifier: Intended Audience :: Developers
|
|
14
|
+
Classifier: Intended Audience :: Information Technology
|
|
15
|
+
Classifier: License :: OSI Approved :: Apache Software License
|
|
16
|
+
Classifier: Programming Language :: Python :: 3
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
18
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
19
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
20
|
+
Classifier: Topic :: Database
|
|
21
|
+
Classifier: Topic :: Scientific/Engineering :: Information Analysis
|
|
22
|
+
Requires-Python: >=3.10
|
|
23
|
+
Description-Content-Type: text/markdown
|
|
24
|
+
License-File: LICENSE
|
|
25
|
+
Requires-Dist: duckdb~=1.1.0
|
|
26
|
+
Requires-Dist: dbt-core~=1.8.0
|
|
27
|
+
Requires-Dist: dbt-duckdb~=1.8.0
|
|
28
|
+
Requires-Dist: dlt[duckdb]~=1.2.0
|
|
29
|
+
Requires-Dist: click>=8.1.7
|
|
30
|
+
Requires-Dist: pyyaml>=6.0.1
|
|
31
|
+
Requires-Dist: pydantic>=2.0.0
|
|
32
|
+
Requires-Dist: python-dotenv>=1.0.0
|
|
33
|
+
Requires-Dist: jinja2>=3.1.4
|
|
34
|
+
Requires-Dist: watchdog>=5.0.0
|
|
35
|
+
Requires-Dist: rich>=13.7.0
|
|
36
|
+
Requires-Dist: inquirer>=3.4.0
|
|
37
|
+
Requires-Dist: requests>=2.31.0
|
|
38
|
+
Requires-Dist: httpx>=0.27.0
|
|
39
|
+
Requires-Dist: fastapi>=0.109.0
|
|
40
|
+
Requires-Dist: uvicorn[standard]>=0.27.0
|
|
41
|
+
Requires-Dist: python-multipart>=0.0.9
|
|
42
|
+
Requires-Dist: websockets>=12.0
|
|
43
|
+
Requires-Dist: aiofiles>=23.2.0
|
|
44
|
+
Requires-Dist: psutil>=5.9.0
|
|
45
|
+
Provides-Extra: dev
|
|
46
|
+
Requires-Dist: pytest>=8.0.0; extra == "dev"
|
|
47
|
+
Requires-Dist: pytest-cov>=5.0.0; extra == "dev"
|
|
48
|
+
Requires-Dist: black>=24.0.0; extra == "dev"
|
|
49
|
+
Requires-Dist: ruff>=0.6.0; extra == "dev"
|
|
50
|
+
Requires-Dist: mypy>=1.11.0; extra == "dev"
|
|
51
|
+
Provides-Extra: facebook-ads
|
|
52
|
+
Requires-Dist: dlt[facebook_ads]>=1.2.0; extra == "facebook-ads"
|
|
53
|
+
Provides-Extra: google-ads
|
|
54
|
+
Requires-Dist: dlt[google_ads]>=1.2.0; extra == "google-ads"
|
|
55
|
+
Provides-Extra: google-analytics
|
|
56
|
+
Requires-Dist: dlt[google_analytics]>=1.2.0; extra == "google-analytics"
|
|
57
|
+
Provides-Extra: google-sheets
|
|
58
|
+
Requires-Dist: dlt[google_sheets]>=1.2.0; extra == "google-sheets"
|
|
59
|
+
Provides-Extra: matomo
|
|
60
|
+
Requires-Dist: dlt[matomo]>=1.2.0; extra == "matomo"
|
|
61
|
+
Provides-Extra: mux
|
|
62
|
+
Requires-Dist: dlt[mux]>=1.2.0; extra == "mux"
|
|
63
|
+
Provides-Extra: airtable
|
|
64
|
+
Requires-Dist: dlt[airtable]>=1.2.0; extra == "airtable"
|
|
65
|
+
Provides-Extra: hubspot
|
|
66
|
+
Requires-Dist: dlt[hubspot]>=1.2.0; extra == "hubspot"
|
|
67
|
+
Provides-Extra: salesforce
|
|
68
|
+
Requires-Dist: dlt[salesforce]>=1.2.0; extra == "salesforce"
|
|
69
|
+
Provides-Extra: pipedrive
|
|
70
|
+
Requires-Dist: dlt[pipedrive]>=1.2.0; extra == "pipedrive"
|
|
71
|
+
Provides-Extra: freshdesk
|
|
72
|
+
Requires-Dist: dlt[freshdesk]>=1.2.0; extra == "freshdesk"
|
|
73
|
+
Provides-Extra: zendesk
|
|
74
|
+
Requires-Dist: dlt[zendesk]>=1.2.0; extra == "zendesk"
|
|
75
|
+
Provides-Extra: jira
|
|
76
|
+
Requires-Dist: dlt[jira]>=1.2.0; extra == "jira"
|
|
77
|
+
Provides-Extra: workable
|
|
78
|
+
Requires-Dist: dlt[workable]>=1.2.0; extra == "workable"
|
|
79
|
+
Provides-Extra: asana
|
|
80
|
+
Requires-Dist: dlt[asana_dlt]>=1.2.0; extra == "asana"
|
|
81
|
+
Provides-Extra: stripe
|
|
82
|
+
Requires-Dist: dlt[stripe]>=1.2.0; extra == "stripe"
|
|
83
|
+
Provides-Extra: shopify
|
|
84
|
+
Requires-Dist: dlt[shopify_dlt]>=1.2.0; extra == "shopify"
|
|
85
|
+
Provides-Extra: notion
|
|
86
|
+
Requires-Dist: dlt[notion]>=1.2.0; extra == "notion"
|
|
87
|
+
Provides-Extra: inbox
|
|
88
|
+
Requires-Dist: dlt[inbox]>=1.2.0; extra == "inbox"
|
|
89
|
+
Provides-Extra: mongodb
|
|
90
|
+
Requires-Dist: dlt[mongodb]>=1.2.0; extra == "mongodb"
|
|
91
|
+
Provides-Extra: kafka
|
|
92
|
+
Requires-Dist: dlt[kafka]>=1.2.0; extra == "kafka"
|
|
93
|
+
Provides-Extra: kinesis
|
|
94
|
+
Requires-Dist: dlt[kinesis]>=1.2.0; extra == "kinesis"
|
|
95
|
+
Provides-Extra: github
|
|
96
|
+
Requires-Dist: dlt[github]>=1.2.0; extra == "github"
|
|
97
|
+
Provides-Extra: slack
|
|
98
|
+
Requires-Dist: dlt[slack]>=1.2.0; extra == "slack"
|
|
99
|
+
Provides-Extra: chess
|
|
100
|
+
Requires-Dist: dlt[chess]>=1.2.0; extra == "chess"
|
|
101
|
+
Provides-Extra: strapi
|
|
102
|
+
Requires-Dist: dlt[strapi]>=1.2.0; extra == "strapi"
|
|
103
|
+
Provides-Extra: personio
|
|
104
|
+
Requires-Dist: dlt[personio]>=1.2.0; extra == "personio"
|
|
105
|
+
Provides-Extra: marketing
|
|
106
|
+
Requires-Dist: dlt[facebook_ads]>=1.2.0; extra == "marketing"
|
|
107
|
+
Requires-Dist: dlt[google_ads]>=1.2.0; extra == "marketing"
|
|
108
|
+
Requires-Dist: dlt[google_analytics]>=1.2.0; extra == "marketing"
|
|
109
|
+
Requires-Dist: dlt[google_sheets]>=1.2.0; extra == "marketing"
|
|
110
|
+
Requires-Dist: dlt[matomo]>=1.2.0; extra == "marketing"
|
|
111
|
+
Requires-Dist: dlt[mux]>=1.2.0; extra == "marketing"
|
|
112
|
+
Requires-Dist: dlt[airtable]>=1.2.0; extra == "marketing"
|
|
113
|
+
Provides-Extra: crm
|
|
114
|
+
Requires-Dist: dlt[hubspot]>=1.2.0; extra == "crm"
|
|
115
|
+
Requires-Dist: dlt[salesforce]>=1.2.0; extra == "crm"
|
|
116
|
+
Requires-Dist: dlt[pipedrive]>=1.2.0; extra == "crm"
|
|
117
|
+
Requires-Dist: dlt[freshdesk]>=1.2.0; extra == "crm"
|
|
118
|
+
Requires-Dist: dlt[zendesk]>=1.2.0; extra == "crm"
|
|
119
|
+
Requires-Dist: dlt[jira]>=1.2.0; extra == "crm"
|
|
120
|
+
Requires-Dist: dlt[workable]>=1.2.0; extra == "crm"
|
|
121
|
+
Requires-Dist: dlt[asana_dlt]>=1.2.0; extra == "crm"
|
|
122
|
+
Provides-Extra: ecommerce
|
|
123
|
+
Requires-Dist: dlt[stripe]>=1.2.0; extra == "ecommerce"
|
|
124
|
+
Requires-Dist: dlt[shopify_dlt]>=1.2.0; extra == "ecommerce"
|
|
125
|
+
Provides-Extra: all-sources
|
|
126
|
+
Requires-Dist: dlt[facebook_ads]>=1.2.0; extra == "all-sources"
|
|
127
|
+
Requires-Dist: dlt[google_ads]>=1.2.0; extra == "all-sources"
|
|
128
|
+
Requires-Dist: dlt[google_analytics]>=1.2.0; extra == "all-sources"
|
|
129
|
+
Requires-Dist: dlt[google_sheets]>=1.2.0; extra == "all-sources"
|
|
130
|
+
Requires-Dist: dlt[matomo]>=1.2.0; extra == "all-sources"
|
|
131
|
+
Requires-Dist: dlt[mux]>=1.2.0; extra == "all-sources"
|
|
132
|
+
Requires-Dist: dlt[airtable]>=1.2.0; extra == "all-sources"
|
|
133
|
+
Requires-Dist: dlt[hubspot]>=1.2.0; extra == "all-sources"
|
|
134
|
+
Requires-Dist: dlt[salesforce]>=1.2.0; extra == "all-sources"
|
|
135
|
+
Requires-Dist: dlt[pipedrive]>=1.2.0; extra == "all-sources"
|
|
136
|
+
Requires-Dist: dlt[freshdesk]>=1.2.0; extra == "all-sources"
|
|
137
|
+
Requires-Dist: dlt[zendesk]>=1.2.0; extra == "all-sources"
|
|
138
|
+
Requires-Dist: dlt[jira]>=1.2.0; extra == "all-sources"
|
|
139
|
+
Requires-Dist: dlt[workable]>=1.2.0; extra == "all-sources"
|
|
140
|
+
Requires-Dist: dlt[asana_dlt]>=1.2.0; extra == "all-sources"
|
|
141
|
+
Requires-Dist: dlt[stripe]>=1.2.0; extra == "all-sources"
|
|
142
|
+
Requires-Dist: dlt[shopify_dlt]>=1.2.0; extra == "all-sources"
|
|
143
|
+
Requires-Dist: dlt[notion]>=1.2.0; extra == "all-sources"
|
|
144
|
+
Requires-Dist: dlt[inbox]>=1.2.0; extra == "all-sources"
|
|
145
|
+
Requires-Dist: dlt[mongodb]>=1.2.0; extra == "all-sources"
|
|
146
|
+
Requires-Dist: dlt[kafka]>=1.2.0; extra == "all-sources"
|
|
147
|
+
Requires-Dist: dlt[kinesis]>=1.2.0; extra == "all-sources"
|
|
148
|
+
Requires-Dist: dlt[github]>=1.2.0; extra == "all-sources"
|
|
149
|
+
Requires-Dist: dlt[slack]>=1.2.0; extra == "all-sources"
|
|
150
|
+
Requires-Dist: dlt[chess]>=1.2.0; extra == "all-sources"
|
|
151
|
+
Requires-Dist: dlt[strapi]>=1.2.0; extra == "all-sources"
|
|
152
|
+
Requires-Dist: dlt[personio]>=1.2.0; extra == "all-sources"
|
|
153
|
+
Dynamic: license-file
|
|
154
|
+
|
|
155
|
+
# 🍡 Dango
|
|
156
|
+
|
|
157
|
+
**Production-ready analytics platform in minutes, not weeks**
|
|
158
|
+
|
|
159
|
+
Dango deploys a complete data stack (DuckDB + dbt + Metabase) to your laptop with one command.
|
|
160
|
+
|
|
161
|
+
## Status
|
|
162
|
+
|
|
163
|
+
🚀 **MVP Development** - 75% Complete | Target Release: **November 29, 2025**
|
|
164
|
+
|
|
165
|
+
- ✅ **Implemented:** CLI (9 commands), 29 data sources, Web UI, dbt auto-generation
|
|
166
|
+
- ⏳ **Remaining:** Auto-triggers, demo project, bootstrap script, PyPI packaging
|
|
167
|
+
- 📅 **Timeline:** 4 weeks to v0.1.0 release (see [TIMELINE.md](TIMELINE.md))
|
|
168
|
+
|
|
169
|
+
## Quick Start (Coming Soon)
|
|
170
|
+
|
|
171
|
+
```bash
|
|
172
|
+
# One-line install
|
|
173
|
+
curl -sSL getdango.dev/bootstrap | bash -s my-analytics
|
|
174
|
+
|
|
175
|
+
# Interactive setup
|
|
176
|
+
cd my-analytics
|
|
177
|
+
dango init .
|
|
178
|
+
|
|
179
|
+
# Add data sources
|
|
180
|
+
dango source add # Interactive wizard
|
|
181
|
+
|
|
182
|
+
# Start platform
|
|
183
|
+
dango start
|
|
184
|
+
|
|
185
|
+
# Load data
|
|
186
|
+
dango sync
|
|
187
|
+
|
|
188
|
+
# Open dashboards
|
|
189
|
+
open http://my-analytics.dango
|
|
190
|
+
```
|
|
191
|
+
|
|
192
|
+
## Features
|
|
193
|
+
|
|
194
|
+
### ✅ Implemented
|
|
195
|
+
- **CLI Framework:** 9 commands (`init`, `start`, `stop`, `status`, `info`, `config`, `source`, `sync`, `dashboard`)
|
|
196
|
+
- **Data Sources:** 29 sources integrated (27 dlt verified sources + CSV + REST API)
|
|
197
|
+
- **Web UI:** FastAPI backend with live pipeline monitoring
|
|
198
|
+
- **dbt Auto-Generation:** Automatically generate staging models from source schemas
|
|
199
|
+
- **Metabase Dashboards:** API-based dashboard provisioning
|
|
200
|
+
- **Incremental Loading:** CSV with metadata tracking and 4 dedup strategies
|
|
201
|
+
- **Config Validation:** Pydantic-based schema validation with friendly errors
|
|
202
|
+
|
|
203
|
+
### 🚧 Coming in v0.1.0 (MVP Release: Nov 29)
|
|
204
|
+
- **Network Architecture:** `<project>.dango` domains with shared port 80
|
|
205
|
+
- **Auto-Triggers:** File watcher with 10-minute debounce → auto-sync → auto-dbt
|
|
206
|
+
- **Demo Project:** Sample data + pre-built dashboards (`dango demo create`)
|
|
207
|
+
- **Dashboard Persistence:** Export/import workflow for git
|
|
208
|
+
- **Metabase Auto-Setup:** Zero-config with auto-login and organization branding
|
|
209
|
+
- **dbt Modeling Wizard:** Template-based fact/dimension table creation
|
|
210
|
+
- **OAuth Helpers:** Guided flows for Facebook, Google
|
|
211
|
+
- **Bootstrap Install:** One-command setup via curl
|
|
212
|
+
- **PyPI Package:** Install via `pip install dango-data`
|
|
213
|
+
|
|
214
|
+
### 📋 Post-MVP (v0.2+)
|
|
215
|
+
- Orchestration with Prefect Cloud
|
|
216
|
+
- Cloud deployment options (Railway, Render, DigitalOcean)
|
|
217
|
+
- Advanced monitoring and alerting
|
|
218
|
+
- Multi-user collaboration features
|
|
219
|
+
|
|
220
|
+
## Architecture
|
|
221
|
+
|
|
222
|
+
**Data Layers:**
|
|
223
|
+
- `raw` - Immutable source of truth (with metadata)
|
|
224
|
+
- `staging` - Clean, deduplicated data
|
|
225
|
+
- `intermediate` - Reusable business logic
|
|
226
|
+
- `marts` - Final business metrics
|
|
227
|
+
|
|
228
|
+
**Tech Stack:**
|
|
229
|
+
- **DuckDB** - Analytics database (embedded, fast)
|
|
230
|
+
- **dbt** - SQL transformations
|
|
231
|
+
- **dlt** - API integrations (29 sources: 27 verified + CSV + REST)
|
|
232
|
+
- **Metabase** - BI dashboards
|
|
233
|
+
- **Docker** - Service orchestration
|
|
234
|
+
- **FastAPI** - Web UI backend
|
|
235
|
+
- **nginx** - Reverse proxy with domain routing
|
|
236
|
+
|
|
237
|
+
## Target Users
|
|
238
|
+
|
|
239
|
+
- Solo data professionals
|
|
240
|
+
- Fractional consultants
|
|
241
|
+
- SMEs needing analytics fast
|
|
242
|
+
- Anyone who wants a "real" data stack without the complexity
|
|
243
|
+
|
|
244
|
+
## Why Dango?
|
|
245
|
+
|
|
246
|
+
**Most tools force you to choose:**
|
|
247
|
+
- ❌ Local-first (limited features) OR Cloud (expensive, complex)
|
|
248
|
+
- ❌ No-code (inflexible) OR Full-code (steep learning curve)
|
|
249
|
+
- ❌ Fast setup (toy project) OR Production-grade (weeks of work)
|
|
250
|
+
|
|
251
|
+
**Dango gives you both:**
|
|
252
|
+
- ✅ Local-first AND production-ready
|
|
253
|
+
- ✅ Wizard-driven AND fully customizable
|
|
254
|
+
- ✅ Fast setup AND best practices built-in
|
|
255
|
+
|
|
256
|
+
## Development
|
|
257
|
+
|
|
258
|
+
```bash
|
|
259
|
+
# Clone repo
|
|
260
|
+
git clone https://github.com/getdango/dango
|
|
261
|
+
cd dango
|
|
262
|
+
|
|
263
|
+
# Install in development mode
|
|
264
|
+
pip install -e ".[dev]"
|
|
265
|
+
|
|
266
|
+
# Run CLI
|
|
267
|
+
dango --help
|
|
268
|
+
|
|
269
|
+
# Run tests (coming soon)
|
|
270
|
+
pytest
|
|
271
|
+
```
|
|
272
|
+
|
|
273
|
+
## Documentation
|
|
274
|
+
|
|
275
|
+
- **[MVP Roadmap](MVP_ROADMAP.md)** - Complete MVP specifications and timeline
|
|
276
|
+
- **[Timeline](TIMELINE.md)** - Visual 4-week roadmap to v0.1.0 release
|
|
277
|
+
- **[Implementation Progress](IMPLEMENTATION_PROGRESS.md)** - Development log
|
|
278
|
+
- **[Architecture](architecture.md)** - System design overview
|
|
279
|
+
- **[CSV Loading Design](CSV_LOADING_DESIGN_SUMMARY.md)** - Phase 1 decisions
|
|
280
|
+
|
|
281
|
+
## Contributing
|
|
282
|
+
|
|
283
|
+
We're in active MVP development! Contributions welcome after v0.1.0 releases (Nov 29, 2025).
|
|
284
|
+
|
|
285
|
+
See [CONTRIBUTING.md](CONTRIBUTING.md) (coming soon) for guidelines.
|
|
286
|
+
|
|
287
|
+
## License
|
|
288
|
+
|
|
289
|
+
Apache 2.0 - See [LICENSE](LICENSE) for details.
|
|
290
|
+
|
|
291
|
+
## Links
|
|
292
|
+
|
|
293
|
+
- **Homepage:** https://getdango.dev (coming soon)
|
|
294
|
+
- **Docs:** https://docs.getdango.dev (coming soon)
|
|
295
|
+
- **GitHub:** https://github.com/getdango/dango
|
|
296
|
+
- **Issues:** https://github.com/getdango/dango/issues
|
|
297
|
+
|
|
298
|
+
---
|
|
299
|
+
|
|
300
|
+
Built with ❤️ for the data community
|