Giter Club home page Giter Club logo

export-facebook-insights-to-bigquery's Introduction

Projects

Name URL Language
Oberon CGI https://github.com/egorsmkv/oberon-cgi Oberon
API for libpostal https://github.com/egorsmkv/api-libpostal C
API service based on Laravel https://github.com/egorsmkv/laravel-api-example PHP
OpenAPI 3 Generator https://github.com/egorsmkv/openapi3-generator Python
A generation server for preview images https://github.com/egorsmkv/share-image-server Go
Classes of Telephony for the Python's diagrams package https://github.com/egorsmkv/diagrams-telephony Python
A Python client for the Kuna API v3 https://github.com/egorsmkv/kuna-api-v3-client Python
Django integration with Webpack Encore https://github.com/egorsmkv/django-encore Python
Record WAV files using your microphone with Python https://github.com/egorsmkv/microphone-recorder Python
A simple GUI app based on GTK3 https://github.com/egorsmkv/gtk-auth-app Python
Database Migrations based on Laravel https://github.com/egorsmkv/db-migrations PHP
A demonstration on how to create own OTP authentication https://github.com/egorsmkv/otp-qr-demo PHP
Implementation of multithreading in Qt https://github.com/egorsmkv/qt-multithreading C++
Whois HTTP API https://github.com/egorsmkv/http-whois Ruby
Imgur Uploader Bot for Telegram https://github.com/egorsmkv/imgur-uploader-bot Go
Utility for searching RSS feeds on https://feedly.com https://github.com/egorsmkv/feedly_search Go
An example of Go's Concurrency with a Limit https://github.com/egorsmkv/go-concurrency-with-limit Go
Short URLs Service based on Alpas https://github.com/egorsmkv/short-urls-service Kotlin
AdminLTE2-All-in-One https://github.com/egorsmkv/AdminLTE2-All-in-One -
PrivatBank Money Sender https://github.com/egorsmkv/privatbank-send-money Ruby
Speech-to-Text for the Ukrainian language based on Silero https://github.com/egorsmkv/ua-silero-demo Python
Speech-to-Text for the Ukrainian language based on Wav2Vec2 https://github.com/egorsmkv/wav2vec2-uk-demo Python
An ONNX model for speech recognition of the Ukrainian language https://github.com/egorsmkv/ukrainian-onnx-model Python
An accentor for the Ukrainian language https://github.com/egorsmkv/ukrainian-accentor Python
ASR Corpus by Microphone https://github.com/egorsmkv/asr-corpus-by-microphone Python
This function gives you the ability to send email messages via any STMP server using own predefined HTML/TXT templates. https://github.com/egorsmkv/do-functions-php-send-email PHP
A small script to test wav2vec2 models using a microphone https://github.com/egorsmkv/test-wav2vec2-by-microphone Python
RADTTS + iSTFTNet vocoder https://github.com/egorsmkv/radtts-istftnet Python
RADTTS + HiFiGAN vocoder https://github.com/egorsmkv/radtts-hifigan Python
RADTTS + WaveODE vocoder https://github.com/egorsmkv/radtts-waveode Python

export-facebook-insights-to-bigquery's People

Contributors

egorsmkv avatar

Stargazers

 avatar  avatar

Watchers

 avatar  avatar

export-facebook-insights-to-bigquery's Issues

try merge query

https://t.me/c/1590908319/572

BEGIN
    BEGIN TRANSACTION;
        MERGE `{bigquery_table_main}` tmain 
        USING `{bigquery_table_raw}` traw ON tmain.ad_id = traw.id 
        WHEN MATCHED THEN UPDATE SET value = traw.value WHEN NOT MATCHED THEN INSERT

        INSERT INTO 
        (ad_id,adset_id,campaign_id,impressions,reach,spend,clicks,conversions,date_start,date_stop)
            VALUES
        ("{ad_id}", "{adset_id}", "{campaign_id}", {impressions}, {reach}, {spend}, {clicks}, {conversions}, "{date_start}", "{date_stop}");
    COMMIT TRANSACTION;

    EXCEPTION WHEN ERROR THEN
        SELECT @@error.message;
    ROLLBACK TRANSACTION;
END;

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.