Skip to main content

Unofficial python client for `data.gouv.fr`

Project description

datagouv-python

PyPI version GitHub

Unofficial python client for data.gouv.fr.

Official documentation is here: https://guides.data.gouv.fr/guide-data.gouv.fr/api/reference.

Current API version supported = "1".

Getting Started

from datagouv import DatagouvClient

client = DatagouvClient(MY_API_KEY)

# Get a dataset
dataset = client.datasets.get(my_dataset_id)
dataset_resources = dataset.get('resources')

# Upload a new resource from a file
client.datasets.post_resource_file(my_dataset_id, filename)

# Update a resource file 
client.datasets.put_resource_file(my_dataset_id, filename, resource_id)

# Update a resource
client.datasets.put_resource(my_dataset_id, resource)

Download all resources

from datagouv import ResourcesDownloader

# Get a dataset: https://meteo.data.gouv.fr/datasets/656dab84db1bdf627a40eaae
dataset_id = "656dab84db1bdf627a40eaae"

# Instanciate ResourcesDownloader
downloader = ResourcesDownloader(dataset_id)

# Download to current directory
downloader.download()

Development

poetry run start
poetry run black datagouv/
poetry run flake8

Build and Publish

Steps

poetry version [patch, minor, major]
poetry install
poetry build
# todo: Update CHANGELOG
git commit -m "vX.X.X"
git tag vX.X.X
poetry publish
git push --tags
git push

Commands

poetry add pytest --group dev

poetry version
poetry version -s

poetry version [patch, minor, major]
poetry build

Config

# test-pypi
poetry config repositories.test-pypi https://test.pypi.org/legacy/
poetry config pypi-token.test-pypi MY_TOKEN

poetry publish -r test-pypi 

# pypi
poetry config pypi-token.pypi MY_TOKEN
poetry publish

Resources

Roadmap

  • Handle /datasets routes
  • Handle other routes
    • /site
    • /reuses
    • /discussions
    • /organizations
    • /spatial
    • /users
    • /me
    • /workers
    • /tags
    • /topics
    • /posts
    • /transfer
    • /notifications
    • /avatars
    • /harvest

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

datagouv_python-0.1.4.tar.gz (17.9 kB view hashes)

Uploaded Source

Built Distribution

datagouv_python-0.1.4-py3-none-any.whl (19.5 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page