Skip to content
View SrivastavaSatyam's full-sized avatar
:octocat:
:octocat:
  • Paytm

Block or report SrivastavaSatyam

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
SrivastavaSatyam/README.md

πŸ‘‹ Hi, I'm Satyam Srivastava

An enthusiastic developer passionate about creating impactful solutions through code.

πŸ› οΈ Tech Stack

  • Python
  • Django
  • React Js/ Node Js
  • Database Management
  • Web Development

πŸ”­ Featured Projects

A smart billing solution focused on cost optimization - "Pay Always Less"

Real-time COVID-19 statistics tracker that provides live updates for countries worldwide

  • Built with Python
  • Live data integration
  • Country-wise statistics

A weather forecasting application providing accurate weather information

Python-based distribution tracking system deployed on Heroku

🌱 Currently Learning

  • Node JS, Next Js
  • Database Optimization
  • API Development
  • Cloud Technologies

πŸ† GitHub Achievements

  • Quickdraw
  • Pull Shark

πŸ“« How to reach me

πŸ’» Most Used Languages

Top Languages


⭐️ From SrivastavaSatyam

Pinned Loading

  1. BillWithUs BillWithUs Public

    Pay Always Less

  2. Covid-Tracker Covid-Tracker Public

    Here you can get the live COVID CASE UPDATES of any country. Search your country name, and get the current covid case updates.

    Python

  3. Disttrac-Heroku Disttrac-Heroku Public

    Python

  4. Weather-Forcast Weather-Forcast Public

    HTML

  5. Django Models (many-to-one relation) Django Models (many-to-one relation)
    1
    from django.db import models
    2
    
                  
    3
    # Create your models here.
    4
    
                  
    5
    #Creating User Model
  6. Django Models (one-to-one relation) Django Models (one-to-one relation)
    1
    from django.db import models
    2
    
                  
    3
    class Person(models.Model):
    4
        name=models.CharField(max_length=20)
    5
        email=models.EmailField()