telenium


Nametelenium JSON
Version 0.5.1 PyPI version JSON
download
home_pagehttp://github.com/tito/telenium
SummaryKivy automation, can be used to do GUI tests.
upload_time2022-12-16 15:51:25
maintainer
docs_urlNone
authorMathieu Virbel
requires_python
licenseMIT License
keywords kivy automate unittest wait condition
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # Telenium

Telenium provide a framework to remote tests or automation Kivy-based application:

- Selector support using XPATH-like syntax (`//BoxLayout[0]/Button[@text~="Close"]`)
- Create selector by touching the UI
- Query or set attribute on any widgets
- Execute remote code
- `unittests` support
- Integrate as a Kivy modules
- Web IDE
- Python 2 and 3 (since version 0.4, using json-rpc)

![Telenium IDE](https://cloud.githubusercontent.com/assets/37904/22790912/f44b8166-eee7-11e6-9a78-120f78bde220.png)

![Telenium IDE export](https://cloud.githubusercontent.com/assets/37904/22791059/70fb6988-eee8-11e6-91f4-0b87af33b5b6.png)

# Installation

```
pip install telenium
```

# Run the Telenium IDE

It will start a webserver on http://127.0.0.1:8080/ and automatically open a new
tab in your favorite webbrowser. You'll be able to configure where your main.py
is, and start writing tests directly:

```
telenium
```

You can also edit telenium-json:

```
telenium tests/test-ui-myfeature.json
```

# Run the application with telenium module

If you don't use the IDE, in order to remote control your application,
you need the Telenium client installed within your application.

## Method 1: Run your application with telenium client

Telenium can execute your application and manually add telenium_client to it.
Just do:

```python
python -m telenium.execute main.py
```

## Method 2: Import and install telenium client in your application

Telenium client can be imported and installed at the start of your application:

If telenium is fully available:
```python
from telenium import install
install()
```

If you only included `telenium_client.py` module:
```python
from telenium_client import install
install()
```

## Method 3: Add telenium_client as a Kivy modules into your application

Just copy/paste `mods/telenium_client.py` in your application, then before
running your application, initialize it:

```python
from os.path import dirname
from kivy.modules import Modules
from kivy.config import Config
Modules.add_path(dirname(__file__))
Config.set("modules", "telenium_client", "")
```

You also need to add `python-jsonrpc` in your dependencies (`pip install python-jsonrpc`)

# Remote automation

You can easily create a script that will connect to your telenium client, and do stuff.

```python
import telenium
cli = telenium.connect()

# wait until the SaveCSVButton instance is in the widget tree.
cli.wait_click("//SaveCSVButton")
# wait that one label have Export to CSV text
cli.wait("//Label[@text~=\"Export to CSV\"]", timeout=2)
# make a screenshot !
result = cli.screenshot()
print(result["filename"])
print(result["data"])
```

# Connect to a telenium-ready application

We have a command line client to play with. After the application is started,
you can connect with::

    $ python -m telenium.client localhost

Then play with it. `cli` is the telenium client where you can invoke remote
commands. See the `Telenium commands` to see what you can do:

```python
>>> id = cli.pick() # then click somewhere on the UI
>>> cli.click_at(id)
True
>>> cli.setattr("//Label", "color", (0, 1, 0, 1))
True
```

If a command returns True, it means it has been successful, otherwise it
returns None.

# Create unit tests

Telenium have a module you can use that ease unit tests: it launch the app
and execute tests. For now, it has been tested and coded to work only
locally using subprocess.

Additionnal methods:
- `assertExists(selector, timeout=-1)` and
  `assertNotExists(selector, timeout=-1)` to check if a selector exists or not
  in the app. They both have a `timeout` parameter that, if it reach, will fail
  the test.
- `cli.wait_click(selector, timeout=-1)`: easy way to wait a selector to match,
  then click on the first widget.

Here is a real example that launch an app (default is "main.py"):

- It first go in the menu to click where it need to save a CSV (`SaveButton`, `CascadeSaveButton` then `SaveCSVButton`)
- Then wait at maximum 2s the popup to show with a label "Export to CSV"
- Then click on the "Close" button in the popup
- Then ensure the popup is closed by checking the label is gone.

Example:

```python
from telenium.tests import TeleniumTestCase

class UITestCase(TeleniumTestCase):
    cmd_entrypoint = ["main.py"]

    def test_export_csv(self):
        self.cli.wait_click("//SaveButton")
        self.cli.wait_click("//CascadeSaveButton")
        self.cli.wait_click("//SaveCSVButton")
        self.assertExists("//Label[@text~=\"Export to CSV\"]", timeout=2)
        self.cli.wait_click("//FitButton[@text=\"Close\"]", timeout=2)
        self.assertNotExists("//Label[@text~=\"Export to CSV\"]", timeout=2)
```

Each new TeleniumTestCase will close and start the application, so you always
run from a clean app. If you always need to do something before starting the
test, you can overload the `init`. This will be executed once before any
tests in the class starts:

```python
class UITestCase(TeleniumTestCase):
    def init(self):
        self.cli.wait_click("//PresetSelectionItem[@text!~=\"ttyUSB0 on mintel\"]",
                           timeout=10)
        self.cli.wait_click("//Button[@text=\"Connect\"]")
        self.cli.wait("//BottomLabel[@text=\"Done\"]", timeout=10)
```

You can also change few parameters to change/add things in your application for
unit testing if needed:

```python
class UITestCase(TeleniumTestCase):
    process_start_timeout = 5
    cmd_env = {"I_AM_RUNNING_TEST": 1}
```

# Telenium commands

## `version()`

Return the current API version. You can use it to know which methods are
available.

```python
>>> cli.version()
1
```

## `select(selector)`

Return unique selectors for all widgets that matches the `selector`.

```python
>>> cli.select("//Label")
[u"/WindowSDL/GridLayout/Label[0]", u"/WindowSDL/GridLayout/Label[1]"]
```

## `getattr(selector, key)`

Return the value of an attribute on the first widget found by the `selector`.

```python
>>> cli.getattr("//Label", "text")
u"Hello world"
```

## `setattr(selector, key, value)`

Set an attribute named by `key` to `value` for all widgets that matches the
`selector`.

```python
>>> cli.setattr("//Label", "text", "Plop")
True
```

## `element(selector)`

Return `True` if at least one widget match the `selector`.

```python
>>> cli.element("//Label")
True
>>> cli.element("//InvalidButton")
False
```

## `execute(code)`

Execute python code in the application. Only the "app" symbol that point to the
current running application is available. Return True if the code executed, or
False if the code failed. Exception will be print withing the application logs.

```python
>>> cli.execute("app.call_one_app_method")
True
```

## `pick(all=False)`

Return either the first widget selector you touch on the screen (`all=False`,
the default), either it return the list of all the wigdets that are traversed
where you touch the screen.

```python
>>> cli.pick()
u'/WindowSDL/Button[0]'
>>> cli.pick(all=True)
[u'/WindowSDL/Button[0]',u'/WindowSDL']
```

## `click_on(selector)`

Simulate a touch down/up on the first widget that match the `selector`. Return
True if it worked.

```python
>>> cli.click_on("//Button[0]")
True
```

## `screenshot(filename=None)` (>= 0.5.0)

Take a screenshot of the current application in a PNG format.
Data will be saved into filename if passed, or you can have data in the result.

```python
>>> cli.screenshot("hello.png")
{"filename": "hello.png", "data": "base64 utf-8 encoded data..."}
```

## `evaluate(expr)` (>= 0.5.0)

Evaluate an expression, and return the result. Only serializable result can be
fetched, if an object is sent back, you'll receive None.

```python
>>> cli.evaluate("len(app.my_list)")
123
```

## `evaluate_and_store(key, expr)` (>= 0.5.0)

Evaluate an expression, and store the result in a id-map, used by `execute` and `evaluate` method.

```python
>>> cli.evaluate_and_store("root", "app.root.children[0]")
True
>>> cli.execute("root.do_something()")
```

## `select_and_store(key, selector)` (>= 0.5.0)

Select the first widget returned by a selector, and store the result in a id-map, used by `execute` and `evaluate` method.

```python
>>> cli.select_and_store("btn", "//Button[@title~='Login']")
True
>>> cli.execute("btn.disabled = True")
```


# Telenium selector syntax (XPATH)

Cheat sheet about telenium XPATH-based selector implementation.

- Select any widget that match the widget class in the hierarchy: `//CLASS`
- Select a widget that match the tree: `/CLASS`
- Select a widget with attributes `/CLASS[<ATTR SELECTOR>,...]`
- Index selector if there is multiple match: `/CLASS[INDEX]`
- Attribute exists: `@attr`
- Attribute equal to a value: `@attr=VALUE`
- Attribute not equal to a value: `@attr!=VALUE`
- Attribute contain a value: `@attr~=VALUE`
- Attribute does not contain a value: `@attr!~=VALUE`
- Value can be a string, but must be escaped within double quote only.

Some examples:

```
# Select all the boxlayout in the app
//BoxLayout

# Take the first boxlayout
//BoxLayout[0]

# Get the Button as a direct descendant of the BoxLayout
//BoxLayout[0]/Button

# Or get the 5th Button that are anywhere under the BoxLayout (may or may
# not a direct descandant)
//BoxLayout[0]//Button

# Select the button that is written "Close"
//BoxLayout[0]//Button[@text="Close"]

# Select the button that contain "Close"
//BoxLayout[0]//Button[@text~="Close"]
```

# Real life examples

## Automate screenshots of an app

I was having an app where content is displayed randomly. But the client want to review all the texts and position of every content. Easy peasy::

```python
from telenium import connect
prefix = "screenshots/myapp-"

cli = connect()
cli.wait("//MyAppContainer")
cli.select_and_store("root", "//MyAppContainer")

animals_count = cli.evaluate("len(root.animals)")
for index in range(animals_count):
    # get one animal
    cli.evaluate_and_store("animal", f"root.animals[{index}]")
    animal_id = cli.evaluate("animal['id']")
    animal_name = cli.evaluate("animal['title_en']")
    # focus the animal
    cli.execute("root.focus_animal(animal)")
    cli.sleep(3)
    # take a screenshot
    cli.screenshot(f"{prefix}{animal_id}-{animal_name}.png")
    cli.sleep(3)
```

## Automate login and go directly to the right screen

If you code, close your app, restart, login, do many action before reaching the screen you are currently working on, you could automate the first part.

```python
from telenium import connect
cli = connect()
cli.wait('//IntroUI')
cli.execute("app.username = 'username'")
cli.execute("app.userpwd = 'fake'")
cli.click_on('//LoginButton')
cli.wait('//IntroUI')
cli.click_on('//StartButton')
cli.wait('//GameUI')
```

            

Raw data

            {
    "_id": null,
    "home_page": "http://github.com/tito/telenium",
    "name": "telenium",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "kivy,automate,unittest,wait,condition",
    "author": "Mathieu Virbel",
    "author_email": "mat@meltingrocks.com",
    "download_url": "https://files.pythonhosted.org/packages/49/50/a3ba012ec1d31b64ce7e5d58e4a7a28d5c5203f64bb254e36078233e778f/telenium-0.5.1.tar.gz",
    "platform": "any",
    "description": "# Telenium\n\nTelenium provide a framework to remote tests or automation Kivy-based application:\n\n- Selector support using XPATH-like syntax (`//BoxLayout[0]/Button[@text~=\"Close\"]`)\n- Create selector by touching the UI\n- Query or set attribute on any widgets\n- Execute remote code\n- `unittests` support\n- Integrate as a Kivy modules\n- Web IDE\n- Python 2 and 3 (since version 0.4, using json-rpc)\n\n![Telenium IDE](https://cloud.githubusercontent.com/assets/37904/22790912/f44b8166-eee7-11e6-9a78-120f78bde220.png)\n\n![Telenium IDE export](https://cloud.githubusercontent.com/assets/37904/22791059/70fb6988-eee8-11e6-91f4-0b87af33b5b6.png)\n\n# Installation\n\n```\npip install telenium\n```\n\n# Run the Telenium IDE\n\nIt will start a webserver on http://127.0.0.1:8080/ and automatically open a new\ntab in your favorite webbrowser. You'll be able to configure where your main.py\nis, and start writing tests directly:\n\n```\ntelenium\n```\n\nYou can also edit telenium-json:\n\n```\ntelenium tests/test-ui-myfeature.json\n```\n\n# Run the application with telenium module\n\nIf you don't use the IDE, in order to remote control your application,\nyou need the Telenium client installed within your application.\n\n## Method 1: Run your application with telenium client\n\nTelenium can execute your application and manually add telenium_client to it.\nJust do:\n\n```python\npython -m telenium.execute main.py\n```\n\n## Method 2: Import and install telenium client in your application\n\nTelenium client can be imported and installed at the start of your application:\n\nIf telenium is fully available:\n```python\nfrom telenium import install\ninstall()\n```\n\nIf you only included `telenium_client.py` module:\n```python\nfrom telenium_client import install\ninstall()\n```\n\n## Method 3: Add telenium_client as a Kivy modules into your application\n\nJust copy/paste `mods/telenium_client.py` in your application, then before\nrunning your application, initialize it:\n\n```python\nfrom os.path import dirname\nfrom kivy.modules import Modules\nfrom kivy.config import Config\nModules.add_path(dirname(__file__))\nConfig.set(\"modules\", \"telenium_client\", \"\")\n```\n\nYou also need to add `python-jsonrpc` in your dependencies (`pip install python-jsonrpc`)\n\n# Remote automation\n\nYou can easily create a script that will connect to your telenium client, and do stuff.\n\n```python\nimport telenium\ncli = telenium.connect()\n\n# wait until the SaveCSVButton instance is in the widget tree.\ncli.wait_click(\"//SaveCSVButton\")\n# wait that one label have Export to CSV text\ncli.wait(\"//Label[@text~=\\\"Export to CSV\\\"]\", timeout=2)\n# make a screenshot !\nresult = cli.screenshot()\nprint(result[\"filename\"])\nprint(result[\"data\"])\n```\n\n# Connect to a telenium-ready application\n\nWe have a command line client to play with. After the application is started,\nyou can connect with::\n\n    $ python -m telenium.client localhost\n\nThen play with it. `cli` is the telenium client where you can invoke remote\ncommands. See the `Telenium commands` to see what you can do:\n\n```python\n>>> id = cli.pick() # then click somewhere on the UI\n>>> cli.click_at(id)\nTrue\n>>> cli.setattr(\"//Label\", \"color\", (0, 1, 0, 1))\nTrue\n```\n\nIf a command returns True, it means it has been successful, otherwise it\nreturns None.\n\n# Create unit tests\n\nTelenium have a module you can use that ease unit tests: it launch the app\nand execute tests. For now, it has been tested and coded to work only\nlocally using subprocess.\n\nAdditionnal methods:\n- `assertExists(selector, timeout=-1)` and\n  `assertNotExists(selector, timeout=-1)` to check if a selector exists or not\n  in the app. They both have a `timeout` parameter that, if it reach, will fail\n  the test.\n- `cli.wait_click(selector, timeout=-1)`: easy way to wait a selector to match,\n  then click on the first widget.\n\nHere is a real example that launch an app (default is \"main.py\"):\n\n- It first go in the menu to click where it need to save a CSV (`SaveButton`, `CascadeSaveButton` then `SaveCSVButton`)\n- Then wait at maximum 2s the popup to show with a label \"Export to CSV\"\n- Then click on the \"Close\" button in the popup\n- Then ensure the popup is closed by checking the label is gone.\n\nExample:\n\n```python\nfrom telenium.tests import TeleniumTestCase\n\nclass UITestCase(TeleniumTestCase):\n    cmd_entrypoint = [\"main.py\"]\n\n    def test_export_csv(self):\n        self.cli.wait_click(\"//SaveButton\")\n        self.cli.wait_click(\"//CascadeSaveButton\")\n        self.cli.wait_click(\"//SaveCSVButton\")\n        self.assertExists(\"//Label[@text~=\\\"Export to CSV\\\"]\", timeout=2)\n        self.cli.wait_click(\"//FitButton[@text=\\\"Close\\\"]\", timeout=2)\n        self.assertNotExists(\"//Label[@text~=\\\"Export to CSV\\\"]\", timeout=2)\n```\n\nEach new TeleniumTestCase will close and start the application, so you always\nrun from a clean app. If you always need to do something before starting the\ntest, you can overload the `init`. This will be executed once before any\ntests in the class starts:\n\n```python\nclass UITestCase(TeleniumTestCase):\n    def init(self):\n        self.cli.wait_click(\"//PresetSelectionItem[@text!~=\\\"ttyUSB0 on mintel\\\"]\",\n                           timeout=10)\n        self.cli.wait_click(\"//Button[@text=\\\"Connect\\\"]\")\n        self.cli.wait(\"//BottomLabel[@text=\\\"Done\\\"]\", timeout=10)\n```\n\nYou can also change few parameters to change/add things in your application for\nunit testing if needed:\n\n```python\nclass UITestCase(TeleniumTestCase):\n    process_start_timeout = 5\n    cmd_env = {\"I_AM_RUNNING_TEST\": 1}\n```\n\n# Telenium commands\n\n## `version()`\n\nReturn the current API version. You can use it to know which methods are\navailable.\n\n```python\n>>> cli.version()\n1\n```\n\n## `select(selector)`\n\nReturn unique selectors for all widgets that matches the `selector`.\n\n```python\n>>> cli.select(\"//Label\")\n[u\"/WindowSDL/GridLayout/Label[0]\", u\"/WindowSDL/GridLayout/Label[1]\"]\n```\n\n## `getattr(selector, key)`\n\nReturn the value of an attribute on the first widget found by the `selector`.\n\n```python\n>>> cli.getattr(\"//Label\", \"text\")\nu\"Hello world\"\n```\n\n## `setattr(selector, key, value)`\n\nSet an attribute named by `key` to `value` for all widgets that matches the\n`selector`.\n\n```python\n>>> cli.setattr(\"//Label\", \"text\", \"Plop\")\nTrue\n```\n\n## `element(selector)`\n\nReturn `True` if at least one widget match the `selector`.\n\n```python\n>>> cli.element(\"//Label\")\nTrue\n>>> cli.element(\"//InvalidButton\")\nFalse\n```\n\n## `execute(code)`\n\nExecute python code in the application. Only the \"app\" symbol that point to the\ncurrent running application is available. Return True if the code executed, or\nFalse if the code failed. Exception will be print withing the application logs.\n\n```python\n>>> cli.execute(\"app.call_one_app_method\")\nTrue\n```\n\n## `pick(all=False)`\n\nReturn either the first widget selector you touch on the screen (`all=False`,\nthe default), either it return the list of all the wigdets that are traversed\nwhere you touch the screen.\n\n```python\n>>> cli.pick()\nu'/WindowSDL/Button[0]'\n>>> cli.pick(all=True)\n[u'/WindowSDL/Button[0]',u'/WindowSDL']\n```\n\n## `click_on(selector)`\n\nSimulate a touch down/up on the first widget that match the `selector`. Return\nTrue if it worked.\n\n```python\n>>> cli.click_on(\"//Button[0]\")\nTrue\n```\n\n## `screenshot(filename=None)` (>= 0.5.0)\n\nTake a screenshot of the current application in a PNG format.\nData will be saved into filename if passed, or you can have data in the result.\n\n```python\n>>> cli.screenshot(\"hello.png\")\n{\"filename\": \"hello.png\", \"data\": \"base64 utf-8 encoded data...\"}\n```\n\n## `evaluate(expr)` (>= 0.5.0)\n\nEvaluate an expression, and return the result. Only serializable result can be\nfetched, if an object is sent back, you'll receive None.\n\n```python\n>>> cli.evaluate(\"len(app.my_list)\")\n123\n```\n\n## `evaluate_and_store(key, expr)` (>= 0.5.0)\n\nEvaluate an expression, and store the result in a id-map, used by `execute` and `evaluate` method.\n\n```python\n>>> cli.evaluate_and_store(\"root\", \"app.root.children[0]\")\nTrue\n>>> cli.execute(\"root.do_something()\")\n```\n\n## `select_and_store(key, selector)` (>= 0.5.0)\n\nSelect the first widget returned by a selector, and store the result in a id-map, used by `execute` and `evaluate` method.\n\n```python\n>>> cli.select_and_store(\"btn\", \"//Button[@title~='Login']\")\nTrue\n>>> cli.execute(\"btn.disabled = True\")\n```\n\n\n# Telenium selector syntax (XPATH)\n\nCheat sheet about telenium XPATH-based selector implementation.\n\n- Select any widget that match the widget class in the hierarchy: `//CLASS`\n- Select a widget that match the tree: `/CLASS`\n- Select a widget with attributes `/CLASS[<ATTR SELECTOR>,...]`\n- Index selector if there is multiple match: `/CLASS[INDEX]`\n- Attribute exists: `@attr`\n- Attribute equal to a value: `@attr=VALUE`\n- Attribute not equal to a value: `@attr!=VALUE`\n- Attribute contain a value: `@attr~=VALUE`\n- Attribute does not contain a value: `@attr!~=VALUE`\n- Value can be a string, but must be escaped within double quote only.\n\nSome examples:\n\n```\n# Select all the boxlayout in the app\n//BoxLayout\n\n# Take the first boxlayout\n//BoxLayout[0]\n\n# Get the Button as a direct descendant of the BoxLayout\n//BoxLayout[0]/Button\n\n# Or get the 5th Button that are anywhere under the BoxLayout (may or may\n# not a direct descandant)\n//BoxLayout[0]//Button\n\n# Select the button that is written \"Close\"\n//BoxLayout[0]//Button[@text=\"Close\"]\n\n# Select the button that contain \"Close\"\n//BoxLayout[0]//Button[@text~=\"Close\"]\n```\n\n# Real life examples\n\n## Automate screenshots of an app\n\nI was having an app where content is displayed randomly. But the client want to review all the texts and position of every content. Easy peasy::\n\n```python\nfrom telenium import connect\nprefix = \"screenshots/myapp-\"\n\ncli = connect()\ncli.wait(\"//MyAppContainer\")\ncli.select_and_store(\"root\", \"//MyAppContainer\")\n\nanimals_count = cli.evaluate(\"len(root.animals)\")\nfor index in range(animals_count):\n    # get one animal\n    cli.evaluate_and_store(\"animal\", f\"root.animals[{index}]\")\n    animal_id = cli.evaluate(\"animal['id']\")\n    animal_name = cli.evaluate(\"animal['title_en']\")\n    # focus the animal\n    cli.execute(\"root.focus_animal(animal)\")\n    cli.sleep(3)\n    # take a screenshot\n    cli.screenshot(f\"{prefix}{animal_id}-{animal_name}.png\")\n    cli.sleep(3)\n```\n\n## Automate login and go directly to the right screen\n\nIf you code, close your app, restart, login, do many action before reaching the screen you are currently working on, you could automate the first part.\n\n```python\nfrom telenium import connect\ncli = connect()\ncli.wait('//IntroUI')\ncli.execute(\"app.username = 'username'\")\ncli.execute(\"app.userpwd = 'fake'\")\ncli.click_on('//LoginButton')\ncli.wait('//IntroUI')\ncli.click_on('//StartButton')\ncli.wait('//GameUI')\n```\n",
    "bugtrack_url": null,
    "license": "MIT License",
    "summary": "Kivy automation, can be used to do GUI tests.",
    "version": "0.5.1",
    "split_keywords": [
        "kivy",
        "automate",
        "unittest",
        "wait",
        "condition"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "md5": "765c56beb76feaf4d61cc33fe5c9c054",
                "sha256": "2fc68de919e825b4ecfbc4a7ea28be310c29030b6700b23df5e6604eed5205cb"
            },
            "downloads": -1,
            "filename": "telenium-0.5.1-py2.py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "765c56beb76feaf4d61cc33fe5c9c054",
            "packagetype": "bdist_wheel",
            "python_version": "py2.py3",
            "requires_python": null,
            "size": 332684,
            "upload_time": "2022-12-16T15:51:23",
            "upload_time_iso_8601": "2022-12-16T15:51:23.304448Z",
            "url": "https://files.pythonhosted.org/packages/b4/c0/98adee9120c2b6cd2f2f3a60d851d48fcd30c20c0e00160cc38be743f891/telenium-0.5.1-py2.py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "2ab8957b23018278a1cdabe0f9c2fa37",
                "sha256": "0a6d21cb970279237bbce37065e154c116b39ffeb3a1acab40cdf310591f9c42"
            },
            "downloads": -1,
            "filename": "telenium-0.5.1.tar.gz",
            "has_sig": false,
            "md5_digest": "2ab8957b23018278a1cdabe0f9c2fa37",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 332038,
            "upload_time": "2022-12-16T15:51:25",
            "upload_time_iso_8601": "2022-12-16T15:51:25.346538Z",
            "url": "https://files.pythonhosted.org/packages/49/50/a3ba012ec1d31b64ce7e5d58e4a7a28d5c5203f64bb254e36078233e778f/telenium-0.5.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2022-12-16 15:51:25",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "github_user": "tito",
    "github_project": "telenium",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "lcname": "telenium"
}
        
Elapsed time: 0.02372s