@@ -112,7 +112,7 @@ Export a Socket SBOM as an SPDX SBOM
112
112
113
113
fullscans.get(org_slug)
114
114
"""""""""""""""""""""""
115
- Retrieve the Fullscans information for around Organization
115
+ Retrieve the Fullscans information for an Organization
116
116
117
117
**Usage: **
118
118
@@ -286,7 +286,7 @@ Retrieve the dependencies for the organization associated with the API Key
286
286
]
287
287
params = {
288
288
" repository" : " username/repo-name" ,
289
- " branch" : " dependency-branch
289
+ " branch" : " dependency-branch"
290
290
}
291
291
print (socket.dependencies.post(file_names, params))
292
292
@@ -297,7 +297,7 @@ Retrieve the dependencies for the organization associated with the API Key
297
297
298
298
repos.get()
299
299
"""""""""""
300
- Get a list of information about the tracked repositores
300
+ Get a list of information about the tracked repositories
301
301
302
302
**Usage: **
303
303
@@ -309,7 +309,7 @@ Get a list of information about the tracked repositores
309
309
310
310
**PARAMETERS: **
311
311
312
- - **sort ** - The key to sort on froom the repo properties. Defaults to `created_at `
312
+ - **sort ** - The key to sort on from the repo properties. Defaults to `created_at `
313
313
- **direction ** - Can be `desc ` or `asc `. Defaults to `desc `
314
314
- **per_page ** - Integer between 1 to 100. Defaults to `10 `
315
315
- **page ** - Integer page number defaults to `1 `. If there are no more results it will be `0 `
@@ -346,15 +346,15 @@ Create a new Socket Repository
346
346
347
347
repos.repo()
348
348
""""""""""""
349
- Get a list of information about the tracked repositores
349
+ Get a list of information about the tracked repositories
350
350
351
351
**Usage: **
352
352
353
353
.. code-block :: python
354
354
355
355
from socketdev import socketdev
356
356
socket = socketdev(token = " REPLACE_ME" )
357
- print (socket.repos.repo(org_slug = " example" , repo_name = " example-repo" )
357
+ print (socket.repos.repo(org_slug = " example" , repo_name = " example-repo" ))
358
358
359
359
repos.update()
360
360
""""""""""""""
@@ -396,7 +396,7 @@ Delete a Socket Repository
396
396
397
397
from socketdev import socketdev
398
398
socket = socketdev(token = " REPLACE_ME" )
399
- print (socket.repos.delete(org_slug = " example" , repo_name = " example-repo" )
399
+ print (socket.repos.delete(org_slug = " example" , repo_name = " example-repo" ))
400
400
401
401
**PARAMETERS: **
402
402
@@ -520,7 +520,7 @@ Create a new project health report with the provided files
520
520
521
521
Deprecated: repositories.get()
522
522
""""""""""""""""""""""""""""""
523
- Get a list of information about the tracked repositores
523
+ Get a list of information about the tracked repositories
524
524
525
525
**Usage: **
526
526
0 commit comments