@@ -122,7 +122,7 @@ Export a Socket SBOM as an SPDX SBOM
122
122
123
123
fullscans.get(org_slug)
124
124
"""""""""""""""""""""""
125
- Retrieve the Fullscans information for around Organization
125
+ Retrieve the Fullscans information for an Organization
126
126
127
127
**Usage: **
128
128
@@ -296,7 +296,7 @@ Retrieve the dependencies for the organization associated with the API Key
296
296
]
297
297
params = {
298
298
" repository" : " username/repo-name" ,
299
- " branch" : " dependency-branch
299
+ " branch" : " dependency-branch"
300
300
}
301
301
print (socket.dependencies.post(file_names, params))
302
302
@@ -307,7 +307,7 @@ Retrieve the dependencies for the organization associated with the API Key
307
307
308
308
repos.get()
309
309
"""""""""""
310
- Get a list of information about the tracked repositores
310
+ Get a list of information about the tracked repositories
311
311
312
312
**Usage: **
313
313
@@ -319,7 +319,7 @@ Get a list of information about the tracked repositores
319
319
320
320
**PARAMETERS: **
321
321
322
- - **sort ** - The key to sort on froom the repo properties. Defaults to `created_at `
322
+ - **sort ** - The key to sort on from the repo properties. Defaults to `created_at `
323
323
- **direction ** - Can be `desc ` or `asc `. Defaults to `desc `
324
324
- **per_page ** - Integer between 1 to 100. Defaults to `10 `
325
325
- **page ** - Integer page number defaults to `1 `. If there are no more results it will be `0 `
@@ -356,15 +356,15 @@ Create a new Socket Repository
356
356
357
357
repos.repo()
358
358
""""""""""""
359
- Get a list of information about the tracked repositores
359
+ Get a list of information about the tracked repositories
360
360
361
361
**Usage: **
362
362
363
363
.. code-block :: python
364
364
365
365
from socketdev import socketdev
366
366
socket = socketdev(token = " REPLACE_ME" )
367
- print (socket.repos.repo(org_slug = " example" , repo_name = " example-repo" )
367
+ print (socket.repos.repo(org_slug = " example" , repo_name = " example-repo" ))
368
368
369
369
repos.update()
370
370
""""""""""""""
@@ -406,7 +406,7 @@ Delete a Socket Repository
406
406
407
407
from socketdev import socketdev
408
408
socket = socketdev(token = " REPLACE_ME" )
409
- print (socket.repos.delete(org_slug = " example" , repo_name = " example-repo" )
409
+ print (socket.repos.delete(org_slug = " example" , repo_name = " example-repo" ))
410
410
411
411
**PARAMETERS: **
412
412
@@ -530,7 +530,7 @@ Create a new project health report with the provided files
530
530
531
531
Deprecated: repositories.get()
532
532
""""""""""""""""""""""""""""""
533
- Get a list of information about the tracked repositores
533
+ Get a list of information about the tracked repositories
534
534
535
535
**Usage: **
536
536
0 commit comments