rspace-cli VS api-tutorial

Compare rspace-cli vs api-tutorial and see what are their differences.

rspace-cli

CLI application for command-line interaction with RSpace ELN (by richarda23)

api-tutorial

Entry-level language-agnostic tutorial to using the RSpace API (by rspace-os)
InfluxDB - Power Real-Time Data Analytics at Scale
Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.
www.influxdata.com
featured
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com
featured
rspace-cli api-tutorial
1 1
2 2
- -
0.0 0.0
almost 3 years ago almost 3 years ago
Go Shell
Apache License 2.0 Apache License 2.0
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

rspace-cli

Posts with mentions or reviews of rspace-cli. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2022-01-08.
  • Short video showing example of passing data from an ELN to jupyter for analysis, then returning the result to the lab notes using APIs and python.
    4 projects | /r/bioinformatics | 8 Jan 2022
    Yes, the API is flexible and you can use it pretty much any way you like. You can learn more about the RSpace API here: https://researchspace.helpdocs.io/category/ifpi5pwbck-for-developers https://community.researchspace.com/public/apiDocs Our API github page here: https://github.com/rspace-os For a tutorial see: https://github.com/rspace-os/api-tutorial For more on using Python with our API see: https://github.com/rspace-os/rspace-client-python For a nice example of how our partner ChemAxon has utilized this API to integrate with their assay management system see: https://youtu.be/2N2dDMjK4JM As another simple example, here is a curl script you can use in the terminal of your mac to ingest files to the RSpace gallery. curl -X POST -H "accept: application/json" -H "apiKey: [add your API Key here]“ -H "content-type: multipart/form-data" -F "file=@ [add the path to a target file here]“ -F "caption=Demo input of image file using API and command line" “[add the URL of your server here]/api/v1/files” There is also a Command Line Interface (CLI) available that works with the API: You can read more about that here: https://github.com/richarda23/rspace-cli Here is an example of how you might use the CLI to create RSpace LabGroups: 1. Download the RSpace CLI for your platform. https://bintray.com/ra22597/rspace-cli/rspace-cli/0.0.14 2. Give it executable permissions: chmod 755 3. Create a file in the same folder as the executable with 'sysadmin-community.env' and add these 2 lines, save it RSPACE_API_KEY= RSPACE_URL=https://community.researchspace.com/api/v1 4. Keep the config file secret: chmod 400 sysadmin-community.env ---- to create a group 5. Run a command like this: ./rspace eln addGroup --name daltongroup2 --pi jdalton --members mpostdoc,testaccount1 --config sysadmin-community.env and get output like this : Id Name Type SharedFolderId Members 17301506 daltongp2 LAB_GROUP 814701 jdalton;mpostdoc;t.. Small print... Step 1 - the most up to date version link can be found on Github: https://github.com/richarda23/rspace-cli ( see download link in 'Downloading section) Step -3 config file can be anything you like but must have .env suffix. Step 5 - members string is comma-separated list of usernames NO SPACEs Run ./rspacex eln addGroup --help for helpdocs. Note that the restriction 'user must have logged in once' is no longer an issue. BUT the user accounts must exist. ( you can create users via 'addUser' command) Why use this rather than curl? 1) More secure - api keys are in files rather than logged to command line 2) POSTing stuff with curl has tricky syntax with quotes and curly braces, this is much simpler 3) Nicer output rather than JSON dump (although you can get output in various formats using -f option)

api-tutorial

Posts with mentions or reviews of api-tutorial. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2022-01-08.
  • Short video showing example of passing data from an ELN to jupyter for analysis, then returning the result to the lab notes using APIs and python.
    4 projects | /r/bioinformatics | 8 Jan 2022
    Yes, the API is flexible and you can use it pretty much any way you like. You can learn more about the RSpace API here: https://researchspace.helpdocs.io/category/ifpi5pwbck-for-developers https://community.researchspace.com/public/apiDocs Our API github page here: https://github.com/rspace-os For a tutorial see: https://github.com/rspace-os/api-tutorial For more on using Python with our API see: https://github.com/rspace-os/rspace-client-python For a nice example of how our partner ChemAxon has utilized this API to integrate with their assay management system see: https://youtu.be/2N2dDMjK4JM As another simple example, here is a curl script you can use in the terminal of your mac to ingest files to the RSpace gallery. curl -X POST -H "accept: application/json" -H "apiKey: [add your API Key here]“ -H "content-type: multipart/form-data" -F "file=@ [add the path to a target file here]“ -F "caption=Demo input of image file using API and command line" “[add the URL of your server here]/api/v1/files” There is also a Command Line Interface (CLI) available that works with the API: You can read more about that here: https://github.com/richarda23/rspace-cli Here is an example of how you might use the CLI to create RSpace LabGroups: 1. Download the RSpace CLI for your platform. https://bintray.com/ra22597/rspace-cli/rspace-cli/0.0.14 2. Give it executable permissions: chmod 755 3. Create a file in the same folder as the executable with 'sysadmin-community.env' and add these 2 lines, save it RSPACE_API_KEY= RSPACE_URL=https://community.researchspace.com/api/v1 4. Keep the config file secret: chmod 400 sysadmin-community.env ---- to create a group 5. Run a command like this: ./rspace eln addGroup --name daltongroup2 --pi jdalton --members mpostdoc,testaccount1 --config sysadmin-community.env and get output like this : Id Name Type SharedFolderId Members 17301506 daltongp2 LAB_GROUP 814701 jdalton;mpostdoc;t.. Small print... Step 1 - the most up to date version link can be found on Github: https://github.com/richarda23/rspace-cli ( see download link in 'Downloading section) Step -3 config file can be anything you like but must have .env suffix. Step 5 - members string is comma-separated list of usernames NO SPACEs Run ./rspacex eln addGroup --help for helpdocs. Note that the restriction 'user must have logged in once' is no longer an issue. BUT the user accounts must exist. ( you can create users via 'addUser' command) Why use this rather than curl? 1) More secure - api keys are in files rather than logged to command line 2) POSTing stuff with curl has tricky syntax with quotes and curly braces, this is much simpler 3) Nicer output rather than JSON dump (although you can get output in various formats using -f option)