- Recipes
- Github issues to MySQL
Connect Github issues and MySQL in our serverless environment
Use this template to Get issues from Github repository using them to insert rows into MySQL table.
Share
Get issues from Github repository
Used integrations:
JavaScript
Python
class GithubSourceRepositoryIssues {
async init() {
// TODO: Create your github credential
// More info at https://yepcode.io/docs/integrations/github/#credential-configuration
this.github = yepcode.integration.github("your-github-credential-name");
}
async fetch(publish, done) {
// TODO: Customize your request params
// See all available params at: https://docs.github.com/en/rest/issues/issues#list-repository-issues
const response = await this.github.rest.issues.listForRepo({
owner: "repository-owner",
repo: "repository-name",
per_page: 100,
page: 0,
state: "open",
});
const issues = response.data;
for (const issue of issues) {
// TODO: Customize the object to publish for each issue
// Here you can see the issue object:
// https://docs.github.com/en/rest/issues/issues#list-repository-issues
await publish(issue);
}
done();
}
async close() {}
}
Comming soon
We are releasing new Python recipes every week
Do you need help solving this integration with YepCode?
Let's talkInsert rows into MySQL table
Used integrations:
JavaScript
Python
class MysqlTargetInsert {
async init() {
// TODO: Create your mysql credential
// More info at https://yepcode.io/docs/integrations/mysql/#credential-configuration
this.mysql = yepcode.integration.mysql("your-mysql-credential-name");
}
async consume(item) {
// TODO: Map your item to row and customize INSERT statement
return await this.mysql
.promise()
.query(`INSERT INTO your_table_name SET ?`, {
id: item.id,
name: item.name,
});
}
async close() {
await this.mysql.end();
}
}
class MysqlTargetInsert:
def setup(self):
# TODO: Create your MySQL credential:
# More info at https://yepcode.io/docs/integrations/mysql/#credential-configuration
self.mysql_connection = yepcode.integration.mysql("your-mysql-credential-name")
def consume(self, generator, done):
cursor = self.mysql_connection.cursor()
# TODO: Customize the INSERT query
query = "INSERT INTO your_table (id, name, price) VALUES (%(id)s, %(name)s, %(price)s)"
for item in generator:
cursor.execute(query, item)
self.mysql_connection.commit()
done()
def close(self):
pass
FAQs
YepCode is a SaaS platform that allows to create, execute and monitor integrations and automations using source code in a serverless environment.
We like to call it the Zapier for developers, since we bring all the agility and benefits of NoCode tools (avoid server provisioning, environment configuration, deployments,...), but with all the power of being able to use a programming language like JavaScript or Python.
These recipes are a good starting point for you to build your own YepCode processes and solve your integration and automation problems.
You only have to fill the sign up form and your account will be created with our FREE plan (no credit card required).
YepCode has been created with a clear enterprise approach (multi-tenant environment, team management, high security and auditing standards, IdP integrations, on-premise options,...) so we can be the Swiss army knife of any team of engineering, especially those that need to extract or send information to external systems, and where a certain dynamism or adaptation to change is necessary in that process.
Sure! You just need to do some configuration to allow YepCode servers to connect to that service. Check our docs page to get more information.