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.23.tar.gz
(22.7 kB
view details)
Built Distribution
File details
Details for the file politylink-0.1.23.tar.gz
.
File metadata
- Download URL: politylink-0.1.23.tar.gz
- Upload date:
- Size: 22.7 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 | c5b742af1fb8155ef8d21e147d98d49d0294d88ba3c69f71ab6a45dfa765b734 |
|
MD5 | 132c322c31ec9fa40697dce5779281db |
|
BLAKE2b-256 | fe0f702431ac26f31276fa9b0a2bb793c4728591454c834f4b8c946ba926e9b8 |
File details
Details for the file politylink-0.1.23-py3-none-any.whl
.
File metadata
- Download URL: politylink-0.1.23-py3-none-any.whl
- Upload date:
- Size: 23.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 | 8594ca88b6c3e081d640a3a1e830edf97979ea0e9379251876e34a5f27838420 |
|
MD5 | 4885bcf74acbbd8fdbde396b12bea463 |
|
BLAKE2b-256 | 3a14085e5feb97e3b20494d18e23a29f5e07cea1bdfc9a23d8b4594139050012 |