Contributions are welcome, and they are greatly appreciated! Every little bit helps, and credit will always be given.
You can contribute in many ways:
Report bugs at https://github.com/tuttle-dev/tuttle/issues.
If you are reporting a bug, please include:
- Your operating system name and version.
- Any details about your local setup that might be helpful in troubleshooting.
- Detailed steps to reproduce the bug.
Look through the GitHub issues for bugs. Anything tagged with "bug" and "help wanted" is open to whoever wants to implement it.
Look through the GitHub issues for features. Anything tagged with "enhancement" and "help wanted" is open to whoever wants to implement it.
tuttle could always use more documentation, whether as part of the official tuttle docs, in docstrings, or even on the web in blog posts, articles, and such.
The best way to send feedback is to file an issue at https://github.com/tuttle-dev/tuttle/issues.
If you are proposing a feature:
- Explain in detail how it would work.
- Keep the scope as narrow as possible, to make it easier to implement.
- Remember that this is a volunteer-driven project, and that contributions are welcome :)
Ready to contribute? Here's how to set up [tuttle]{.title-ref} for local development.
-
Fork the [tuttle]{.title-ref} repo on GitHub.
-
Clone your fork locally:
$ git clone [email protected]:your_name_here/tuttle.git
-
Install your local copy into a virtualenv. Assuming you have virtualenvwrapper installed, this is how you set up your fork for local development:
$ mkvirtualenv tuttle $ cd tuttle/ $ python setup.py develop
-
Create a branch for local development:
$ git checkout -b name-of-your-bugfix-or-feature
Now you can make your changes locally.
Install the pre-commit hooks before making your first commit to ensure that you match the code style:
$ pre-commit install
-
If you haven't done so already, install and/or activate pyright. The "basic" level should suffice and help you to avoid type errors. If you are getting a type error, ask yourself: Can this occur at runtime?
No -> add
#type: ignore
to the end of the lineYes -> ensure that it doesn't, e.g. by using an
assert
statementOftentimes, type errors indicate bad design, so keep refactoring in mind as a third option.
-
When you're done making changes, check that your changes pass code style checks and the tests:
$ pytest
-
Commit your changes and push your branch to GitHub:
$ git add . $ git commit -m "Your detailed description of your changes." $ git push origin name-of-your-bugfix-or-feature
-
Submit a pull request through the GitHub website.
Before you submit a pull request, check that it meets these guidelines:
- The pull request should include tests.
- If the pull request adds functionality, the docs should be updated. Put your new functionality into a function with a docstring, and add the feature to the list in README.rst.
- The pull request should work for Python 3.8, 3.9, 3.10.
To run a subset of tests:
$ pytest tests.test_tuttle
A reminder for the maintainers on how to deploy. Make sure all your changes are committed (including an entry in HISTORY.rst). Then run:
$ bump2version patch # possible: major / minor / patch
$ git push
$ git push --tags
Travis will then deploy to PyPI if tests pass.
The View
- builds Ui,
- reacts to data changes (by updating the Ui)
- listens for events and forwards them to the Intent
The Intent
- receives events
- if some data is affected by the event, figure out which data source corresponds to that data
- transforms the event data to the data format required by the data source
- transform returned data source data to the data format required by the Ui
- else, no data is affected by the event, handle the event (often using a util class).
- an example of this is sending invoices by mail.
The Model (a.k.a data layer)
- defines the entity
- define the entity source (file, remote API, local database, in-memory cache, etc)
- if a relational database is used, define the entity's relationship to other entities
- maintain the integrity of that relation (conflict strategies for insert operations are defined here, and integrity errors are thrown here, for example)
- defines classes that manipulate this source (open, read, write, ....)
As you go outer in layers (the outmost layer is the Ui, the innermost is the data layer), communication can occur down_ward across layers, and horizontally (for lack of a better word) BUT a layer cannot skip the layer directly below it. This is to say:
-
Data sources can communicate with each other. Thus
ClientDatasource.delete_client
can call.ContractDatasource.get_contract
for example. -
Intents can communicate with each other, and with any data source. Thus
ClientIntent
can callContractIntent
orContractDatasource
for example. The Ui can communicate with any intent (though often the Ui is tied to only a single intent, and the intent can instead call the 'other' intent). But it cannot communicate with a data source -> this would violate the do not skip layers rule. An inner layer cannot have a dependency on the layer above it. Thus an intent cannot instantiate a Ui class, and a data source cannot instantiate an Intent class.