Skip to main content

Providing utility functions to help other python developers

Project description

easycloudapi

The easycloudapi is a simple uitility to provide ease of developing experience for any Python Applications.

Functionality Availaible:

  1. Generate Date Dimension
  2. Generate Bigquery Schema from Json

Code Samples:

Generate Bigquery Schema-

  1. You can directly pass json/dict object to the generate_bq_schema method

    from easycloudapi.gcp.bigquery.bigquery_schema import BigquerySchema
    
    sample_json = {
        "name": "Danilo",
        "age": 32,
        "date_joined": "2020-11-05",
        "location": {"country": "United Kingdom", "city": "London"},
        "years_active": [2020, 2021, 2022],
        "favourite_movies": [
            {"name": "Momento", "year": "2000"},
            {"name": "Se7en", "year": "1995"},
            {"name": "Momento", "year": "2000"}
        ]
    }
    
    bq_schema_obj = BigquerySchema()
    out_generate_bq_schema = bq_schema_obj.generate_bq_schema(data=sample_json)
    
    print(f"out_generate_bq_schema:\n{out_generate_bq_schema}")
    
  2. You can also convert the json file into json/dict object and pass to the generate_bq_schema method

    import json
    from easycloudapi.gcp.bigquery.bigquery_schema import BigquerySchema
    
    
    bq_schema_obj = BigquerySchema()
    with open("tests//test_data//sample_json_01.json") as json_file:
        sample_dict = json.load(json_file)
    
    out_generate_bq_schema = bq_schema_obj.generate_bq_schema(data=sample_dict)
    print(out_generate_bq_schema)
    

Date Functionality-

  1. Generate Date Dimension
    from easycloudapi.generic.datetime.generate_date_dimention import generate_date_dimension
    
    out1 = generate_date_dimension(start_date="2023\\08\\01", end_date="2023\\08\\03")
    print(f"out1: {out1}")
    out2 = generate_date_dimension(start_date="2023/08/01", end_date="2023/08/03")
    print(f"out2: {out2}")
    out3 = generate_date_dimension(start_date="2023-08-01", end_date="2023-08-03")
    print(f"out3: {out3}")
    

How to Contribute

  1. Refer to Developer Guide

MIT License

Copyright (c) 2023 easycloudapi

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

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

easycloudapi-0.0.3.tar.gz (6.3 kB view details)

Uploaded Source

Built Distribution

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

easycloudapi-0.0.3-py3-none-any.whl (6.3 kB view details)

Uploaded Python 3

File details

Details for the file easycloudapi-0.0.3.tar.gz.

File metadata

  • Download URL: easycloudapi-0.0.3.tar.gz
  • Upload date:
  • Size: 6.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.5

File hashes

Hashes for easycloudapi-0.0.3.tar.gz
Algorithm Hash digest
SHA256 8978e9689038da5728a8f6802b72b972f5c0fd0c011cbe22354cc28bd50d6689
MD5 b999e2991f3967f86a169c5a87cc2bca
BLAKE2b-256 1862412252433569680280c937cf4ca732803de38acba8925d31418ea0145efd

See more details on using hashes here.

File details

Details for the file easycloudapi-0.0.3-py3-none-any.whl.

File metadata

  • Download URL: easycloudapi-0.0.3-py3-none-any.whl
  • Upload date:
  • Size: 6.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.5

File hashes

Hashes for easycloudapi-0.0.3-py3-none-any.whl
Algorithm Hash digest
SHA256 da9d7ace95a8cb6e653b0cb9af24f9879430702ef0e0c175389fb6661d096ec4
MD5 62c971c942f9f780541ad5b394866fde
BLAKE2b-256 997466cd4e170544640baf17214da71b4e5afd96a93be7e112508786a57e270c

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