-
When trying to run the command owm.weather_history_at_place() I get the following error:
Traceback (most recent call last):
File "/usr/local/lib/python3.4/dist-packages/pyowm-2.5.0-py3.4.egg/pyowm/…
-
Given the following for a town I know there is **only one of** in the UK:
```
location = "Llandinam,UK"
mobs = owm.weather_at_places(location,searchtype='accurate',limit=3)
for mob in mobs:
…
ghost updated
7 years ago
-
Sorry, looking for a quick fix but don't know where to ask. After a year of work without problem it stop now. Trackback refer to this line in my code:
```obs = owm.weather_at_id()```
and
```
…
-
We need a way to notify users that specific functionalities will be removed at some point in the future.
This way should reach as many users as possible, so I guess we need at least:
- a wiki pa…
-
When locations search returns multiple town name results, even on the OWM website their seems to be no way of distinguishing which is which as no county name is given.
The only thing I can think of…
ghost updated
7 years ago
-
I tried a simple python example with both Release 2.4.0 and 2.3.2.
2.3.2 is working as expected but 2.4.0 breaks and return some thing.
```
import pyowm
owm = pyowm.OWM('xxxxxxxxxxxxxxxxxxxxxxxxxxxxx…
-
The OpenWeatherMap API also provides UV indexes data for locations all over the world:
```
http://openweathermap.org/api_uv
```
PyOWM should support this feature as well
-
I am working on a mini project using python and scratch to get the weather details of any city using pyowm.
All the variables are working except the rainfall. This variable always displays 0.0 value…
-
For:
```
location = "Hampshire,uk"
obs = owm.weather_at_place(location)
l = obs.get_location()
name = l.get_name()
print(name)
regID = l.get_id()
print(regID)
```
I get:
```
Hampshire
Traceback (m…
ghost updated
8 years ago
-
Implement @ggstuart 's idea as proposed in PR:
https://github.com/csparpa/pyowm/pull/84