Skip to content
View nitinbhojwani's full-sized avatar
Block or Report

Block or report nitinbhojwani

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

Pinned Loading

  1. jsocol/django-ratelimit jsocol/django-ratelimit Public

    Cache-based rate-limiting for Django

    Python 1k 186

  2. dastergon/awesome-sre dastergon/awesome-sre Public

    A curated list of Site Reliability and Production Engineering resources.

    11.7k 1.5k

  3. pep8-checker pep8-checker Public

    Python Script to : Check syntax and lint the python code based on PEP8 standard and Auto-correct according to PEP8 standard and remove .pyc files

    2 2

  4. microlend microlend Public

    MicroLending Platform with Payu Integration built on Symfony

    PHP 1

  5. Django - Send a Mail with Attachment... Django - Send a Mail with Attachment File like CSV
    1
    # Import EmailMessage class - https://docs.djangoproject.com/en/1.9/topics/email/#django.core.mail.EmailMessage
    2
    from django.core.mail import EmailMessage
    3
    email = EmailMessage('... Subject ...', '... Body ...', 'from-email',
    4
                ['to-email-1', 'to-email-2'], ['bcc-email-1', 'bcc-email-2'])
    5