Skip to content
View ok7uz's full-sized avatar

Organizations

@see7en

Block or report ok7uz

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
ok7uz/README.md

Pinned Loading

  1. django-drf-template django-drf-template Public template

    A simple template to start a DRF project. Please contribute to improve this template.

    Python 1

  2. realtime-chat realtime-chat Public

    A real-time Chat API project built on DRF and Django Channels

    Python 1

  3. BobojonovSobir0576/maldex-backend BobojonovSobir0576/maldex-backend Public

    Python 2 1

  4. see7en/aiogram-bot-template see7en/aiogram-bot-template Public template

    A template for creating a telegram bot using aiogram 3.6

    Python 1

  5. django_integer_field_validation.py django_integer_field_validation.py
    1
    price = models.IntegerField(
    2
        validators=[MinValueValidator(1), MaxValueValidator(2147483647)]
    3
    )
  6. Returns a list of primes < n in python Returns a list of primes < n in python
    1
    def primes(n):
    2
        """ Returns  a list of primes < n """
    3
        sieve = [True] * (n//2)
    4
        for i in range(3,int(n**0.5)+1,2):
    5
            if sieve[i//2]: