Git Product home page Git Product logo

typ-tecnicalodooformation's Introduction

#!/usr/bin/python
# -*- coding: utf-8 -*-

class PythonDeveloper:
    def __init__(self):
        self.name = "Angie"
        self.perceived_role = "Web developer"
        self.official_title = " Developer Analyst"
        self.language_spoken = ["esp_LATAM", "en_US"]
        self.currently_learning = ["automated_test","JavaScript"]
        self.currently_working = ["API's web", "Open Source", "ERP", "Personal Project"]
        
    def say_random(self):
        print("If a line of code from your life transcends, you've done more than most.")

me = PythonDeveloper()
me.say_random()
from odoo import models, fields, api

class OdooDeveloper(models.Model):
    _name = 'python.developer'
    _description = 'Partner Odoo Developer'

    name = fields.Char(string='Name', default="Angie")
    perceived_role = fields.Char(string='Perceived Role', default="Web Developer")
    official_title = fields.Char(string='Official Title', default="Developer Analyst")
    language_spoken = fields.Selection(
        [('es_MX', 'Spanish (MEX)'), ('en_US', 'English (US)')],
        string='Language Spoken',
        default='es_MX'
    )
    currently_learning = fields.Many2many(
        'learning.topic', 
        string='Currently Learning'
    )
    currently_working = fields.Many2many(
        'work.topic', 
        string='Currently Working'
    )

    @api.model
    def say_random(self):
        return "If a line of code from your life transcends, you've done more than most."

    def print_learning_and_working(self):
            learning_topics = ', '.join(self.currently_learning.mapped('name'))
            working_topics = ', '.join(self.currently_working.mapped('name'))
            print(f"Currently Learning: {learning_topics}")
            print(f"Currently Working: {working_topics}")

 import pdb; set_trace()

Languages and Tools :

Fortran Java Python Django Postman Postgresql Heroku

Git JavaScript React Netifly Figma VSC

typ-tecnicalodooformation's People

Contributors

teposteaj avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.