generated from mysociety/python-data-auto-template
-
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.
Merge branch 'main' of https://github.com/mysociety/voting-data into …
…main
- Loading branch information
Showing
6 changed files
with
342 additions
and
70 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
45 changes: 45 additions & 0 deletions
45
data/packages/commons_votes/versions/0.1.0/datapackage.yaml
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,45 @@ | ||
name: commons_votes | ||
title: Commons Votes Data | ||
description: "Dataset version of data from Commons Votes API\n" | ||
version: 0.1.0 | ||
licenses: | ||
- name: CC-BY-4.0 | ||
path: https://creativecommons.org/licenses/by/4.0/ | ||
title: Creative Commons Attribution 4.0 International License | ||
contributors: | ||
- title: UK Parliament | ||
path: https://parliament.uk | ||
role: author | ||
- title: mySociety | ||
path: https://mysociety.org | ||
role: author | ||
custom: | ||
build: project load-commons-votes | ||
tests: | ||
- test_commons_votes_divisions | ||
dataset_order: 0 | ||
download_options: | ||
gate: default | ||
survey: default | ||
header_text: default | ||
formats: | ||
csv: true | ||
parquet: true | ||
gpkg: false | ||
geojson: false | ||
is_geodata: false | ||
composite: | ||
xlsx: | ||
include: all | ||
exclude: none | ||
render: true | ||
sqlite: | ||
include: all | ||
exclude: none | ||
render: true | ||
json: | ||
include: all | ||
exclude: none | ||
render: true | ||
change_log: | ||
0.1.0: Don't need to increment, first version |
Binary file not shown.
133 changes: 133 additions & 0 deletions
133
data/packages/commons_votes/versions/0.1.0/divisions.resource.yaml
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,133 @@ | ||
title: Divisions | ||
description: House of Commmons divisions as avaliable through the Commons Votes API | ||
custom: | ||
row_count: 1739 | ||
path: divisions.parquet | ||
name: divisions | ||
profile: data-resource | ||
scheme: file | ||
format: parquet | ||
hashing: md5 | ||
encoding: utf-8 | ||
schema: | ||
fields: | ||
- name: division_id | ||
type: integer | ||
description: Internal ID for the division | ||
constraints: | ||
unique: false | ||
example: 2 | ||
- name: date | ||
type: string | ||
description: Date and time of the division | ||
constraints: | ||
unique: false | ||
example: '2016-03-09T18:50:00' | ||
- name: publication_updated | ||
type: string | ||
description: Date and time the division was last updated | ||
constraints: | ||
unique: false | ||
example: '2016-03-15T12:07:14.623' | ||
- name: number | ||
type: integer | ||
description: Division number (unique to day) | ||
constraints: | ||
unique: false | ||
example: 1 | ||
- name: is_deferred | ||
type: boolean | ||
description: Whether the division was deferred | ||
constraints: | ||
unique: false | ||
enum: | ||
- false | ||
- true | ||
example: 'False' | ||
- name: evel_type | ||
type: string | ||
description: Whether the division was an English Votes for English Laws division | ||
constraints: | ||
unique: false | ||
enum: | ||
- '' | ||
- Country | ||
- Double Majority | ||
example: '' | ||
- name: evel_country | ||
type: string | ||
description: Country for English Votes for English Laws division | ||
constraints: | ||
unique: false | ||
enum: | ||
- '' | ||
- England | ||
- England and Wales | ||
example: '' | ||
- name: title | ||
type: string | ||
description: Title of the division | ||
constraints: | ||
unique: false | ||
example: "\tElections Bill: Government Motion to disagree to Lords Amendment 23" | ||
- name: aye_count | ||
type: integer | ||
description: Number of aye votes | ||
constraints: | ||
unique: false | ||
example: 0 | ||
- name: no_count | ||
type: integer | ||
description: Number of no votes | ||
constraints: | ||
unique: false | ||
example: 0 | ||
- name: double_majority_aye_count | ||
type: number | ||
description: Number of aye votes for double majority (EVEL) | ||
constraints: | ||
unique: false | ||
example: 199.0 | ||
- name: double_majority_no_count | ||
type: number | ||
description: Number of no votes for double majority (EVEL) | ||
constraints: | ||
unique: false | ||
example: 3.0 | ||
- name: friendly_description | ||
type: string | ||
description: Friendly description of the division | ||
constraints: | ||
unique: false | ||
example: "21:30" | ||
- name: friendly_title | ||
type: string | ||
description: Friendly title of the division | ||
constraints: | ||
unique: false | ||
example: "Business of the House (Private Members' Bills): Amendment (a)" | ||
- name: remote_voting_start | ||
type: string | ||
description: Date and time remote voting started | ||
constraints: | ||
unique: false | ||
example: '2020-05-12T17:48:53' | ||
- name: remote_voting_end | ||
type: string | ||
description: Date and time remote voting ended | ||
constraints: | ||
unique: false | ||
example: '2020-05-12T18:03:53' | ||
- name: division_key | ||
type: string | ||
description: Unique key for the division for TWFY | ||
constraints: | ||
unique: false | ||
example: pw-2016-03-09-211-commons | ||
- name: twfy_link | ||
type: string | ||
description: Link to the division on TheyWorkForYou | ||
constraints: | ||
unique: false | ||
example: https://www.theyworkforyou.com/divisions/pw-2016-03-09-211-commons | ||
hash: d9ae5444a06e0bb4e932d1fd7eb27805 |
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
Oops, something went wrong.