No project description provided
Project description
インストール
pip install politylink
使い方
GraphQLClient
PolityLinkのGraphQLエンドポイントにアクセスするためのGraphQLClientが用意されています。
from politylink.graphql.client import GraphQLClient
client = GraphQLClient()
exec
メソッドを使えば任意のGraphQLクエリを実行することができます。
query = """
query {
Bill(filter: {submittedDate: {year: 2020, month: 1, day: 20}}) {
name
}
}
"""
client.exec(query)
2020年1月20日に提出された3つの法律案の名前が得られるはずです。
{'data': {'Bill': [{'name': '特定複合観光施設区域の整備の推進に関する法律及び特定複合観光施設区域整備法を廃止する法律案'},
{'name': '地方交付税法及び特別会計に関する法律の一部を改正する法律案'},
{'name': '平成三十年度歳入歳出の決算上の剰余金の処理の特例に関する法律案'}]}}
GraphQLClientはsgglcのラッパークラスであり、クエリをコードで組み立てることも可能です。例えば上のクエリを組み立てると以下のようになります。
from politylink.graphql.schema import Query, _BillFilter, _Neo4jDateTimeInput
from sgqlc.operation import Operation
op = Operation(Query)
bill_filter = _BillFilter(None)
bill_filter.submitted_date = _Neo4jDateTimeInput(year=2020, month=1, day=20)
bills = op.bill(filter=bill_filter)
bills.name()
client.exec(op)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
politylink-0.1.29.tar.gz
(26.1 kB
view details)
Built Distribution
File details
Details for the file politylink-0.1.29.tar.gz
.
File metadata
- Download URL: politylink-0.1.29.tar.gz
- Upload date:
- Size: 26.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.0.10 CPython/3.8.2 Darwin/19.6.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5464d7cfeb89d761422954812e9294f9ffb90f3f94e5e79c3a74053c442935ee |
|
MD5 | 41a35bfe7d13991c46a9eb4c29fac14f |
|
BLAKE2b-256 | 6d40728684453f597d1cd4e45f891f0a0457aa87c3c550db293c6643a127868c |
File details
Details for the file politylink-0.1.29-py3-none-any.whl
.
File metadata
- Download URL: politylink-0.1.29-py3-none-any.whl
- Upload date:
- Size: 27.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.0.10 CPython/3.8.2 Darwin/19.6.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0782ad908ae6fb60e38756a1535e67341362e67d72beeb1e58f63dce2365b072 |
|
MD5 | 9ccb79e24b76e897e87f8805f4424ef7 |
|
BLAKE2b-256 | 28c91893c7cdab8c9267ccd0f6904e29f986aac5b1819740ca2fc0b0a3c7d33c |