CODEBOT
Tomorrow's Programming Done Today
Home
About Codebot
Press & Events
Careers
Team
Welcome to Codebot! World's 1st bot which can write code.
Instructions:
Step 1. Provide requirement specifications(choose a method).
Step 2. Click GENERATE button.
Step 3. Scroll down to see Python/Java code.
a) Select a sample from drop down below:
b) OR Upload a file(.txt):
Browse
c) OR Type directly in the box below:
The admin is responsible for registering the company and initiating a project, sending invitation mails to the project manager. The admin starts the project which needs to be managed and supervised by the project manager. The admin provides with the relevant information to the system and initiates a new project. The admin sends an invitation email to the desired project manager who will be responsible for managing the project so created. The admin assigns the project manager a particular project which needs to work on.
Python
Java
Python
#Python code generated on www.CodeBotAI.com #------------------------------------------------------------------------------ # CodeBot is a programmers' assistant based on Machine Learning. # It can auto-generate scaffolding code from requirement specifications. #------------------------------------------------------------------------------- class admin(object): def __init__(self): self.responsible = 1 self.relevant = 1 self.new = 1 self.particular = 1 def start(self, project): pass def provide(self, system, information): pass def initiate(self, project): pass def send(self, manager, invitation_email, project_manager): return invitation_email def assign(self, project_manager, project): pass class company(object): def __init__(self): pass def initiate(self): pass class project(object): def __init__(self): self.create = 1 self.desire = 1 def create(self, degree = 'so'): pass class invitation_mail(object): def __init__(self): pass class project_manager(object): def __init__(self): self.manage = 1 def supervise(self): pass
Java
/** * Java code generated on www.CodeBotAI.com * ------------------------------------------------------------------------------ * CodeBot is a programmers' assistant based on Machine Learning. * It can auto-generate scaffolding code from requirement specifications. * ------------------------------------------------------------------------------- **/ public class admin { public integer responsible = 1; public integer relevant = 1; public integer new = 1; public integer particular = 1; public void start(string project) { return void; } public void provide(string system,string information) { return void; } public void initiate(string project) { return void; } public string send(string manager,string invitation_email,string project_manager) { return invitation_email; } public void assign(string project_manager,string project) { return void; } } public class company { public void initiate( ) { return void; } } public class project { public integer create = 1; public integer desire = 1; public void create(string degree = so) { return void; } } public class invitation_mail { } public class project_manager { public integer manage = 1; public void supervise( ) { return void; } }