File tree Expand file tree Collapse file tree 11 files changed +22
-16
lines changed
Expand file tree Collapse file tree 11 files changed +22
-16
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,11 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
66
77## [ 0.12.1] - 2024-11-28
88
9+ + Remove python 3.8 support
10+ + Update GitHub location in docs
11+
12+ ## [ 0.12.1] - 2024-11-28
13+
914+ Fix bug in API request when twice-daily forecast was used.
1015
1116## [ 0.12.0] - 2024-11-27
Original file line number Diff line number Diff line change 77_ A Python module for accessing weather data via the [ Met Office] ( http://www.metoffice.gov.uk/ ) 's open data API
88known as [ DataPoint] ( http://www.metoffice.gov.uk/datapoint ) ._
99
10+ __ For personal reasons I have changed my GitHub username. The repository location has changed. The homepage link on PyPi is up-to-date__
11+
1012__ Disclaimer: This module is in no way part of the DataPoint project/service.
1113This module is intended to simplify the use of DataPoint for small Python projects (e.g school projects).
1214No support for this module is provided by the Met Office and may break as the DataPoint service grows/evolves.
@@ -60,7 +62,7 @@ Example output
6062London - Heavy rain
6163```
6264
63- See [ examples directory] ( https://github.com/ejep /datapoint-python/tree/master/examples ) for more in depth examples.
65+ See [ examples directory] ( https://github.com/Perseudonymous /datapoint-python/tree/master/examples ) for more in depth examples.
6466
6567## Contributing changes
6668
Original file line number Diff line number Diff line change @@ -67,5 +67,5 @@ Further Examples
6767----------------
6868
6969For more code examples please have a look in the `examples
70- folder <https://github.com/ejep /datapoint-python/tree/master/examples> `__
70+ folder <https://github.com/perseudonymous /datapoint-python/tree/master/examples> `__
7171in the GitHub project.
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ DataPoint for Python can be installed like any other Python module.
55
66It is available on `PyPI <https://pypi.python.org/pypi/datapoint/ >`__
77and the source is available on
8- `GitHub <https://github.com/ejep /datapoint-python >`__.
8+ `GitHub <https://github.com/perseudonymous /datapoint-python >`__.
99
1010Pip
1111---
@@ -21,26 +21,26 @@ or for the very latest code from the repository’s master branch run:
2121
2222::
2323
24- pip install git+git://github.com/ejep /datapoint-python.git@master
24+ pip install git+git://github.com/perseudonymous /datapoint-python.git@master
2525
2626and to upgrade it in the future:
2727
2828::
2929
30- pip install git+git://github.com/ejep /datapoint-python.git@master --upgrade
30+ pip install git+git://github.com/perseudonymous /datapoint-python.git@master --upgrade
3131
3232Source
3333------
3434
3535You can also install from the source in GitHub.
3636
3737First checkout the GitHub repository (or you can `download the
38- zip <https://github.com/ejep /datapoint-python/archive/master.zip> `__
38+ zip <https://github.com/perseudonymous /datapoint-python/archive/master.zip> `__
3939and extract it).
4040
4141::
4242
43- git clone https://github.com/ejep /datapoint-python.git datapoint-python
43+ git clone https://github.com/perseudonymous /datapoint-python.git datapoint-python
4444
4545Navigate to that directory
4646
Original file line number Diff line number Diff line change 33_ This example displays the current weather and temperature for your location._
44
55### Required Modules
6- * [ datapoint] ( https://github.com/ejep /datapoint-python )
6+ * [ datapoint] ( https://github.com/perseudonymous /datapoint-python )
77
88## Learning Objective
99
Original file line number Diff line number Diff line change 33_ A variation on current_weather.py which uses postcodes rather than lon lat._
44
55### Required Modules
6- * [ datapoint] ( https://github.com/ejep /datapoint-python )
6+ * [ datapoint] ( https://github.com/perseudonymous /datapoint-python )
77 * [ python-postcodes-io] ( https://github.com/raigad/python-postcodes-io )
88
99## Learning Objective
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ _This example gets a 5 day forecast for your location and prints out
44some values from each timestep for each day._
55
66### Required Modules
7- * [ datapoint] ( https://github.com/ejep /datapoint-python )
7+ * [ datapoint] ( https://github.com/perseudonymous /datapoint-python )
88
99## Learning Objective
1010
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ for London to advise you on whether you should cycle or catch the tube around
55London._
66
77### Required Modules
8- * [ datapoint] ( https://github.com/ejep /datapoint-python )
8+ * [ datapoint] ( https://github.com/perseudonymous /datapoint-python )
99 * [ tubestatus] ( https://github.com/jacobtomlinson/tube-status )
1010
1111## Learning Objective
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ _This example checks the forecast for your current location to see if it is goin
44to rain at any stage today. If so it will suggest that you take an umbrella._
55
66### Required Modules
7- * [ datapoint] ( https://github.com/ejep /datapoint-python )
7+ * [ datapoint] ( https://github.com/perseudonymous /datapoint-python )
88
99## Learning Objective
1010
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ _This example looks at the forecast for the next 5 days and suggests which day
44(if any) would be best for hanging your washing out to dry._
55
66### Required Modules
7- * [ datapoint] ( https://github.com/ejep /datapoint-python )
7+ * [ datapoint] ( https://github.com/perseudonymous /datapoint-python )
88
99## Learning Objective
1010
You can’t perform that action at this time.
0 commit comments