forked from blockchain-etl/ethereum-etl
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
define get_block_range_for_date_hour for hourly airflow batch
- Loading branch information
1 parent
2a9e468
commit 580aad0
Showing
4 changed files
with
67 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
# MIT License | ||
# | ||
# Copyright (c) 2018 Evgeny Medvedev, [email protected] | ||
# | ||
# 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. | ||
|
||
|
||
import click | ||
|
||
from datetime import datetime | ||
from ethereumetl.web3_utils import build_web3 | ||
|
||
from blockchainetl.file_utils import smart_open | ||
from blockchainetl.logging_utils import logging_basic_config | ||
from ethereumetl.service.eth_service import EthService | ||
from ethereumetl.providers.auto import get_provider_from_uri | ||
from ethereumetl.utils import check_classic_provider_uri | ||
|
||
logging_basic_config() | ||
|
||
|
||
@click.command(context_settings=dict(help_option_names=['-h', '--help'])) | ||
@click.option('-p', '--provider-uri', default='https://mainnet.infura.io', show_default=True, type=str, | ||
help='The URI of the web3 provider e.g. ' | ||
'file://$HOME/Library/Ethereum/geth.ipc or https://mainnet.infura.io') | ||
@click.option('-d', '--date', required=True, type=lambda d: datetime.strptime(d, '%Y-%m-%d'), | ||
help='The date e.g. 2018-01-01.') | ||
@click.option('-h', '--hour', required=True, type=int, | ||
help='The hour e.g. 9. 23.') | ||
@click.option('-o', '--output', default='-', show_default=True, type=str, help='The output file. If not specified stdout is used.') | ||
@click.option('-c', '--chain', default='ethereum', show_default=True, type=str, help='The chain network to connect to.') | ||
def get_block_range_for_date_hour(provider_uri, date, hour, output, chain='ethereum'): | ||
"""Outputs start and end blocks for given date and hour.""" | ||
provider_uri = check_classic_provider_uri(chain, provider_uri) | ||
provider = get_provider_from_uri(provider_uri) | ||
web3 = build_web3(provider) | ||
eth_service = EthService(web3) | ||
|
||
start_block, end_block = eth_service.get_block_range_for_date_hour(date, hour) | ||
|
||
with smart_open(output, 'w') as output_file: | ||
output_file.write('{},{}\n'.format(start_block, end_block)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,7 +11,7 @@ def read(fname): | |
|
||
setup( | ||
name='ethereum-etl', | ||
version='1.10.0', | ||
version='jerry', | ||
author='Evgeny Medvedev', | ||
author_email='[email protected]', | ||
description='Tools for exporting Ethereum blockchain data to CSV or JSON', | ||
|