Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature/update fr data link #72

Merged
merged 2 commits into from
May 17, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/check-datasources.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ name: Data source validity checks

on:
schedule:
# Runs the workflow every day at midnight
- cron: '0 0 * * *'
# Runs the workflow every Friday at 8am
- cron: '0 8 * * 5'

env:
DB_NAME: gis
Expand Down
2 changes: 1 addition & 1 deletion charging_stations_pipelines/pipelines/fr/france.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ def run(self):
@staticmethod
def download_france_gov_file(target_file):
"""Download a file from the French government website."""
base_url = "https://transport.data.gouv.fr/resources/81548"
base_url = "https://transport.data.gouv.fr/resources/81623"

r = requests.get(base_url, headers={"User-Agent": "Mozilla/5.0"})
soup = BeautifulSoup(r.content, "html.parser")
Expand Down
Loading