Skip to content

Commit 4732483

Browse files
refactor: first try to fix the authory of the git history
1 parent d93813a commit 4732483

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

73 files changed

+349
-316
lines changed

docs/api/juju.loop.rst

-13
This file was deleted.

docs/api/modules.rst

-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ Public APIs
22
===========
33

44
It is recommended that you start with :doc:`juju.model` or :doc:`juju.controller`.
5-
If you need helpers to manage the asyncio loop, try :doc:`juju.loop`.
65

76
.. toctree::
87

@@ -16,7 +15,6 @@ If you need helpers to manage the asyncio loop, try :doc:`juju.loop`.
1615
juju.errors
1716
juju.exceptions
1817
juju.juju
19-
juju.loop
2018
juju.machine
2119
juju.model
2220
juju.placement

examples/action.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@
1010
1111
"""
1212

13+
import asyncio
1314
import logging
1415

15-
from juju import jasyncio
1616
from juju.model import Model
1717

1818

@@ -50,4 +50,4 @@ async def main():
5050
logging.basicConfig(level=logging.DEBUG)
5151
ws_logger = logging.getLogger("websockets.protocol")
5252
ws_logger.setLevel(logging.INFO)
53-
jasyncio.run(main())
53+
asyncio.run(main())

examples/add_k8s.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,13 @@
1010
1111
"""
1212

13+
import asyncio
1314
import base64
1415
import logging
1516
import os
1617

1718
import yaml
1819

19-
from juju import jasyncio
2020
from juju.client import client
2121
from juju.controller import Controller
2222

@@ -58,4 +58,4 @@ async def main():
5858
logging.basicConfig(level=logging.DEBUG)
5959
ws_logger = logging.getLogger("websockets.protocol")
6060
ws_logger.setLevel(logging.INFO)
61-
jasyncio.run(main())
61+
asyncio.run(main())

examples/add_machine.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@
1111
1212
"""
1313

14+
import asyncio
1415
import logging
1516

16-
from juju import jasyncio
1717
from juju.model import Model
1818

1919
MB = 1
@@ -69,4 +69,4 @@ async def main():
6969
ws_logger = logging.getLogger("websockets.protocol")
7070
ws_logger.setLevel(logging.INFO)
7171

72-
jasyncio.run(main())
72+
asyncio.run(main())

examples/add_model.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
import uuid
1414
from logging import getLogger
1515

16-
from juju import jasyncio, utils
16+
from juju import utils
1717
from juju.controller import Controller
1818

1919
LOG = getLogger(__name__)
@@ -65,4 +65,4 @@ async def main():
6565

6666

6767
if __name__ == "__main__":
68-
jasyncio.run(main())
68+
asyncio.run(main())

examples/add_secrets_backend.py

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
# Copyright 2023 Canonical Ltd.
22
# Licensed under the Apache V2, see LICENCE file for details.
33

4+
import asyncio
5+
46
import hvac
57

6-
from juju import jasyncio
78
from juju.model import Model
89

910

@@ -75,4 +76,4 @@ async def main():
7576

7677

7778
if __name__ == "__main__":
78-
jasyncio.run(main())
79+
asyncio.run(main())

examples/allwatcher.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@
1010
1111
"""
1212

13+
import asyncio
1314
import logging
1415

15-
from juju import jasyncio
1616
from juju.client import client
1717
from juju.model import Model
1818

@@ -34,4 +34,4 @@ async def watch():
3434
ws_logger.setLevel(logging.INFO)
3535
# Run loop until the process is manually stopped (watch will loop
3636
# forever).
37-
jasyncio.run(watch())
37+
asyncio.run(watch())

examples/charmhub_deploy_k8s.py

+3-2
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@
99
1010
"""
1111

12-
from juju import jasyncio
12+
import asyncio
13+
1314
from juju.model import Model
1415

1516

@@ -40,4 +41,4 @@ async def main():
4041

4142

4243
if __name__ == "__main__":
43-
jasyncio.run(main())
44+
asyncio.run(main())

examples/charmhub_deploy_machine.py

+3-2
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@
99
1010
"""
1111

12-
from juju import jasyncio
12+
import asyncio
13+
1314
from juju.model import Model
1415

1516

@@ -37,4 +38,4 @@ async def main():
3738

3839

3940
if __name__ == "__main__":
40-
jasyncio.run(main())
41+
asyncio.run(main())

examples/charmhub_find.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55
repository for charms.
66
"""
77

8+
import asyncio
89
import logging
910

10-
from juju import jasyncio
1111
from juju.model import Model
1212

1313
log = logging.getLogger(__name__)
@@ -33,4 +33,4 @@ async def main():
3333

3434
if __name__ == "__main__":
3535
logging.basicConfig(level=logging.INFO)
36-
jasyncio.run(main())
36+
asyncio.run(main())

examples/charmhub_info.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55
repository for information about a given charm.
66
"""
77

8+
import asyncio
89
import logging
910

10-
from juju import jasyncio
1111
from juju.model import Model
1212

1313
log = logging.getLogger(__name__)
@@ -29,4 +29,4 @@ async def main():
2929

3030
if __name__ == "__main__":
3131
logging.basicConfig(level=logging.INFO)
32-
jasyncio.run(main())
32+
asyncio.run(main())

examples/cloud.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@
99
1010
"""
1111

12+
import asyncio
1213
import logging
1314

14-
from juju import jasyncio
1515
from juju.controller import Controller
1616

1717

@@ -28,4 +28,4 @@ async def main():
2828
logging.basicConfig(level=logging.DEBUG)
2929
ws_logger = logging.getLogger("websockets.protocol")
3030
ws_logger.setLevel(logging.INFO)
31-
jasyncio.run(main())
31+
asyncio.run(main())

examples/clouds.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@
99
1010
"""
1111

12+
import asyncio
1213
import logging
1314

14-
from juju import jasyncio
1515
from juju.controller import Controller
1616

1717

@@ -28,4 +28,4 @@ async def main():
2828
logging.basicConfig(level=logging.DEBUG)
2929
ws_logger = logging.getLogger("websockets.protocol")
3030
ws_logger.setLevel(logging.INFO)
31-
jasyncio.run(main())
31+
asyncio.run(main())

examples/config.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@
99
1010
"""
1111

12+
import asyncio
1213
import logging
1314

14-
from juju import jasyncio
1515
from juju.model import Model
1616

1717
log = logging.getLogger(__name__)
@@ -59,4 +59,4 @@ async def main():
5959
# logging.basicConfig(level=logging.DEBUG)
6060
ws_logger = logging.getLogger("websockets.protocol")
6161
ws_logger.setLevel(logging.INFO)
62-
jasyncio.run(main())
62+
asyncio.run(main())

examples/connect_current_model.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55
and prints the number of applications deployed to it.
66
"""
77

8+
import asyncio
89
import logging
910

10-
from juju import jasyncio
1111
from juju.model import Model
1212

1313
log = logging.getLogger(__name__)
@@ -27,4 +27,4 @@ async def main():
2727

2828
if __name__ == "__main__":
2929
logging.basicConfig(level=logging.INFO)
30-
jasyncio.run(main())
30+
asyncio.run(main())

examples/controller.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@
1111
1212
"""
1313

14+
import asyncio
1415
import logging
1516

16-
from juju import jasyncio
1717
from juju.controller import Controller
1818

1919

@@ -41,4 +41,4 @@ async def main():
4141
logging.basicConfig(level=logging.DEBUG)
4242
ws_logger = logging.getLogger("websockets.protocol")
4343
ws_logger.setLevel(logging.INFO)
44-
jasyncio.run(main())
44+
asyncio.run(main())

examples/credential.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
# Copyright 2023 Canonical Ltd.
22
# Licensed under the Apache V2, see LICENCE file for details.
33

4+
import asyncio
45
import sys
56

6-
from juju import jasyncio
77
from juju.controller import Controller
88

99

@@ -47,4 +47,4 @@ async def main(cloud_name, credential_name):
4747

4848
if __name__ == "__main__":
4949
assert len(sys.argv) > 2, "Please provide a cloud and credential name"
50-
jasyncio.run(main(sys.argv[1], sys.argv[2]))
50+
asyncio.run(main(sys.argv[1], sys.argv[2]))

examples/crossmodel.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@
1111
1212
"""
1313

14+
import asyncio
1415
import tempfile
1516
from logging import getLogger
1617

17-
from juju import jasyncio
1818
from juju.controller import Controller
1919

2020
log = getLogger(__name__)
@@ -83,4 +83,4 @@ async def main():
8383

8484

8585
if __name__ == "__main__":
86-
jasyncio.run(main())
86+
asyncio.run(main())

examples/crossmodel_bundle.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@
1313
1414
"""
1515

16+
import asyncio
1617
import time
1718
from logging import getLogger
1819
from pathlib import Path
1920

20-
from juju import jasyncio
2121
from juju.controller import Controller
2222

2323
log = getLogger(__name__)
@@ -87,4 +87,4 @@ async def main():
8787

8888

8989
if __name__ == "__main__":
90-
jasyncio.run(main())
90+
asyncio.run(main())

examples/crossmodel_controller.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@
1515
10. Destroys models and disconnects
1616
"""
1717

18+
import asyncio
1819
import tempfile
1920
from logging import getLogger
2021

21-
from juju import jasyncio
2222
from juju.controller import Controller
2323

2424
log = getLogger(__name__)
@@ -92,4 +92,4 @@ async def main():
9292

9393

9494
if __name__ == "__main__":
95-
jasyncio.run(main())
95+
asyncio.run(main())

examples/crossmodel_relation.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@
1313
1414
"""
1515

16+
import asyncio
1617
import tempfile
1718
import time
1819
from logging import getLogger
1920

20-
from juju import jasyncio
2121
from juju.controller import Controller
2222

2323
log = getLogger(__name__)
@@ -106,4 +106,4 @@ async def main():
106106

107107

108108
if __name__ == "__main__":
109-
jasyncio.run(main())
109+
asyncio.run(main())

examples/debug-log.py

+3-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@
33

44
"""This example demonstrate how debug-log works"""
55

6-
from juju import jasyncio
6+
import asyncio
7+
78
from juju.model import Model
89

910

@@ -34,4 +35,4 @@ async def main():
3435

3536

3637
if __name__ == "__main__":
37-
jasyncio.run(main())
38+
asyncio.run(main())

0 commit comments

Comments
 (0)