Skip to content

Espacenet Open Patent Service API OPS v.3.1 wraper

License

Notifications You must be signed in to change notification settings

Davidmax2023/epo-ops

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

epo

Espacenet Open Patent Service API OPS v.3.1 wraper.

Download count ghit.me

For detailed documentation see here.

Basic usage

  var epo = require('epo');
  var myEpo = new epo();
  myEpo.register({
   ref_type: "publication",
    format: "epodoc",
    input: "EP1122334"
  },function(epo_data){
    console.log(JSON.parse(epo_data));
  });
///  for registered users
  var myEpo = new epo({
    clientID: 'your-id',
    clientSecret: 'your-secret'
  });
  myEpo.generate_token(function() {
    myEpo.register({
     ref_type: "publication",
      format: "epodoc",
      input: "EP1122334"
    },function(epo_data){
      console.log(JSON.parse(epo_data));
    });
    this.register_search({
      cql: "ti%3Dplastic",
      range_begin: 1,
      range_end: 30
    }, function(epo_data) {
      console.log(epo_data);
    });
 });

About

Espacenet Open Patent Service API OPS v.3.1 wraper

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 100.0%