Last active
March 11, 2018 17:43
-
-
Save vitorbaptista/481ce78539b02ff34f448966e18a52d8 to your computer and use it in GitHub Desktop.
OpenBelgium 2018 presentation on using Frictionless Data tools to package and validate data
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
# Created by https://www.gitignore.io/api/python | |
### Python ### | |
# Byte-compiled / optimized / DLL files | |
__pycache__/ | |
*.py[cod] | |
*$py.class | |
# C extensions | |
*.so | |
# Distribution / packaging | |
.Python | |
build/ | |
develop-eggs/ | |
dist/ | |
downloads/ | |
eggs/ | |
.eggs/ | |
lib/ | |
lib64/ | |
parts/ | |
sdist/ | |
var/ | |
wheels/ | |
*.egg-info/ | |
.installed.cfg | |
*.egg | |
# PyInstaller | |
# Usually these files are written by a python script from a template | |
# before PyInstaller builds the exe, so as to inject date/other infos into it. | |
*.manifest | |
*.spec | |
# Installer logs | |
pip-log.txt | |
pip-delete-this-directory.txt | |
# Unit test / coverage reports | |
htmlcov/ | |
.tox/ | |
.coverage | |
.coverage.* | |
.cache | |
.pytest_cache/ | |
nosetests.xml | |
coverage.xml | |
*.cover | |
.hypothesis/ | |
# Translations | |
*.mo | |
*.pot | |
# Flask stuff: | |
instance/ | |
.webassets-cache | |
# Scrapy stuff: | |
.scrapy | |
# Sphinx documentation | |
docs/_build/ | |
# PyBuilder | |
target/ | |
# Jupyter Notebook | |
.ipynb_checkpoints | |
# pyenv | |
.python-version | |
# celery beat schedule file | |
celerybeat-schedule.* | |
# SageMath parsed files | |
*.sage.py | |
# Environments | |
.env | |
.venv | |
env/ | |
venv/ | |
ENV/ | |
env.bak/ | |
venv.bak/ | |
# Spyder project settings | |
.spyderproject | |
.spyproject | |
# Rope project settings | |
.ropeproject | |
# mkdocs documentation | |
/site | |
# mypy | |
.mypy_cache/ | |
# End of https://www.gitignore.io/api/python |
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
{ | |
"profile": "tabular-data-package", | |
"resources": [ | |
{ | |
"name": "performance-hotels", | |
"path": "http://opendatastore.brussels/dataset/e083a504-7ce9-4f76-b0b7-0e64b8469c3b/resource/5407e011-09f9-4adf-ad68-c83eba751806/download/hotelsevolclean.csv", | |
"profile": "tabular-data-resource", | |
"encoding": "iso-8859-1", | |
"schema": { | |
"fields": [ | |
{ | |
"name": "Classement", | |
"type": "any", | |
"format": "default" | |
}, | |
{ | |
"name": "Quartier", | |
"type": "string", | |
"format": "default" | |
}, | |
{ | |
"name": "Date", | |
"type": "date", | |
"format": "%d-%m-%y" | |
}, | |
{ | |
"name": "Année", | |
"type": "year", | |
"format": "default" | |
}, | |
{ | |
"name": "Occupancy rate", | |
"type": "number", | |
"format": "default", | |
"decimalChar": "," | |
}, | |
{ | |
"name": "Average Price", | |
"type": "number", | |
"format": "default", | |
"title": "Average price per room", | |
"description": "", | |
"decimalChar": "," | |
}, | |
{ | |
"name": "RevPAR", | |
"type": "number", | |
"format": "default", | |
"title": "Revenue per available room", | |
"decimalChar": "," | |
}, | |
{ | |
"name": "Source", | |
"type": "string", | |
"format": "default" | |
} | |
] | |
}, | |
"title": "Perfomance Hôtelière" | |
} | |
], | |
"keywords": [ | |
"economy", | |
"finance", | |
"hotel" | |
], | |
"name": "hotels-performance", | |
"title": "Hotels Performance", | |
"description": "Données retranscrivant la performance mensuelle du secteur hôtelier en région bruxelloise", | |
"homepage": "http://opendatastore.brussels/dataset/hotels-performance", | |
"license": " Brussels OpenData License", | |
"author": "Corentin Descamps <[email protected]>" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment