{"id":21029914,"url":"https://github.com/kitconcept/robotframework-jwt","last_synced_at":"2025-10-15T04:10:46.142Z","repository":{"id":50946040,"uuid":"142073101","full_name":"kitconcept/robotframework-jwt","owner":"kitconcept","description":"A Robot Framework library for JWT authentication","archived":false,"fork":false,"pushed_at":"2021-05-27T03:44:08.000Z","size":24,"stargazers_count":1,"open_issues_count":2,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-09-30T17:58:18.609Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/kitconcept.png","metadata":{"files":{"readme":"README.rst","changelog":"CHANGES.rst","contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2018-07-23T21:50:41.000Z","updated_at":"2020-07-14T16:38:35.000Z","dependencies_parsed_at":"2022-08-26T13:41:05.356Z","dependency_job_id":null,"html_url":"https://github.com/kitconcept/robotframework-jwt","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/kitconcept/robotframework-jwt","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kitconcept%2Frobotframework-jwt","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kitconcept%2Frobotframework-jwt/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kitconcept%2Frobotframework-jwt/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kitconcept%2Frobotframework-jwt/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/kitconcept","download_url":"https://codeload.github.com/kitconcept/robotframework-jwt/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kitconcept%2Frobotframework-jwt/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279048498,"owners_count":26093011,"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-15T02:00:07.814Z","response_time":56,"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-11-19T12:14:58.764Z","updated_at":"2025-10-15T04:10:46.100Z","avatar_url":"https://github.com/kitconcept.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"==============================================================================\nA robot framework library for JWT authentication.\n==============================================================================\n\n.. image:: https://travis-ci.org/kitconcept/robotframework-jwt.svg?branch=master\n    :target: https://travis-ci.org/kitconcept/robotframework-jwt\n\n.. image:: https://img.shields.io/pypi/status/robotframework-jwt.svg\n    :target: https://pypi.python.org/pypi/robotframework-jwt/\n    :alt: Egg Status\n\n.. image:: https://img.shields.io/pypi/v/robotframework-jwt.svg\n    :target: https://pypi.python.org/pypi/robotframework-jwt/\n    :alt: Latest Version\n\n.. image:: https://img.shields.io/pypi/l/robotframework-jwt.svg\n    :target: https://pypi.python.org/pypi/robotframework-jwt/\n    :alt: License\n\n|\n\n.. image:: https://raw.githubusercontent.com/kitconcept/robotframework-jwt/master/kitconcept.png\n   :alt: kitconcept\n   :target: https://kitconcept.com/\n\n\nIntroduction\n------------\n\nrobotframework-jwt is a web testing library to test Django with Robot Framework. It uses Selenium2Library to run tests against a real browser instance.\n\nThe library will automatically start and stop your Django instance while running the tests. It also comes with serveral autologin keywords that allow you to login different users during your tests, without the need to actually access the login page.\n\njwt is tested against Django 1.8.x and 1.9.x with SQLite and Postgres on Python 2.7 and 3.5.\n\n\nDocumentation\n-------------\n\n`Robot Framework JWT Library Keyword Documentation`_\n\n\nInstallation\n------------\n\nInstall robotframework-jwt with pip::\n\n  $ pip install robotframework-jwt\n\nLicense\n-------\n\nCopyright kitconcept GmbH.\n\nDistributed under the terms of the Apache License 2.0, robotframework-jwt is free and Open Source software.\n\n\nContribute\n----------\n\n- `Source code at Github \u003chttps://github.com/kitconcept/robotframework-jwt\u003e`_\n- `Issue tracker at Github \u003chttps://github.com/kitconcept/robotframework-jwt/issues\u003e`_\n\n\nSupport\n-------\n\nIf you are having issues, `please let us know \u003chttps://github.com/kitconcept/robotframework-jwt/issues\u003e`_. If you require professional support feel free to contact us at `info@kitconcept.com. \u003cmailto:info@kitconcept.com\u003e`_\n\n\nDevelopment\n-----------\n\nCheckout repository from github::\n\n  $ git clone https://github.com/kitconcept/robotframework-jwt.git\n\nCreate a virtual Python environment::\n\n  $ cd robotframework-jwt/\n  $ virtualenv .py27\n  $ source .py27/bin/activate\n\nInstall robotframework-jwt in development mode::\n\n  $ python setup.py develop\n\nInstall the requirements::\n\n  $ pip install -r requirements.txt\n\nRun Unit/Integration-Tests::\n\n  $ py.test tests/\n\n.. _`Robot Framework Django Library Keyword Documentation`: https://kitconcept.github.io/robotframework-jwt/\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkitconcept%2Frobotframework-jwt","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkitconcept%2Frobotframework-jwt","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkitconcept%2Frobotframework-jwt/lists"}