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.18.tar.gz
(21.9 kB
view details)
Built Distribution
File details
Details for the file politylink-0.1.18.tar.gz
.
File metadata
- Download URL: politylink-0.1.18.tar.gz
- Upload date:
- Size: 21.9 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 | edc4c84d7c6b80927b824b3c653043dc70ce6f7a9ad4283b3829d0f08eee9bc2 |
|
MD5 | 58c7151700aebcd249c2b88c7642d484 |
|
BLAKE2b-256 | daf59e96ed131da2288577751cafa13d0f99ec832c9fa115e6c4b4e2ab8546a3 |
File details
Details for the file politylink-0.1.18-py3-none-any.whl
.
File metadata
- Download URL: politylink-0.1.18-py3-none-any.whl
- Upload date:
- Size: 22.4 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 | a2e97d3d8867f78f1af42c8c0d522c4783825aa978e664116bbeeab0bf029a3a |
|
MD5 | 298027fc77e7ce3a81c93073103f2cd1 |
|
BLAKE2b-256 | 2d933611f290cc3eabba765e8ef77d49fc8c88e335754d7a4a7d5fad66056134 |