Metadata-Version: 2.1
Name: goofis-ardihikaru
Version: 0.0.48
Summary: Modules to extract information from Google Finance
Home-page: https://pypi.org/project/goofis-ardihikaru/0.0.1/#files
Author: Muhammad Febrian Ardiansyah
Author-email: mfardiansyah@outlook.com
License: MIT
Keywords: asyncio
Platform: any
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE.txt

# `Google Finance Scraper`

The `Google Finance Scraper` is a simple testing example to understand the basics of developing your first Python package. 

## Deployment

* Socketify
  * Build:
    ```shell
    docker build -f Dockerfile-socketify -t socketify/develop:0.1 .
    ```
  * Temp Run (bash):
    ```shell
    docker run --name socketify-service --rm -it --network host socketify/develop:0.1 bash
    ```
* API Service
  * Build:
    ```shell
    docker build --no-cache -t scraper-service/develop:0.1 . --build-arg GIT_COMMIT=$(git rev-parse HEAD)
    docker build --no-cache -t jejaktutorialdigitalcom_edutraderidscraper:latest . --build-arg GIT_COMMIT=$(git rev-parse HEAD)
    docker build --no-cache -t jejaktutorialdigitalcom_edutraderidupdater:latest . --build-arg GIT_COMMIT=$(git rev-parse HEAD)
    ```
  * Run:
    ```shell
    docker run --name scraper-api-service --rm -it --env-file ./.env --network host scraper-service/develop:0.1
    ```
