{"id":50330770,"url":"https://github.com/beeware/helloworld","last_synced_at":"2026-05-29T09:30:56.051Z","repository":{"id":357710578,"uuid":"1238132551","full_name":"beeware/helloworld","owner":"beeware","description":"The BeeWare Tutorial project","archived":false,"fork":false,"pushed_at":"2026-05-13T23:43:30.000Z","size":19,"stargazers_count":0,"open_issues_count":0,"forks_count":1,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-05-14T01:42:45.309Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"bsd-3-clause","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/beeware.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG","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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null},"funding":{"github":["freakboy3742"],"custom":["https://beeware.org/bee/join"]}},"created_at":"2026-05-13T21:01:17.000Z","updated_at":"2026-05-13T23:43:33.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/beeware/helloworld","commit_stats":null,"previous_names":["beeware/helloworld"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/beeware/helloworld","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/beeware%2Fhelloworld","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/beeware%2Fhelloworld/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/beeware%2Fhelloworld/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/beeware%2Fhelloworld/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/beeware","download_url":"https://codeload.github.com/beeware/helloworld/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/beeware%2Fhelloworld/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33646419,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-05-29T02:00:06.066Z","response_time":107,"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":"2026-05-29T09:30:53.025Z","updated_at":"2026-05-29T09:30:56.044Z","avatar_url":"https://github.com/beeware.png","language":"Python","funding_links":["https://github.com/sponsors/freakboy3742","https://beeware.org/bee/join"],"categories":[],"sub_categories":[],"readme":"\u003ca href=\"https://beeware.org\"\u003e\u003cimg src=\"https://beeware.org/static/images/brutus-270.png\" alt=\"BeeWare Logo\" height=\"72\"\u003e\u003c/a\u003e \u003c!-- rumdl-disable-line MD033 MD041 --\u003e\n\n# HelloWorld\n\n[![Discord server](https://img.shields.io/discord/836455665257021440?label=Discord%20Chat\u0026logo=discord\u0026style=plastic)](https://beeware.org/bee/chat/)\n\nThis repository is the code for the [BeeWare tutorial](https://tutorial.beeware.org/), saved as a project.\n\n## Getting started\n\nFor the full tutorial experience, visit https://tutorial.beeware.org/ and follow the instructions there. However, if you're looking for a quick sampler of development using BeeWare, you can do the following:\n\n### Prerequisites\n\nYou will need a supported Python3 interpreter. In addition, you will need the following platform-specific tools:\n\n* **macOS**: Ensure you have installed Xcode, and have accepted the Xcode license. If you're unsure if you've accespted the Xcode license, run `sudo xcodebuild -license`.\n* **Windows**: Ensure that you are *not* using Python 3.14+\n* **Linux**: Install [system dependencies for your distribution](https://tutorial.beeware.org/tutorial/tutorial-0/#__tabbed_1_2).\n\n### Run the tutorial app\n\nOnce you've installed the pre-requisites:\n\n1. Fork this repository into your own GitHub account by clicking the \"Fork\" button at the top of this page.\n\n2. Check out your fork onto your own machine. Run `git clone https://github.com/brutus/helloworld` (replacing `brutus` with your own Github username).\n\n3. Change into the helloworld directory: `cd helloworld`\n\n4. Create a virtual environment: `python3 -m venv venv`\n\n5. Activate the new virtual environment: `source venv/bin/activate`\n\n6. Install Briefcase: `python -m pip install briefcase`\n\n7. Run the project in developer mode: `briefcase dev`\n\n8. Run the project in developer mode: `briefcase run`\n\n9. Package the project into an installer: `briefcase package --adhoc`\n\n### What next?\n\nYou've now got a fully functioning BeeWare app, packaged for distribution.\n\nYou can now modify the code in the app. Try some of the following tasks:\n\n* Alter the title of the dialog\n* Alter the text of the dialog to display a different greeting for some people (e.g., say \"Hail, Brutus!\" if the user's name is Brutus)\n* Add a second button that displays a second dialog\n\nAfter making each of your changes, run `briefcase dev` to test the changes in developer mode. Once you've got some changes that you're happy with, run `briefcase run -u` to update and run the updated version of the app.\n\n## Community\n\nYou can talk to the BeeWare community through:\n\n- [@beeware@fosstodon.org on Mastodon](https://fosstodon.org/@beeware)\n- [Discord](https://beeware.org/bee/chat/)\n\nWe foster a welcoming and respectful community as described in our [BeeWare Community Code of Conduct](https://beeware.org/community/behavior/code-of-conduct/).\n\n## Contributing\n\nIf you experience problems with the BeeWare Tutorial, [log them on GitHub](https://github.com/beeware/beeware-tutorial/issues). If you want to contribute code, please [fork the code](https://github.com/beeware/beeware-tutorial) and [submit a pull request](https://github.com/beeware/beeware-tutorial/pulls).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbeeware%2Fhelloworld","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbeeware%2Fhelloworld","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbeeware%2Fhelloworld/lists"}