{"id":15675407,"url":"https://github.com/albertmeronyo/pyldn","last_synced_at":"2026-03-11T05:30:57.851Z","repository":{"id":148559969,"uuid":"72185607","full_name":"albertmeronyo/pyldn","owner":"albertmeronyo","description":"A pythonic Linked Data Notifications (LDN) receiver","archived":false,"fork":false,"pushed_at":"2019-01-31T13:14:39.000Z","size":15,"stargazers_count":14,"open_issues_count":1,"forks_count":4,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-10-09T15:05:09.670Z","etag":null,"topics":["ldn","linked-data","linked-data-notifications","semantic-web"],"latest_commit_sha":null,"homepage":"http://pyldn.amp.ops.labs.vu.nl/","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/albertmeronyo.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2016-10-28T07:44:52.000Z","updated_at":"2024-05-02T09:26:31.000Z","dependencies_parsed_at":"2023-05-20T13:15:35.355Z","dependency_job_id":null,"html_url":"https://github.com/albertmeronyo/pyldn","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/albertmeronyo/pyldn","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/albertmeronyo%2Fpyldn","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/albertmeronyo%2Fpyldn/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/albertmeronyo%2Fpyldn/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/albertmeronyo%2Fpyldn/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/albertmeronyo","download_url":"https://codeload.github.com/albertmeronyo/pyldn/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/albertmeronyo%2Fpyldn/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30372161,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-10T21:41:54.280Z","status":"online","status_checked_at":"2026-03-11T02:00:07.027Z","response_time":84,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["ldn","linked-data","linked-data-notifications","semantic-web"],"created_at":"2024-10-03T15:59:55.389Z","updated_at":"2026-03-11T05:30:57.836Z","avatar_url":"https://github.com/albertmeronyo.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# pyldn\nA python [Linked Data Notifications (LDN)](https://linkedresearch.org/ldn/) receiver\n\n**Author:**\tAlbert Meroño  \n**Copyright:**\tAlbert Meroño, VU University Amsterdam  \n**License:**\tApache 2 (see [license.txt](license.txt))\n\n## Features\npyldn is a lightweight receiver for LDN. This means you can set up an inbox to receive notifications as Linked Data in seconds!\n\n## Install\n\u003cpre\u003e\ngit clone https://github.com/albertmeronyo/pyldn\ncd pyldn\nvirtualenv .\nsource bin/activate\npip install -r requirements.txt\n\u003c/pre\u003e\n\n## Usage\n\u003cpre\u003e\npython pyldn.py\n\u003c/pre\u003e\n\nThen, from a client you can discover an inbox\n\n\u003cpre\u003e\ncurl -I -X GET http://pyldn.amp.ops.labs.vu.nl/\n\nHTTP/1.1 200 OK\nLink: \u0026lt;http://pyldn.amp.ops.labs.vu.nl:8088/inbox/\u0026gt;;\n\u003c/pre\u003e\n\nYou can request a list of the notification URLs it contains:\n\n\u003cpre\u003e\ncurl -X GET -H'Accept: text/turtle' http://pyldn.amp.ops.labs.vu.nl/inbox/\n\nHTTP/1.1 200 OK\n\n@prefix ldp: \u0026lt;http://www.w3.org/ns/ldp#\u0026gt; .\n@prefix rdf: \u0026lt;http://www.w3.org/1999/02/22-rdf-syntax-ns#\u0026gt; .\n@prefix rdfs: \u0026lt;http://www.w3.org/2000/01/rdf-schema#\u0026gt; .\n@prefix xml: \u0026lt;http://www.w3.org/XML/1998/namespace\u0026gt; .\n@prefix xsd: \u0026lt;http://www.w3.org/2001/XMLSchema#\u0026gt; .\n\n\u0026lt;http://pyldn.amp.ops.labs.vu.nl:8088/inbox/\u0026gt; a ldp:BasicContainer,\n        ldp:Container,\n        ldp:RDFSource,\n        ldp:Resource ;\n    ldp:contains \u0026lt;http://pyldn.amp.ops.labs.vu.nl:8088/inbox/1\u0026gt;,\n        \u0026lt;http://pyldn.amp.ops.labs.vu.nl:8088/inbox/2\u0026gt; .\n\u003c/pre\u003e\n\nYou can even post new notifications to this inbox! You'll get the URL for your notification in the response headers:\n\n\u003cpre\u003e\ncurl -i -X POST -d '\u0026lt;foo\u0026gt; \u0026lt;bar\u0026gt; \u0026lt;foobar\u0026gt; .' -H'Content-Type: text/turtle' http://pyldn.amp.ops.labs.vu.nl/inbox/\n\nHTTP/1.1 201 CREATED\nLocation: http://pyldn.amp.ops.labs.vu.nl:8088/inbox/3\n\u003c/pre\u003e\n\nIf you want to retrieve the content of your brand new notification:\n\n\u003cpre\u003e\ncurl -i -X GET -H'Accept: text/turtle' http://pyldn.amp.ops.labs.vu.nl/inbox/3\n\nHTTP/1.1 200 OK\n\n@prefix ns1: \u0026lt;file:///home/amp/src/pyldn/\u0026gt; .\n@prefix rdf: \u0026lt;http://www.w3.org/1999/02/22-rdf-syntax-ns#\u0026gt; .\n@prefix rdfs: \u0026lt;http://www.w3.org/2000/01/rdf-schema#\u0026gt; .\n@prefix xml: \u0026lt;http://www.w3.org/XML/1998/namespace\u0026gt; .\n@prefix xsd: \u0026lt;http://www.w3.org/2001/XMLSchema#\u0026gt; .\n\nns1:foo ns1:bar ns1:foobar .\n\u003c/pre\u003e\n\nSee the [latest LDN draft](https://linkedresearch.org/ldn/) for a complete and concise description of all you can do with LDN!\n\n## Configuration\nYou'll find a sample [config.ini](config.ini) file you can customize according to your needs (mostly base path, inbox path, and port).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Falbertmeronyo%2Fpyldn","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Falbertmeronyo%2Fpyldn","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Falbertmeronyo%2Fpyldn/lists"}