wad2023-program


Namewad2023-program JSON
Version 1.3.0 PyPI version JSON
download
home_page
SummaryScript to retrieve the program for WeAreDevelopers 2023 conference
upload_time2023-07-07 21:00:15
maintainer
docs_urlNone
author
requires_python>=3.10
licenseMIT License Copyright (c) 2023 Daryl Stark Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
keywords conference program wearedevelopers wearedevs
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # WeAreDevelopers 2023 - Program CLI

In less then a month, the [WeAreDevelopers 2023](https://www.wearedevelopers.com/world-congress) conference is finally starting! Two days of being with like-minded people, talking about code and infrastructure! If you're like me, you're very excited about this, but a bit overwhelmed by the 236 session that are planned. It's difficult to pick the sessions that are right for me. The [programpage](https://www.wearedevelopers.com/world-congress/program) on the website is not really to my liking, so I decided to create a small CLI script to browse through the sessions.

# Installation

Installation can be done using `pip`:

```bash
pip install wad2023-program
```

## Usage

After installing, the CLI script can be executed by executing the `wad23` command in your browser. The CLI arguments contain two groups. The syntax is `wad23 <group> [optional argument]`

-   `wad23 sync`: syncs the database with the sessions on the website of the conference. This should be done before using the command.
-   `wad23 sessions`: lists the sessions in the database.
    -   You can filter the sessions with the following optional arguments:
        -   `--title`: filter on specific words in the title.
        -   `--description`: filter on specific words in the description.
        -   `--find`: filter on specific words in the description and the title.
        -   `--speaker`: filter on specific words in the names of the speakers.
        -   `--speaker-tagline`: filter on specific words in the tagline of the speakers.
        -   `--speakers-bio`: filter on specific words in the bio of the speakers.
        -   `--only-favourite`: display only sessions that you marked as favourite.
        -   `--no-only-favourite`: display only sessions that you not marked as favourite.
    -   You can also specify how to output the file:
        -   `--output=table`: the default; displays a table with the sessions
        -   `--output=details`: displays the sessions with extra details, like the speakers and the description.
        -   `--output=csv`: displays the sessions in CSV format.
    -   And you can mark sessions as favourite:
        -   `--set-as-favourite`: set the selected sessions as favourite.
        -   `--no-set-as-favourite`: set the selected sessions as not favourite.

## Configuration

There is not much to configure for the application, but there are a few configuration options you have. These configuration options are set with environment variables:

-   `DB_CONNECTION_STR`: set the connection string for the database. By default it uses a `SQLite` database in the local directory, but you can, for instance, use a PostgreSQL database by specifing `postgresql+pg8000://<username:<password>@<server>/<database-name>`.
-   `PROGRAM_ID` and `WORKSHOPS_ID`: the ID for Sessionize for the program and the workshops. The defaults are good for WeAreDevelopers 2023.

            

Raw data

            {
    "_id": null,
    "home_page": "",
    "name": "wad2023-program",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.10",
    "maintainer_email": "",
    "keywords": "conference,program,wearedevelopers,wearedevs",
    "author": "",
    "author_email": "Daryl Stark <daryl@dstark.nl>",
    "download_url": "https://files.pythonhosted.org/packages/f1/9d/93d6fadc2ad7034aa2cdee81c46bfdb746277033c09fadc128e240c9edab/wad2023-program-1.3.0.tar.gz",
    "platform": null,
    "description": "# WeAreDevelopers 2023 - Program CLI\n\nIn less then a month, the [WeAreDevelopers 2023](https://www.wearedevelopers.com/world-congress) conference is finally starting! Two days of being with like-minded people, talking about code and infrastructure! If you're like me, you're very excited about this, but a bit overwhelmed by the 236 session that are planned. It's difficult to pick the sessions that are right for me. The [programpage](https://www.wearedevelopers.com/world-congress/program) on the website is not really to my liking, so I decided to create a small CLI script to browse through the sessions.\n\n# Installation\n\nInstallation can be done using `pip`:\n\n```bash\npip install wad2023-program\n```\n\n## Usage\n\nAfter installing, the CLI script can be executed by executing the `wad23` command in your browser. The CLI arguments contain two groups. The syntax is `wad23 <group> [optional argument]`\n\n-   `wad23 sync`: syncs the database with the sessions on the website of the conference. This should be done before using the command.\n-   `wad23 sessions`: lists the sessions in the database.\n    -   You can filter the sessions with the following optional arguments:\n        -   `--title`: filter on specific words in the title.\n        -   `--description`: filter on specific words in the description.\n        -   `--find`: filter on specific words in the description and the title.\n        -   `--speaker`: filter on specific words in the names of the speakers.\n        -   `--speaker-tagline`: filter on specific words in the tagline of the speakers.\n        -   `--speakers-bio`: filter on specific words in the bio of the speakers.\n        -   `--only-favourite`: display only sessions that you marked as favourite.\n        -   `--no-only-favourite`: display only sessions that you not marked as favourite.\n    -   You can also specify how to output the file:\n        -   `--output=table`: the default; displays a table with the sessions\n        -   `--output=details`: displays the sessions with extra details, like the speakers and the description.\n        -   `--output=csv`: displays the sessions in CSV format.\n    -   And you can mark sessions as favourite:\n        -   `--set-as-favourite`: set the selected sessions as favourite.\n        -   `--no-set-as-favourite`: set the selected sessions as not favourite.\n\n## Configuration\n\nThere is not much to configure for the application, but there are a few configuration options you have. These configuration options are set with environment variables:\n\n-   `DB_CONNECTION_STR`: set the connection string for the database. By default it uses a `SQLite` database in the local directory, but you can, for instance, use a PostgreSQL database by specifing `postgresql+pg8000://<username:<password>@<server>/<database-name>`.\n-   `PROGRAM_ID` and `WORKSHOPS_ID`: the ID for Sessionize for the program and the workshops. The defaults are good for WeAreDevelopers 2023.\n",
    "bugtrack_url": null,
    "license": "MIT License  Copyright (c) 2023 Daryl Stark  Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:  The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.  THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ",
    "summary": "Script to retrieve the program for WeAreDevelopers 2023 conference",
    "version": "1.3.0",
    "project_urls": {
        "homepage": "https://github.com/DarylStark/WeAreDevelopers_2023_Program",
        "repository": "https://github.com/DarylStark/WeAreDevelopers_2023_Program"
    },
    "split_keywords": [
        "conference",
        "program",
        "wearedevelopers",
        "wearedevs"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "555ea0f1e9f95d1ac8ef13c9ee3077a0bf337b71363eb5d3a60b04c61c45cab0",
                "md5": "931093c3fa12af6d0d133bc33db3ff4a",
                "sha256": "61426c40c9e415b644a4ffd458eb0675eeca933b9b09cae7b3356a2cfcac4a2e"
            },
            "downloads": -1,
            "filename": "wad2023_program-1.3.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "931093c3fa12af6d0d133bc33db3ff4a",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.10",
            "size": 14661,
            "upload_time": "2023-07-07T21:00:14",
            "upload_time_iso_8601": "2023-07-07T21:00:14.328328Z",
            "url": "https://files.pythonhosted.org/packages/55/5e/a0f1e9f95d1ac8ef13c9ee3077a0bf337b71363eb5d3a60b04c61c45cab0/wad2023_program-1.3.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f19d93d6fadc2ad7034aa2cdee81c46bfdb746277033c09fadc128e240c9edab",
                "md5": "26d9a32b505e49b90368db43f5096fa6",
                "sha256": "48450fccf08fc13f527a8cc11d7e264c2ff7e294e39b2c0e2c3cf31869727eac"
            },
            "downloads": -1,
            "filename": "wad2023-program-1.3.0.tar.gz",
            "has_sig": false,
            "md5_digest": "26d9a32b505e49b90368db43f5096fa6",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.10",
            "size": 13530,
            "upload_time": "2023-07-07T21:00:15",
            "upload_time_iso_8601": "2023-07-07T21:00:15.716372Z",
            "url": "https://files.pythonhosted.org/packages/f1/9d/93d6fadc2ad7034aa2cdee81c46bfdb746277033c09fadc128e240c9edab/wad2023-program-1.3.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-07-07 21:00:15",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "DarylStark",
    "github_project": "WeAreDevelopers_2023_Program",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "wad2023-program"
}
        
Elapsed time: 0.08988s