We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1740b54 commit 718ad90Copy full SHA for 718ad90
1 file changed
docs/index.rst
@@ -29,8 +29,8 @@ This client makes it easy for users to communicate with the MapRoulette API from
29
their Python environment. In the example below, we are able to access a MapRoulette project in just four lines of code:
30
31
>>> import maproulette
32
- >>> config = maproulette.Configuration()
33
- >>> api = maproulette.Api(config)
+ >>> config = maproulette.Configuration(api_key='{YOUR_API_KEY}')
+ >>> api = maproulette.Project(config)
34
>>> api.get_project_by_id(4719)
35
{'data': {'id': 4719, 'owner': 4785024, 'name': 'health_facilities_in_india',...}
36
0 commit comments