{"id":22886766,"url":"https://github.com/evolutionjobs/textkernel","last_synced_at":"2025-10-14T09:14:54.547Z","repository":{"id":101027677,"uuid":"128028931","full_name":"EvolutionJobs/Textkernel","owner":"EvolutionJobs","description":".NET Core service to send CVs to Textkernel's API. See https://www.textkernel.com/hr-software/extract-cv-parsing/","archived":false,"fork":false,"pushed_at":"2018-04-04T09:23:31.000Z","size":24,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-10-14T09:14:53.737Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"C#","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/EvolutionJobs.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","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":"2018-04-04T08:04:24.000Z","updated_at":"2018-04-18T08:37:36.000Z","dependencies_parsed_at":null,"dependency_job_id":"2bcbc413-1abe-4830-a1de-cc245941cc38","html_url":"https://github.com/EvolutionJobs/Textkernel","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/EvolutionJobs/Textkernel","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/EvolutionJobs%2FTextkernel","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/EvolutionJobs%2FTextkernel/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/EvolutionJobs%2FTextkernel/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/EvolutionJobs%2FTextkernel/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/EvolutionJobs","download_url":"https://codeload.github.com/EvolutionJobs/Textkernel/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/EvolutionJobs%2FTextkernel/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279018504,"owners_count":26086383,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-10-14T02:00:06.444Z","response_time":60,"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":[],"created_at":"2024-12-13T20:27:44.185Z","updated_at":"2025-10-14T09:14:54.522Z","avatar_url":"https://github.com/EvolutionJobs.png","language":"C#","readme":"# Textkernel Service\n.NET Core service to send CVs to Textkernel's Extract service. \n\nContact [Textkernel](https://www.textkernel.com/hr-software/extract-cv-parsing/) to access their CV Extract API.\n\nThis serialises the result to .NET structured objects, see [Model](Models).\n\n\n## Startup Injection\n\nTo add this service:\n\n``` c#\n// Don't hard code these - use https://docs.microsoft.com/en-us/aspnet/core/security/app-secrets?tabs=visual-studio\nstring address = $\"https://{textkernelService}\";\nstring account = \"your account\";\nstring username = \"your username\";\nstring password = \"your secret password\";\n\nservices.AddTextkernelParser(address, account, username, password);\n```\n\n## Using the CV Parsing Service\n\nThen this service is available as `ITextkernelParser`, for instance as a Web API action:\n\n``` c#\n[HttpPost(\"parseCV\")]\npublic async Task\u003cIEnumerable\u003cProfile\u003e\u003e ParseCV(\n    [FromServices] ITextkernelParser parser,     // Get the parser from the injected services \n    [FromForm] IEnumerable\u003cIFormFile\u003e files) // CV files posted from an HTML form\n{\n    var result = new List\u003cProfile\u003e();\n    foreach (var f in files)\n    {\n        if (f.Length == 0)\n             continue;\n\n        using (var s = new MemoryStream())\n        {\n            await f.CopyToAsync(s);\n            var parsed = await parser.Parse(s.ToArray(), f.FileName);\n            result.Add(parsed);\n        }\n    }\n\n    return result;\n}\n```\n\n## Request Details\n\nRequests to the Textkernel service are sent and recieved as SOAP.","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fevolutionjobs%2Ftextkernel","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fevolutionjobs%2Ftextkernel","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fevolutionjobs%2Ftextkernel/lists"}