You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: LICENSE
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -1,4 +1,4 @@
1
-
Copyright 2024 Arcade
1
+
Copyright 2025 Arcade
2
2
3
3
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
By default the library closes underlying HTTP connections whenever the client is [garbage collected](https://docs.python.org/3/reference/datamodel.html#object.__del__). You can manually close the client using the `.close()` method if desired, or with a context manager that closes when exiting.
332
332
333
+
```py
334
+
from arcadepy import Arcade
335
+
336
+
with Arcade() as client:
337
+
# make requests here
338
+
...
339
+
340
+
# HTTP client is now closed
341
+
```
342
+
333
343
## Versioning
334
344
335
345
This package generally follows [SemVer](https://semver.org/spec/v2.0.0.html) conventions, though certain backwards-incompatible changes may be released as minor versions:
336
346
337
347
1. Changes that only affect static types, without breaking runtime behavior.
338
-
2. Changes to library internals which are technically public but not intended or documented for external use. _(Please open a GitHub issue to let us know if you are relying on such internals)_.
348
+
2. Changes to library internals which are technically public but not intended or documented for external use. _(Please open a GitHub issue to let us know if you are relying on such internals.)_
339
349
3. Changes that we do not expect to impact the vast majority of users in practice.
340
350
341
351
We take backwards-compatibility seriously and work hard to ensure you can rely on a smooth upgrade experience.
0 commit comments