We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 20e7460 commit ed1f080Copy full SHA for ed1f080
astroquery/astrometry_net/core.py
@@ -37,17 +37,17 @@
37
Astrometry.net API key not set. You should either set this in the astroquery configuration file using:
38
39
[astrometry_net]
40
- api_key = qwdqwjnoi12ioj
+ api_key = ADD_YOUR_API_KEY_HERE
41
42
or you can set it for this session only using the ``conf`` object:
43
44
from astroquery.astrometry_net import conf
45
- conf.api_key = 'qwdqwjnoi12ioj'
+ conf.api_key = 'ADD_YOUR_API_KEY_HERE'
46
47
or using the ``api_key`` property on the ``AstrometryNet`` class:
48
49
from astroquery.astrometry_net import AstrometryNet
50
- AstrometryNet.api_key = 'qwdqwjnoi12ioj'
+ AstrometryNet.api_key = 'ADD_YOUR_API_KEY_HERE'
51
""".lstrip()
52
53
0 commit comments