├── .gitignore ├── bash └── simple_rr_main_batch_run.sh ├── code ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-310.pyc │ ├── databaseconnection.cpython-310.pyc │ ├── databaseconnection.cpython-38.pyc │ ├── databaseconnection.cpython-39.pyc │ ├── single_token_lama.cpython-38.pyc │ ├── wikidata_get.cpython-310.pyc │ ├── wikidata_get.cpython-38.pyc │ └── wikidata_get.cpython-39.pyc ├── composer.json ├── composer.lock ├── data_preprocess │ ├── gen_data_for_main_exp.py │ ├── gen_data_for_ori_lama.py │ ├── gen_data_for_true_positive.py │ ├── gen_obj_alias_clean_dict.py │ ├── gen_top5_frequent_objids.py │ ├── get_single_token_obj.py │ ├── preprocess_gendata.py │ ├── sample_examples.py │ ├── trex_preprocess.py │ ├── trex_print.py │ ├── wikidata_get.py │ └── wikidata_get.sh ├── data_readers │ ├── score_ranker.py │ └── statistics_reader.py ├── databaseconnection.py ├── readme.md ├── rel_dict.json ├── simple_rr_main_batch_kprompts.py ├── simple_rr_main_batch_update.py ├── simple_rr_main_batch_update_api.py └── vendor │ ├── autoload.php │ ├── bin │ └── var-dump-server │ ├── composer │ ├── ClassLoader.php │ ├── InstalledVersions.php │ ├── LICENSE │ ├── autoload_classmap.php │ ├── autoload_files.php │ ├── autoload_namespaces.php │ ├── autoload_psr4.php │ ├── autoload_real.php │ ├── autoload_static.php │ ├── installed.json │ ├── installed.php │ └── platform_check.php │ ├── freearhey │ └── wikidata │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ ├── phpunit.xml │ │ ├── src │ │ ├── ApiClient.php │ │ ├── Entity.php │ │ ├── Property.php │ │ ├── Qualifier.php │ │ ├── SearchResult.php │ │ ├── SparqlClient.php │ │ ├── Value.php │ │ ├── Wikidata.php │ │ └── helpers.php │ │ └── tests │ │ ├── TestCase.php │ │ ├── Unit │ │ ├── EntityTest.php │ │ ├── PropertyTest.php │ │ ├── QualifierTest.php │ │ ├── SearchResultTest.php │ │ ├── ValueTest.php │ │ └── WikidataTest.php │ │ └── bootstrap.php │ ├── guzzlehttp │ ├── guzzle │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── UPGRADING.md │ │ ├── composer.json │ │ └── src │ │ │ ├── BodySummarizer.php │ │ │ ├── BodySummarizerInterface.php │ │ │ ├── Client.php │ │ │ ├── ClientInterface.php │ │ │ ├── ClientTrait.php │ │ │ ├── Cookie │ │ │ ├── CookieJar.php │ │ │ ├── CookieJarInterface.php │ │ │ ├── FileCookieJar.php │ │ │ ├── SessionCookieJar.php │ │ │ └── SetCookie.php │ │ │ ├── Exception │ │ │ ├── BadResponseException.php │ │ │ ├── ClientException.php │ │ │ ├── ConnectException.php │ │ │ ├── GuzzleException.php │ │ │ ├── InvalidArgumentException.php │ │ │ ├── RequestException.php │ │ │ ├── ServerException.php │ │ │ ├── TooManyRedirectsException.php │ │ │ └── TransferException.php │ │ │ ├── Handler │ │ │ ├── CurlFactory.php │ │ │ ├── CurlFactoryInterface.php │ │ │ ├── CurlHandler.php │ │ │ ├── CurlMultiHandler.php │ │ │ ├── EasyHandle.php │ │ │ ├── HeaderProcessor.php │ │ │ ├── MockHandler.php │ │ │ ├── Proxy.php │ │ │ └── StreamHandler.php │ │ │ ├── HandlerStack.php │ │ │ ├── MessageFormatter.php │ │ │ ├── MessageFormatterInterface.php │ │ │ ├── Middleware.php │ │ │ ├── Pool.php │ │ │ ├── PrepareBodyMiddleware.php │ │ │ ├── RedirectMiddleware.php │ │ │ ├── RequestOptions.php │ │ │ ├── RetryMiddleware.php │ │ │ ├── TransferStats.php │ │ │ ├── Utils.php │ │ │ ├── functions.php │ │ │ └── functions_include.php │ ├── promises │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ │ ├── AggregateException.php │ │ │ ├── CancellationException.php │ │ │ ├── Coroutine.php │ │ │ ├── Create.php │ │ │ ├── Each.php │ │ │ ├── EachPromise.php │ │ │ ├── FulfilledPromise.php │ │ │ ├── Is.php │ │ │ ├── Promise.php │ │ │ ├── PromiseInterface.php │ │ │ ├── PromisorInterface.php │ │ │ ├── RejectedPromise.php │ │ │ ├── RejectionException.php │ │ │ ├── TaskQueue.php │ │ │ ├── TaskQueueInterface.php │ │ │ ├── Utils.php │ │ │ ├── functions.php │ │ │ └── functions_include.php │ └── psr7 │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ ├── AppendStream.php │ │ ├── BufferStream.php │ │ ├── CachingStream.php │ │ ├── DroppingStream.php │ │ ├── Exception │ │ └── MalformedUriException.php │ │ ├── FnStream.php │ │ ├── Header.php │ │ ├── HttpFactory.php │ │ ├── InflateStream.php │ │ ├── LazyOpenStream.php │ │ ├── LimitStream.php │ │ ├── Message.php │ │ ├── MessageTrait.php │ │ ├── MimeType.php │ │ ├── MultipartStream.php │ │ ├── NoSeekStream.php │ │ ├── PumpStream.php │ │ ├── Query.php │ │ ├── Request.php │ │ ├── Response.php │ │ ├── Rfc7230.php │ │ ├── ServerRequest.php │ │ ├── Stream.php │ │ ├── StreamDecoratorTrait.php │ │ ├── StreamWrapper.php │ │ ├── UploadedFile.php │ │ ├── Uri.php │ │ ├── UriComparator.php │ │ ├── UriNormalizer.php │ │ ├── UriResolver.php │ │ └── Utils.php │ ├── psr │ ├── http-client │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ │ ├── ClientExceptionInterface.php │ │ │ ├── ClientInterface.php │ │ │ ├── NetworkExceptionInterface.php │ │ │ └── RequestExceptionInterface.php │ ├── http-factory │ │ ├── .gitignore │ │ ├── .pullapprove.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ │ ├── RequestFactoryInterface.php │ │ │ ├── ResponseFactoryInterface.php │ │ │ ├── ServerRequestFactoryInterface.php │ │ │ ├── StreamFactoryInterface.php │ │ │ ├── UploadedFileFactoryInterface.php │ │ │ └── UriFactoryInterface.php │ └── http-message │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ ├── MessageInterface.php │ │ ├── RequestInterface.php │ │ ├── ResponseInterface.php │ │ ├── ServerRequestInterface.php │ │ ├── StreamInterface.php │ │ ├── UploadedFileInterface.php │ │ └── UriInterface.php │ ├── ralouphie │ └── getallheaders │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ └── getallheaders.php │ ├── symfony │ ├── deprecation-contracts │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── function.php │ ├── polyfill-mbstring │ │ ├── LICENSE │ │ ├── Mbstring.php │ │ ├── README.md │ │ ├── Resources │ │ │ └── unidata │ │ │ │ ├── lowerCase.php │ │ │ │ ├── titleCaseRegexp.php │ │ │ │ └── upperCase.php │ │ ├── bootstrap.php │ │ ├── bootstrap80.php │ │ └── composer.json │ ├── polyfill-php80 │ │ ├── LICENSE │ │ ├── Php80.php │ │ ├── PhpToken.php │ │ ├── README.md │ │ ├── Resources │ │ │ └── stubs │ │ │ │ ├── Attribute.php │ │ │ │ ├── PhpToken.php │ │ │ │ ├── Stringable.php │ │ │ │ ├── UnhandledMatchError.php │ │ │ │ └── ValueError.php │ │ ├── bootstrap.php │ │ └── composer.json │ └── var-dumper │ │ ├── CHANGELOG.md │ │ ├── Caster │ │ ├── AmqpCaster.php │ │ ├── ArgsStub.php │ │ ├── Caster.php │ │ ├── ClassStub.php │ │ ├── ConstStub.php │ │ ├── CutArrayStub.php │ │ ├── CutStub.php │ │ ├── DOMCaster.php │ │ ├── DateCaster.php │ │ ├── DoctrineCaster.php │ │ ├── DsCaster.php │ │ ├── DsPairStub.php │ │ ├── EnumStub.php │ │ ├── ExceptionCaster.php │ │ ├── FiberCaster.php │ │ ├── FrameStub.php │ │ ├── GmpCaster.php │ │ ├── ImagineCaster.php │ │ ├── ImgStub.php │ │ ├── IntlCaster.php │ │ ├── LinkStub.php │ │ ├── MemcachedCaster.php │ │ ├── MysqliCaster.php │ │ ├── PdoCaster.php │ │ ├── PgSqlCaster.php │ │ ├── ProxyManagerCaster.php │ │ ├── RdKafkaCaster.php │ │ ├── RedisCaster.php │ │ ├── ReflectionCaster.php │ │ ├── ResourceCaster.php │ │ ├── SplCaster.php │ │ ├── StubCaster.php │ │ ├── SymfonyCaster.php │ │ ├── TraceStub.php │ │ ├── UuidCaster.php │ │ ├── XmlReaderCaster.php │ │ └── XmlResourceCaster.php │ │ ├── Cloner │ │ ├── AbstractCloner.php │ │ ├── ClonerInterface.php │ │ ├── Cursor.php │ │ ├── Data.php │ │ ├── DumperInterface.php │ │ ├── Stub.php │ │ └── VarCloner.php │ │ ├── Command │ │ ├── Descriptor │ │ │ ├── CliDescriptor.php │ │ │ ├── DumpDescriptorInterface.php │ │ │ └── HtmlDescriptor.php │ │ └── ServerDumpCommand.php │ │ ├── Dumper │ │ ├── AbstractDumper.php │ │ ├── CliDumper.php │ │ ├── ContextProvider │ │ │ ├── CliContextProvider.php │ │ │ ├── ContextProviderInterface.php │ │ │ ├── RequestContextProvider.php │ │ │ └── SourceContextProvider.php │ │ ├── ContextualizedDumper.php │ │ ├── DataDumperInterface.php │ │ ├── HtmlDumper.php │ │ └── ServerDumper.php │ │ ├── Exception │ │ └── ThrowingCasterException.php │ │ ├── LICENSE │ │ ├── README.md │ │ ├── Resources │ │ ├── bin │ │ │ └── var-dump-server │ │ ├── css │ │ │ └── htmlDescriptor.css │ │ ├── functions │ │ │ └── dump.php │ │ └── js │ │ │ └── htmlDescriptor.js │ │ ├── Server │ │ ├── Connection.php │ │ └── DumpServer.php │ │ ├── Test │ │ └── VarDumperTestTrait.php │ │ ├── VarDumper.php │ │ └── composer.json │ └── tightenco │ └── collect │ ├── .github │ └── workflows │ │ └── run-tests.yml │ ├── branch-commit-push.sh │ ├── composer.json │ └── src │ └── Collect │ ├── Contracts │ └── Support │ │ ├── Arrayable.php │ │ ├── CanBeEscapedWhenCastToString.php │ │ ├── Htmlable.php │ │ └── Jsonable.php │ └── Support │ ├── Arr.php │ ├── Collection.php │ ├── Enumerable.php │ ├── HigherOrderCollectionProxy.php │ ├── HigherOrderWhenProxy.php │ ├── LazyCollection.php │ ├── Traits │ ├── EnumeratesValues.php │ ├── Macroable.php │ └── Tappable.php │ ├── alias.php │ └── helpers.php ├── environment.yml ├── highlights.png └── readme.md /.gitignore: -------------------------------------------------------------------------------- 1 | /data_download -------------------------------------------------------------------------------- /bash/simple_rr_main_batch_run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dqxiu/KAssess/HEAD/bash/simple_rr_main_batch_run.sh -------------------------------------------------------------------------------- /code/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /code/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dqxiu/KAssess/HEAD/code/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /code/__pycache__/databaseconnection.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dqxiu/KAssess/HEAD/code/__pycache__/databaseconnection.cpython-310.pyc -------------------------------------------------------------------------------- /code/__pycache__/databaseconnection.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dqxiu/KAssess/HEAD/code/__pycache__/databaseconnection.cpython-38.pyc -------------------------------------------------------------------------------- /code/__pycache__/databaseconnection.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dqxiu/KAssess/HEAD/code/__pycache__/databaseconnection.cpython-39.pyc -------------------------------------------------------------------------------- /code/__pycache__/single_token_lama.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dqxiu/KAssess/HEAD/code/__pycache__/single_token_lama.cpython-38.pyc -------------------------------------------------------------------------------- /code/__pycache__/wikidata_get.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dqxiu/KAssess/HEAD/code/__pycache__/wikidata_get.cpython-310.pyc -------------------------------------------------------------------------------- /code/__pycache__/wikidata_get.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dqxiu/KAssess/HEAD/code/__pycache__/wikidata_get.cpython-38.pyc -------------------------------------------------------------------------------- /code/__pycache__/wikidata_get.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dqxiu/KAssess/HEAD/code/__pycache__/wikidata_get.cpython-39.pyc -------------------------------------------------------------------------------- /code/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dqxiu/KAssess/HEAD/code/composer.json -------------------------------------------------------------------------------- /code/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dqxiu/KAssess/HEAD/code/composer.lock -------------------------------------------------------------------------------- /code/data_preprocess/gen_data_for_main_exp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dqxiu/KAssess/HEAD/code/data_preprocess/gen_data_for_main_exp.py -------------------------------------------------------------------------------- /code/data_preprocess/gen_data_for_ori_lama.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dqxiu/KAssess/HEAD/code/data_preprocess/gen_data_for_ori_lama.py -------------------------------------------------------------------------------- /code/data_preprocess/gen_data_for_true_positive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dqxiu/KAssess/HEAD/code/data_preprocess/gen_data_for_true_positive.py -------------------------------------------------------------------------------- /code/data_preprocess/gen_obj_alias_clean_dict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dqxiu/KAssess/HEAD/code/data_preprocess/gen_obj_alias_clean_dict.py -------------------------------------------------------------------------------- /code/data_preprocess/gen_top5_frequent_objids.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dqxiu/KAssess/HEAD/code/data_preprocess/gen_top5_frequent_objids.py -------------------------------------------------------------------------------- /code/data_preprocess/get_single_token_obj.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dqxiu/KAssess/HEAD/code/data_preprocess/get_single_token_obj.py -------------------------------------------------------------------------------- /code/data_preprocess/preprocess_gendata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dqxiu/KAssess/HEAD/code/data_preprocess/preprocess_gendata.py -------------------------------------------------------------------------------- /code/data_preprocess/sample_examples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dqxiu/KAssess/HEAD/code/data_preprocess/sample_examples.py -------------------------------------------------------------------------------- /code/data_preprocess/trex_preprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dqxiu/KAssess/HEAD/code/data_preprocess/trex_preprocess.py -------------------------------------------------------------------------------- /code/data_preprocess/trex_print.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dqxiu/KAssess/HEAD/code/data_preprocess/trex_print.py -------------------------------------------------------------------------------- /code/data_preprocess/wikidata_get.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dqxiu/KAssess/HEAD/code/data_preprocess/wikidata_get.py -------------------------------------------------------------------------------- /code/data_preprocess/wikidata_get.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dqxiu/KAssess/HEAD/code/data_preprocess/wikidata_get.sh -------------------------------------------------------------------------------- /code/data_readers/score_ranker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dqxiu/KAssess/HEAD/code/data_readers/score_ranker.py -------------------------------------------------------------------------------- /code/data_readers/statistics_reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dqxiu/KAssess/HEAD/code/data_readers/statistics_reader.py -------------------------------------------------------------------------------- /code/databaseconnection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dqxiu/KAssess/HEAD/code/databaseconnection.py -------------------------------------------------------------------------------- /code/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dqxiu/KAssess/HEAD/code/readme.md -------------------------------------------------------------------------------- /code/rel_dict.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dqxiu/KAssess/HEAD/code/rel_dict.json -------------------------------------------------------------------------------- /code/simple_rr_main_batch_kprompts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dqxiu/KAssess/HEAD/code/simple_rr_main_batch_kprompts.py -------------------------------------------------------------------------------- /code/simple_rr_main_batch_update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dqxiu/KAssess/HEAD/code/simple_rr_main_batch_update.py -------------------------------------------------------------------------------- /code/simple_rr_main_batch_update_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dqxiu/KAssess/HEAD/code/simple_rr_main_batch_update_api.py -------------------------------------------------------------------------------- /code/vendor/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dqxiu/KAssess/HEAD/code/vendor/autoload.php -------------------------------------------------------------------------------- /code/vendor/bin/var-dump-server: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dqxiu/KAssess/HEAD/code/vendor/bin/var-dump-server -------------------------------------------------------------------------------- /code/vendor/composer/ClassLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dqxiu/KAssess/HEAD/code/vendor/composer/ClassLoader.php -------------------------------------------------------------------------------- /code/vendor/composer/InstalledVersions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dqxiu/KAssess/HEAD/code/vendor/composer/InstalledVersions.php -------------------------------------------------------------------------------- /code/vendor/composer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dqxiu/KAssess/HEAD/code/vendor/composer/LICENSE -------------------------------------------------------------------------------- /code/vendor/composer/autoload_classmap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dqxiu/KAssess/HEAD/code/vendor/composer/autoload_classmap.php -------------------------------------------------------------------------------- /code/vendor/composer/autoload_files.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dqxiu/KAssess/HEAD/code/vendor/composer/autoload_files.php -------------------------------------------------------------------------------- /code/vendor/composer/autoload_namespaces.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dqxiu/KAssess/HEAD/code/vendor/composer/autoload_namespaces.php -------------------------------------------------------------------------------- /code/vendor/composer/autoload_psr4.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dqxiu/KAssess/HEAD/code/vendor/composer/autoload_psr4.php -------------------------------------------------------------------------------- /code/vendor/composer/autoload_real.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dqxiu/KAssess/HEAD/code/vendor/composer/autoload_real.php -------------------------------------------------------------------------------- /code/vendor/composer/autoload_static.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dqxiu/KAssess/HEAD/code/vendor/composer/autoload_static.php -------------------------------------------------------------------------------- /code/vendor/composer/installed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dqxiu/KAssess/HEAD/code/vendor/composer/installed.json -------------------------------------------------------------------------------- /code/vendor/composer/installed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dqxiu/KAssess/HEAD/code/vendor/composer/installed.php -------------------------------------------------------------------------------- /code/vendor/composer/platform_check.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dqxiu/KAssess/HEAD/code/vendor/composer/platform_check.php -------------------------------------------------------------------------------- /code/vendor/freearhey/wikidata/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dqxiu/KAssess/HEAD/code/vendor/freearhey/wikidata/.gitignore -------------------------------------------------------------------------------- /code/vendor/freearhey/wikidata/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dqxiu/KAssess/HEAD/code/vendor/freearhey/wikidata/.travis.yml -------------------------------------------------------------------------------- /code/vendor/freearhey/wikidata/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dqxiu/KAssess/HEAD/code/vendor/freearhey/wikidata/LICENSE -------------------------------------------------------------------------------- /code/vendor/freearhey/wikidata/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dqxiu/KAssess/HEAD/code/vendor/freearhey/wikidata/README.md -------------------------------------------------------------------------------- /code/vendor/freearhey/wikidata/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dqxiu/KAssess/HEAD/code/vendor/freearhey/wikidata/composer.json -------------------------------------------------------------------------------- /code/vendor/freearhey/wikidata/phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dqxiu/KAssess/HEAD/code/vendor/freearhey/wikidata/phpunit.xml -------------------------------------------------------------------------------- /code/vendor/freearhey/wikidata/src/ApiClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dqxiu/KAssess/HEAD/code/vendor/freearhey/wikidata/src/ApiClient.php -------------------------------------------------------------------------------- /code/vendor/freearhey/wikidata/src/Entity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dqxiu/KAssess/HEAD/code/vendor/freearhey/wikidata/src/Entity.php -------------------------------------------------------------------------------- /code/vendor/freearhey/wikidata/src/Property.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dqxiu/KAssess/HEAD/code/vendor/freearhey/wikidata/src/Property.php -------------------------------------------------------------------------------- /code/vendor/freearhey/wikidata/src/Qualifier.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dqxiu/KAssess/HEAD/code/vendor/freearhey/wikidata/src/Qualifier.php -------------------------------------------------------------------------------- /code/vendor/freearhey/wikidata/src/SearchResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dqxiu/KAssess/HEAD/code/vendor/freearhey/wikidata/src/SearchResult.php -------------------------------------------------------------------------------- /code/vendor/freearhey/wikidata/src/SparqlClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dqxiu/KAssess/HEAD/code/vendor/freearhey/wikidata/src/SparqlClient.php -------------------------------------------------------------------------------- /code/vendor/freearhey/wikidata/src/Value.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dqxiu/KAssess/HEAD/code/vendor/freearhey/wikidata/src/Value.php -------------------------------------------------------------------------------- /code/vendor/freearhey/wikidata/src/Wikidata.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dqxiu/KAssess/HEAD/code/vendor/freearhey/wikidata/src/Wikidata.php -------------------------------------------------------------------------------- /code/vendor/freearhey/wikidata/src/helpers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dqxiu/KAssess/HEAD/code/vendor/freearhey/wikidata/src/helpers.php -------------------------------------------------------------------------------- /code/vendor/freearhey/wikidata/tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dqxiu/KAssess/HEAD/code/vendor/freearhey/wikidata/tests/TestCase.php -------------------------------------------------------------------------------- /code/vendor/freearhey/wikidata/tests/Unit/EntityTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dqxiu/KAssess/HEAD/code/vendor/freearhey/wikidata/tests/Unit/EntityTest.php -------------------------------------------------------------------------------- /code/vendor/freearhey/wikidata/tests/Unit/PropertyTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dqxiu/KAssess/HEAD/code/vendor/freearhey/wikidata/tests/Unit/PropertyTest.php -------------------------------------------------------------------------------- /code/vendor/freearhey/wikidata/tests/Unit/QualifierTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dqxiu/KAssess/HEAD/code/vendor/freearhey/wikidata/tests/Unit/QualifierTest.php -------------------------------------------------------------------------------- /code/vendor/freearhey/wikidata/tests/Unit/SearchResultTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dqxiu/KAssess/HEAD/code/vendor/freearhey/wikidata/tests/Unit/SearchResultTest.php -------------------------------------------------------------------------------- /code/vendor/freearhey/wikidata/tests/Unit/ValueTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dqxiu/KAssess/HEAD/code/vendor/freearhey/wikidata/tests/Unit/ValueTest.php -------------------------------------------------------------------------------- /code/vendor/freearhey/wikidata/tests/Unit/WikidataTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dqxiu/KAssess/HEAD/code/vendor/freearhey/wikidata/tests/Unit/WikidataTest.php -------------------------------------------------------------------------------- /code/vendor/freearhey/wikidata/tests/bootstrap.php: -------------------------------------------------------------------------------- 1 |