Skip to content

Commit a864896

Browse files
committed
Prettify docs
1 parent 33eb1ba commit a864896

File tree

2 files changed

+2
-9
lines changed

2 files changed

+2
-9
lines changed

README_FOR_PYPI.md

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ If the python package is hosted on a repository, you can install directly using:
1313
```sh
1414
pip install monday-code
1515
```
16-
(you may need to run `pip` with root permission: `sudo pip install git+https://github.com/GIT_USER_ID/GIT_REPO_ID.git`)
1716

1817
Then import the package:
1918
```python
@@ -22,8 +21,6 @@ import monday_code
2221

2322
## Getting Started
2423

25-
Please follow the [installation procedure](#installation--usage) and then run the following:
26-
2724
```python
2825

2926
import monday_code
@@ -32,11 +29,7 @@ from pprint import pprint
3229

3330
# Defining the host is optional and defaults to http://localhost:59999
3431
# See configuration.py for a list of all supported configuration parameters.
35-
configuration = monday_code.Configuration(
36-
host = "http://localhost:59999"
37-
)
38-
39-
32+
configuration = monday_code.Configuration()
4033

4134
# Enter a context with an instance of the API client
4235
with monday_code.ApiClient(configuration) as api_client:

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
# prerequisite: setuptools
2222
# http://pypi.python.org/pypi/setuptools
2323
NAME = "monday-code"
24-
VERSION = "0.0.3"
24+
VERSION = "0.0.4"
2525
PYTHON_REQUIRES = ">=3.7"
2626
REQUIRES = [
2727
"urllib3 >= 1.25.3, < 2.1.0",

0 commit comments

Comments
 (0)