Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sepehrrasouli/sepehrrasouli
https://github.com/sepehrrasouli/sepehrrasouli
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/sepehrrasouli/sepehrrasouli
- Owner: SepehrRasouli
- Created: 2021-10-12T18:51:42.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-07-29T12:59:56.000Z (over 2 years ago)
- Last Synced: 2024-11-04T08:20:57.940Z (2 months ago)
- Size: 13.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
```python
class Identity:
def __init__(self,name:str,age:int,location:str):
self.name = name
self.age = age
self.location = locationclass Programmer:
def __init__(self,specialty:str,familiar_with:list,interested_in:list):
self.specialty = specialty
self.familiar_with = familiar_with
self.interested_in = interested_in
class Contact:
def __init__(self,telegram:str,github:str,blog:str):
self.telegram = telegram
self.github = github
self.blog = blogidentity = Identity(
"Sepehr",
15,
"Tehran",
)programmer = Programmer(
"Back-End, Python Developer",
["Git","Javascript","Docker","Django","Linux"],
["Open-Source Community","Linux","Security","Machine Learning"],
)contact = Contact(
"t.me/SepehrRS",
"You're Here !",
"sepehrrs.blog.ir",
)
```