Skip to content

Latest commit

 

History

History
37 lines (32 loc) · 1.11 KB

File metadata and controls

37 lines (32 loc) · 1.11 KB
class Attributes():
	@staticmethod
	def knowledge() -> tuple:
		platforms = {
			'medium': 	  ['Windows', 'Linux'],
		}
		langs = {
			'medium':         ['Python3','SQL','PostgreSQL'],
			'low': 		  ['C++'],
                        'learning':       ['HTML,'CSS']
		}
		frameworks =              ['Django'','SQLAlchemy']
		tools = 		  ['VScode', 'Docker']

		return platforms, langs, frameworks, tools
	
	@staticmethod
	def skills() -> tuple:
		specialties  = ['Python Developer','Security engineer','Pentester']
		return specialties, vulnerability_statistics

        @staticmethod
        def education() -> tuple:
          education = {
		          'univercity': ['Ural Federal Univercity'],
		          'department': ['IT'],
		          'speciality:  ['Information security']
 	  }
          return education

Languages & Tools