Skip to main content

Django ORM connector for Google BigQuery

Project description

Django BigQuery Connector

A Django database backend for Google BigQuery, enabling Django ORM queries against BigQuery datasets.

Features

  • Use Django ORM to query BigQuery tables seamlessly
  • Read-only operations support
  • Supports most Django ORM query methods and filters
  • GIS operations support (minimal)
  • Django admin integration

Installation

pip install django-bigquery-connector

Configuration

Add the following to your Django settings:

DATABASES = {
    'default': {
        # Your regular database for models, auth, etc.
        'ENGINE': 'django.db.backends.sqlite3',
        'NAME': BASE_DIR / 'db.sqlite3',
    },
    'bigquery': {
        'ENGINE': 'django_bq',
        'PROJECT': 'your-gcp-project-id',
        'CREDENTIALS': None,  # Uses default credentials, or provide a credentials object
        'LOCATION': 'us-central1',  # Optional: BigQuery location
        'NAME': 'your-bigquery-dataset-name'
    }
}

Authentication

You can provide credentials in three ways:

  1. Set the GOOGLE_APPLICATION_CREDENTIALS environment variable to the path of your service account JSON file:

    export GOOGLE_APPLICATION_CREDENTIALS="/path/to/your/service-account-file.json"
    
  2. Pass a credentials object in the settings:

    from google.oauth2 import service_account
    credentials = service_account.Credentials.from_service_account_file(
        '/path/to/your/service-account-file.json',
    )
    
    DATABASES = {
        'bigquery': {
            'ENGINE': 'django_bq',
            'PROJECT': 'your-gcp-project-id',
            'CREDENTIALS': credentials,
            'NAME': 'your-bigquery-dataset-name'
        }
    }
    
  3. Use Application Default Credentials (ADC) by setting CREDENTIALS to None.

Usage Examples

Direct SQL Queries

from django.db import connections

# Using the BigQuery connection
with connections['bigquery'].cursor() as cursor:
    cursor.execute("SELECT * FROM `your-project.dataset.table` LIMIT 10")
    results = cursor.fetchall()
    for row in results:
        print(row)

Using Django Models

  1. Define models with BigQuery tables:
from django.db import models

class Customer(models.Model):
    id = models.IntegerField(primary_key=True)
    name = models.CharField(max_length=100)
    email = models.EmailField()

    class Meta:
        managed = False  # Important: we don't want Django to create/modify tables
        db_table = 'customers'  # Your BigQuery table name
  1. Query using Django ORM:
# Get all records
customers = Customer.objects.using('bigquery').all()

# Filter records
active_customers = Customer.objects.using('bigquery').filter(
    status='active',
    registration_date__gte='2023-01-01'
)

# Aggregate functions
from django.db.models import Count, Avg
customer_stats = Customer.objects.using('bigquery').values('country').annotate(
    count=Count('id'),
    avg_purchases=Avg('purchase_count')
)

Limitations

  • Read-only operations only (no INSERT, UPDATE, DELETE)
  • Regular expression operations need improvements
  • Some Django ORM features may not be fully supported
  • Complex JOIN operations may not work as expected

Contributing

Contributions are welcome! See CONTRIBUTING.md for guidelines.

License

MIT License - See LICENSE file for details.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

django_bigquery_connector-0.1.2.tar.gz (12.2 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

django_bigquery_connector-0.1.2-py3-none-any.whl (12.1 kB view details)

Uploaded Python 3

File details

Details for the file django_bigquery_connector-0.1.2.tar.gz.

File metadata

File hashes

Hashes for django_bigquery_connector-0.1.2.tar.gz
Algorithm Hash digest
SHA256 6804bfc5facd5ed7ac13b11479cd3cf01e6360c3a255cd2e75e22c5d4d6d74e5
MD5 5c034ebbee3f7ee2063e84227265a85c
BLAKE2b-256 b5ff770eeb971b0af161d5f85c136877214343a7fc13b9c7e85c5f6870bceb93

See more details on using hashes here.

File details

Details for the file django_bigquery_connector-0.1.2-py3-none-any.whl.

File metadata

File hashes

Hashes for django_bigquery_connector-0.1.2-py3-none-any.whl
Algorithm Hash digest
SHA256 4456a8474fb52c7e2f2a475efce73849066672d468d0d04d2feaba2dad587cd0
MD5 0c417b815b60210d79d72ce594494e81
BLAKE2b-256 74bd612758b9687289c4202e4afe3fbd434df89b5986574ce75c4a3c1db7555c

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page