Saturday, April 5, 2025

I need the excel having multiple sheets but it was not done help me to do it

I have created the function to export the excel sheet separately now i need to combine the separate sheets into single excel file : 
when use this showing the 200 response but the excel file was not generated in my file so help me to fix it
@api_view (['POST']) 
@permission_classes([IsAuthenticated])
def export_combined_template(request):
# Create an in-memory output buffer
output = io.BytesIO()

# Get DataFrames from each export function
df_contractor = export_contractor_excel_sheet_template()
df_applicability = export_example_applicability_template()
df_incharge = export_incharge_owner_template()

# Optional: Log DataFrame shapes to verify data is present
print("Contractor DF shape:", df_contractor.shape)
print("Applicability DF shape:", df_applicability.shape)
print("Incharge DF shape:", df_incharge.shape)

# Use ExcelWriter to combine multiple sheets into a single Excel file
with pd.ExcelWriter(output, engine='xlsxwriter') as writer:
# Write Contractor Template sheet
df_contractor.to_excel(writer, sheet_name='Contractor Template', index=False)
contractor_ws = writer.sheets['Contractor Template']
header_format = writer.book.add_format({'bold': True, 'align': 'center', 'valign': 'vcenter'})
for col_num, header in enumerate(df_contractor.columns):
contractor_ws.write(0, col_num, header, header_format)
contractor_ws.set_column(col_num, col_num, 18)
# Add dropdown validation for "Is Sub Contractor" (column index 4)
contractor_ws.data_validation(1, 4, 1048575, 4, {
'validate': 'list',
'source': ['Yes', 'No'],
'ignore_blank': True
})

# Write Applicability Template sheet
df_applicability.to_excel(writer, sheet_name='Applicability Template', index=False)
applicability_ws = writer.sheets['Applicability Template']
for col_num, header in enumerate(df_applicability.columns):
applicability_ws.write(0, col_num, header, header_format)
applicability_ws.set_column(col_num, col_num, 18)
# Add dropdown validation for "Is Enable" (column index 2)
applicability_ws.data_validation(1, 2, 1048575, 2, {
'validate': 'list',
'source': ['Yes', 'No'],
'ignore_blank': True
})

# Write Incharge Owner Template sheet
df_incharge.to_excel(writer, sheet_name='Incharge Owner Template', index=False)
incharge_ws = writer.sheets['Incharge Owner Template']
for col_num, header in enumerate(df_incharge.columns):
incharge_ws.write(0, col_num, header, header_format)
incharge_ws.set_column(col_num, col_num, 18)
# (Add additional formatting or validations for the incharge sheet if needed)

# Rewind the buffer to the beginning
output.seek(0)

# Build the HTTP response with the Excel file
response = HttpResponse(
output.read(),
content_type='application/vnd.openxmlformats-officedocument.spreadsheetml.sheet'
)
response['Content-Disposition'] = 'attachment; filename="combined_templates.xlsx"'
return response

--
You received this message because you are subscribed to the Google Groups "Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscribe@googlegroups.com.
To view this discussion visit https://groups.google.com/d/msgid/django-users/9211a987-fd5a-4089-8678-0293ef3b4e24n%40googlegroups.com.

Friday, April 4, 2025

Re: Problem with static files inDjango-Oscar

​When deploying a Django project with DEBUG = False, static files are not served automatically by Django. To handle static files in production, you can use WhiteNoise. After installing WhiteNoise, add 'whitenoise.middleware.WhiteNoiseMiddleware' to your MIDDLEWARE settings and set STATICFILES_STORAGE to 'whitenoise.storage.CompressedManifestStaticFilesStorage'. Then, run python manage.py collectstatic to collect all static files into the directory specified by STATIC_ROOT. This setup enables WhiteNoise to serve your static files efficiently in a production.
On Monday, 31 March 2025 at 1:14:32 am UTC+5:30 Szawunia wrote:
Hi everybody,
I have problem with my static files in my Django project, running local. Actually Django-Oscar, but settings files is Django.  There are not founded (404 error). I have all my static files in my project directory (where 'manage.py' is).
My settings:

STATIC_URL = 'static/'

STATIC_ROOT = BASE_DIR / 'static'

In my templates:

{% load static %}

<link href="{% static "main.css" %}" rel="stylesheet">

<link rel="shortcut icon" href="{% static "logo3.gif" %}" />

I stuck with that problem. Earlier in my Django simple project, all was ok. So my settings should be right. 

Any help will be appreaciate. Or any idea how to check, in simple way, what is wrong with my static loading

With all the best 


Ewa


--
You received this message because you are subscribed to the Google Groups "Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscribe@googlegroups.com.
To view this discussion visit https://groups.google.com/d/msgid/django-users/ba691a4c-c066-4521-8e71-95fc8ed7c1cen%40googlegroups.com.

Monday, March 31, 2025

Re: Problem with static files inDjango-Oscar

Check STATICFILES_DIRS

Since you are running locally, you need to add:

python

CopyEdit

STATICFILES_DIRS = [BASE_DIR / "static"]

This tells Django where to look for static files in development mode.

2. Use runserver With --insecure (For Debugging)

Try running the development server with:

bash

CopyEdit

python manage.py runserver --insecure

This forces Django to serve static files even if DEBUG = False.

3. Check If Static Files Are Collected Properly

Run:

bash

CopyEdit

python manage.py collectstatic --noinput

Then check if all static files are correctly placed inside STATIC_ROOT.

4. Manually Serve Static Files (Development Mode Only)

If it's still not working, add this to urls.py (only for local testing!):

python

CopyEdit

from django.conf import settings

from django.conf.urls.static import static

 

urlpatterns += static(settings.STATIC_URL, document_root=settings.STATIC_ROOT)

5. Check If Static Files Exist and Are Reachable

Run the following command to check what static files Django can find:

bash

CopyEdit

python manage.py findstatic main.css

If Django can't find the file, then it's not stored where it expects.

6. Confirm File Paths in Templates

Ensure your paths are correct. Try:

html

CopyEdit

<link href="{% static 'css/main.css' %}" rel="stylesheet">

If your main.css file is inside static/css/, then update your path accordingly.

7. Try Restarting the Server

Sometimes, simply stopping and restarting the Django server helps:

bash

CopyEdit

CTRL + C  # Stop the server

python manage.py runserver  # Start it again

8. Check Browser Dev Tools

Open your browser's Developer Console (F12) Network Static Files and check the request URL for errors.


On Sunday, March 30, 2025 at 9:09:00 PM UTC+1 Hugo Chavar wrote:
Hi Ewa looks like you need one more setting for development:

STATICFILES_DIRS = [
    BASE_DIR / 'static_files',  # or whatever directory contains your static files
]

If that doesn't work, share your urls.py

Maybe it worked for a small project because you have DEBUG = False in that case.

Let me know if this worked!

Hugo

On Sunday, March 30, 2025 at 4:44:32 PM UTC-3 Szawunia wrote:
Hi everybody,
I have problem with my static files in my Django project, running local. Actually Django-Oscar, but settings files is Django.  There are not founded (404 error). I have all my static files in my project directory (where 'manage.py' is).
My settings:

STATIC_URL = 'static/'

STATIC_ROOT = BASE_DIR / 'static'

In my templates:

{% load static %}

<link href="{% static "main.css" %}" rel="stylesheet">

<link rel="shortcut icon" href="{% static "logo3.gif" %}" />

I stuck with that problem. Earlier in my Django simple project, all was ok. So my settings should be right. 

Any help will be appreaciate. Or any idea how to check, in simple way, what is wrong with my static loading

With all the best 


Ewa


--
You received this message because you are subscribed to the Google Groups "Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscribe@googlegroups.com.
To view this discussion visit https://groups.google.com/d/msgid/django-users/b1736bce-b244-41f4-b7cc-a3cd8038df76n%40googlegroups.com.

Sunday, March 30, 2025

Re: Problem with static files inDjango-Oscar

Hi Ewa looks like you need one more setting for development:

STATICFILES_DIRS = [
    BASE_DIR / 'static_files',  # or whatever directory contains your static files
]

If that doesn't work, share your urls.py

Maybe it worked for a small project because you have DEBUG = False in that case.

Let me know if this worked!

Hugo

On Sunday, March 30, 2025 at 4:44:32 PM UTC-3 Szawunia wrote:
Hi everybody,
I have problem with my static files in my Django project, running local. Actually Django-Oscar, but settings files is Django.  There are not founded (404 error). I have all my static files in my project directory (where 'manage.py' is).
My settings:

STATIC_URL = 'static/'

STATIC_ROOT = BASE_DIR / 'static'

In my templates:

{% load static %}

<link href="{% static "main.css" %}" rel="stylesheet">

<link rel="shortcut icon" href="{% static "logo3.gif" %}" />

I stuck with that problem. Earlier in my Django simple project, all was ok. So my settings should be right. 

Any help will be appreaciate. Or any idea how to check, in simple way, what is wrong with my static loading

With all the best 


Ewa


--
You received this message because you are subscribed to the Google Groups "Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscribe@googlegroups.com.
To view this discussion visit https://groups.google.com/d/msgid/django-users/af12ddc1-70c5-4a4c-9b68-8ff7c5947c07n%40googlegroups.com.

Re: Problem with static files inDjango-Oscar

If you Facing static file issue in your Django project.
You should use Base_Dir include OS

STATIC_ROOT = os.path.join(BASE_DIR, 'staticfiles')
STATICFILES_DIRS = [
    os.path.join(BASE_DIR, 'static'), 

Because you run the Project Locally.
I hope this will help you 
On Monday, 31 March 2025 at 00:44:32 UTC+5 Szawunia wrote:
Hi everybody,
I have problem with my static files in my Django project, running local. Actually Django-Oscar, but settings files is Django.  There are not founded (404 error). I have all my static files in my project directory (where 'manage.py' is).
My settings:

STATIC_URL = 'static/'

STATIC_ROOT = BASE_DIR / 'static'

In my templates:

{% load static %}

<link href="{% static "main.css" %}" rel="stylesheet">

<link rel="shortcut icon" href="{% static "logo3.gif" %}" />

I stuck with that problem. Earlier in my Django simple project, all was ok. So my settings should be right. 

Any help will be appreaciate. Or any idea how to check, in simple way, what is wrong with my static loading

With all the best 


Ewa


--
You received this message because you are subscribed to the Google Groups "Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscribe@googlegroups.com.
To view this discussion visit https://groups.google.com/d/msgid/django-users/03af6144-c04f-419f-aa36-e54792628aa1n%40googlegroups.com.

Re: Problem with static files inDjango-Oscar

Try installing Pillow if you didn't

On Sunday, March 30, 2025 at 10:44:32 PM UTC+3 Szawunia wrote:
Hi everybody,
I have problem with my static files in my Django project, running local. Actually Django-Oscar, but settings files is Django.  There are not founded (404 error). I have all my static files in my project directory (where 'manage.py' is).
My settings:

STATIC_URL = 'static/'

STATIC_ROOT = BASE_DIR / 'static'

In my templates:

{% load static %}

<link href="{% static "main.css" %}" rel="stylesheet">

<link rel="shortcut icon" href="{% static "logo3.gif" %}" />

I stuck with that problem. Earlier in my Django simple project, all was ok. So my settings should be right. 

Any help will be appreaciate. Or any idea how to check, in simple way, what is wrong with my static loading

With all the best 


Ewa


--
You received this message because you are subscribed to the Google Groups "Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscribe@googlegroups.com.
To view this discussion visit https://groups.google.com/d/msgid/django-users/1277eece-f0c8-4d8f-8ba1-a31bfad0e71cn%40googlegroups.com.

Problem with static files inDjango-Oscar

Hi everybody,
I have problem with my static files in my Django project, running local. Actually Django-Oscar, but settings files is Django.  There are not founded (404 error). I have all my static files in my project directory (where 'manage.py' is).
My settings:

STATIC_URL = 'static/'

STATIC_ROOT = BASE_DIR / 'static'

In my templates:

{% load static %}

<link href="{% static "main.css" %}" rel="stylesheet">

<link rel="shortcut icon" href="{% static "logo3.gif" %}" />

I stuck with that problem. Earlier in my Django simple project, all was ok. So my settings should be right. 

Any help will be appreaciate. Or any idea how to check, in simple way, what is wrong with my static loading

With all the best 


Ewa


--
You received this message because you are subscribed to the Google Groups "Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscribe@googlegroups.com.
To view this discussion visit https://groups.google.com/d/msgid/django-users/b62d7840-8b4a-4835-bc95-434bb40aca2an%40googlegroups.com.

Monday, February 24, 2025

Re: Inquiry

Hi Kelvin, this is the Django users mailing list, you're likely to get a better answer for this in other online spaces that are more specific to Rust!

On Sunday, 23 February 2025 at 18:42:43 UTC Kelvin McCarty wrote:
How can one get a fresh start in RUST

--
You received this message because you are subscribed to the Google Groups "Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscribe@googlegroups.com.
To view this discussion visit https://groups.google.com/d/msgid/django-users/8d16e955-2c3e-494e-84d7-4110c550efd1n%40googlegroups.com.

Sunday, February 23, 2025

Inquiry

How can one get a fresh start in RUST

--
You received this message because you are subscribed to the Google Groups "Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscribe@googlegroups.com.
To view this discussion visit https://groups.google.com/d/msgid/django-users/4115e37a-cd81-424b-a4b1-d6836c290b8bn%40googlegroups.com.

Saturday, February 22, 2025

Moving discussions to the forum

Hi, we've decided to officially move conversations from this mailing list to the Django Forum. The mailing list is now closed to new members, and only allows posting via the Google Groups web interface to encourage people to stop posting here – while still making it possible to do so if needed.

We will further restrict posting in the future, with the list eventually becoming a read-only archive. We have no plans to delete it, there are a lot important conversations here that our users and contributors often refer to.

This list has been invaluable to the Django community in the past, but these days it seems most conversations have moved on to other places, so the list only increases fragmentation and moderation burden in our community. Please consider joining the Django forum and keeping discussions going there, or take a look at our Django Community page to find other online spaces.

Thank you!
Karen, on behalf of the Django Software Foundation

--
You received this message because you are subscribed to the Google Groups "Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscribe@googlegroups.com.
To view this discussion visit https://groups.google.com/d/msgid/django-users/bdc4dd15-e4b1-47f0-925c-e7976a6a68e5n%40googlegroups.com.

Wednesday, February 19, 2025

Django 5.2 beta 1 released

Details are available on the Django project weblog: https://www.djangoproject.com/weblog/2025/feb/19/django-52-beta-1-released/

--
You received this message because you are subscribed to the Google Groups "Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscribe@googlegroups.com.
To view this discussion visit https://groups.google.com/d/msgid/django-users/CAN%2BfQHwOhdmDsQRMYuSY4XYiquw_QDTdbJF2BhngTZ%3D_zL0Z1g%40mail.gmail.com.

Tuesday, February 18, 2025

Re: Token Generation Errors on Login

  Thanks a lot! Your help fixed my issue. Really appreciate the support!  

On Wednesday, February 19, 2025 at 9:08:40 AM UTC+5:30 RANGA BHARATH JINKA wrote:

Hi,

You have to provide a bearer token in the headers. Test in postman with the bearer token. If you don't provide the token you will get this error.

All the best


On Tue, 18 Feb, 2025, 9:25 pm Ephraim Iannah, <ephraimi...@gmail.com> wrote:

Did you make additional changes in the settings.py file?


On Thu, Feb 13, 2025, 4:01 PM Balaji V <balajivinot...@gmail.com> wrote:
  Hi, I'm new to Django. When I try to generate a login token, I receive these errors:
  {"detail": "Authentication credentials were not provided."}
{"error_short": "Module is not Assigned", "status": "failed"}

Any help resolving these issues.Thanks!

--
You received this message because you are subscribed to the Google Groups "Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to django-users...@googlegroups.com.
To view this discussion visit https://groups.google.com/d/msgid/django-users/acad6643-3e00-4898-ae6b-d21a83cf5f66n%40googlegroups.com.

--
You received this message because you are subscribed to the Google Groups "Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to django-users...@googlegroups.com.

--
You received this message because you are subscribed to the Google Groups "Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscribe@googlegroups.com.
To view this discussion visit https://groups.google.com/d/msgid/django-users/cbdb15d6-f39e-43bb-82a3-205dba7591b0n%40googlegroups.com.

Re: Token Generation Errors on Login

Hi,

You have to provide a bearer token in the headers. Test in postman with the bearer token. If you don't provide the token you will get this error.

All the best


On Tue, 18 Feb, 2025, 9:25 pm Ephraim Iannah, <ephraimiannah2006@gmail.com> wrote:

Did you make additional changes in the settings.py file?


On Thu, Feb 13, 2025, 4:01 PM Balaji V <balajivinothkumar152000@gmail.com> wrote:
  Hi, I'm new to Django. When I try to generate a login token, I receive these errors:
  {"detail": "Authentication credentials were not provided."}
{"error_short": "Module is not Assigned", "status": "failed"}

Any help resolving these issues.Thanks!

--
You received this message because you are subscribed to the Google Groups "Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscribe@googlegroups.com.
To view this discussion visit https://groups.google.com/d/msgid/django-users/acad6643-3e00-4898-ae6b-d21a83cf5f66n%40googlegroups.com.

--
You received this message because you are subscribed to the Google Groups "Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscribe@googlegroups.com.
To view this discussion visit https://groups.google.com/d/msgid/django-users/CALce6JfiAWVe7vEZGWkwTgP%2B%2BzDoNOngOr7eVRjtGEj3ypTDhQ%40mail.gmail.com.

--
You received this message because you are subscribed to the Google Groups "Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscribe@googlegroups.com.
To view this discussion visit https://groups.google.com/d/msgid/django-users/CAK5m315stJBjBEbgK%2BR7YLvSBeZPvcvxG_DPvh_hEzgfQyEj-A%40mail.gmail.com.

Wednesday, February 12, 2025

Re: Guidance for GSoC 2025 Participation with Django

Super bien


Le mar. 11 févr. 2025, 22:51, ANIKAIT SEHWAG <anikait.sehwag.ug22@nsut.ac.in> a écrit :

I am keen to participate in GSoC 2025 with the Django organization and have been practicing Django for a considerable time. Since you were a mentor last year, I would greatly appreciate your guidance on the next steps I should take to become a part of GSoC 2025.

I have contributed to your GitHub repository by addressing issues such as "Associated FilterSelectMultiple element to their label and help text" and "Adjusted doc and config files". Additionally, I am currently working on adding screenshot functionality to runtest.py.

Your insights and advice would be invaluable in helping me further contribute and become part of your team. I look forward to your guidance.

Best regards,
Anikait

--
You received this message because you are subscribed to the Google Groups "Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscribe@googlegroups.com.
To view this discussion visit https://groups.google.com/d/msgid/django-users/ae2a69c9-1bad-457d-a35a-becd657595a8n%40googlegroups.com.

--
You received this message because you are subscribed to the Google Groups "Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscribe@googlegroups.com.
To view this discussion visit https://groups.google.com/d/msgid/django-users/CA%2BGQzJNKZH3GhOsmbw%3DQ94z_rbJ3zq9X6E-E3j-C9Jd2GTYzdA%40mail.gmail.com.

Monday, February 10, 2025

Guidance for GSoC 2025 Participation with Django

I am keen to participate in GSoC 2025 with the Django organization and have been practicing Django for a considerable time. Since you were a mentor last year, I would greatly appreciate your guidance on the next steps I should take to become a part of GSoC 2025.

I have contributed to your GitHub repository by addressing issues such as "Associated FilterSelectMultiple element to their label and help text" and "Adjusted doc and config files". Additionally, I am currently working on adding screenshot functionality to runtest.py.

Your insights and advice would be invaluable in helping me further contribute and become part of your team. I look forward to your guidance.

Best regards,
Anikait

--
You received this message because you are subscribed to the Google Groups "Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscribe@googlegroups.com.
To view this discussion visit https://groups.google.com/d/msgid/django-users/ae2a69c9-1bad-457d-a35a-becd657595a8n%40googlegroups.com.

Saturday, February 8, 2025

Re: Remote Full Stack Developer 85k-125k at Redwith Technologies LLC

not using chatgpt to generate long essays that is even hard to read.

here's my portfolio: https://www.basith.me/
I write on LinkedIn:  https://www.linkedin.com/in/muhammedbasith

really looking forward for this if you are looking for a passionate swe.





On Sat, 8 Feb 2025 at 22:12, emma sie <emmasie010@gmail.com> wrote:
I am not a developer but a network engineer. but i can take experience to learn and work for you


Le mer. 15 janv. 2025 à 19:17, Allarassem Maxime <allarassemmaxwell@gmail.com> a écrit :

I hope this email finds you well. I am writing to express my interest in the Full Stack Developer position at Redwith Technologies. With a strong background in Python/Django and front-end technologies, along with experience in building scalable web applications and APIs, I am excited about the opportunity to contribute to your innovative team.

I have attached my resume for your review, and I am eager to discuss how my skills and experience align with the requirements of this role. Thank you for considering my application.

I look forward to the possibility of contributing to Redwith Technologies and being a part of the exciting work you're doing in the real estate tech industry.

Best regards,
Allarassem Maxime
+254704205757


On Tue, Jan 14, 2025 at 7:45 PM Axel Teddy DERO <teddydero@gmail.com> wrote:


Le mar. 14 janv. 2025 à 09:24, kumbhaj shukla <kumbhajs0@gmail.com> a écrit :

Hi sir,
Here is my resume.


On Tue, 14 Jan, 2025, 3:51 am Otecina, <otecina500@gmail.com> wrote:

Greetings dear recruiter, I am interested in this vacancy. I noticed that I have the skills that are being requested, however I am attaching my CV below.

Best regards


On Mon, Jan 13, 2025, 5:51 PM Miracle <collinsalex50@gmail.com> wrote:
I'm qualified and interested in this position.

Please find my resume attached

On Mon, 13 Jan 2025, 4:47 pm sertaç c, <prof.math@gmail.com> wrote:

POSITION: Full Stack Developer

LOCATION: New Haven, CT (Hybrid/Remote flexibility available)

ABOUT REDWITH TECHNOLOGIES At Redwith Technologies, we're dedicated to building innovative software solutions that revolutionize residential real estate technology. As part of our growing team, you'll be involved in creating and optimizing web applications that drive the industry forward. We value collaboration, creativity, and delivering high-impact solutions that transform the way real estate professionals and Multiple Listing Services (MLSs) operate and serve their subscribers and consumers alike. We are looking for a highly motivated and skilled Full Stack Developer to join our team. This is an exciting opportunity for someone passionate about tackling complex technical challenges, from requirements analysis to system design and deployment. As a Full Stack Developer at Redwith, you will have the chance to work on a diverse set of projects, including designing scalable solutions, optimizing performance, and ensuring the seamless integration of systems. You will play a key role in shaping our web applications and APIs, while contributing to an agile and collaborative development environment.

KEY RESPONSIBILITIES

  • Develop and maintain high-quality, scalable web applications and APIs using Python/Django.
  • Collaborate with product managers, designers, and other developers to deliver exceptional software solutions.
  • Work through the full software development lifecycle, including requirements gathering, system design, development, and deployment.
  • Troubleshoot and optimize performance, ensuring the application meets functional and non-functional requirements.
  • Contribute to the evolution of development best practices and ensure the team follows an agile development process.
  • Create and maintain clear, concise technical documentation to support the development lifecycle.

IDEAL SKILLS & EXPERIENCE:

  • Proficiency in Python and Django for backend development.
  • Strong experience with JavaScript, HTML/CSS, and modern front-end frameworks.
  • Knowledge of PostgreSQL and Redis for database management and caching.
  • Familiarity with Git for version control and collaboration.
  • Solid understanding of DevOps practices, cloud environments, and continuous integration/deployment (CI/CD).
  • Experience with agile methodologies and the ability to work effectively in a collaborative environment.
  • Strong communication skills, both written and verbal, with the ability to document technical processes clearly.

WHAT WE OFFER:

  • Competitive salary commensurate with skill level/experience.
  • Benefits package including paid time off, healthcare benefits, and supplemental benefits.
  • Professional development opportunities and a chance to grow your career in a forward-thinking company.
  • Collaborative work culture with a focus on innovation, personal and technical development/growth.
  • Flexible working arrangements, including hybrid and remote options.

--
You received this message because you are subscribed to the Google Groups "Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscribe@googlegroups.com.
To view this discussion visit https://groups.google.com/d/msgid/django-users/d345b524-9648-4fe5-b169-83438de56311n%40googlegroups.com.

--
You received this message because you are subscribed to the Google Groups "Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscribe@googlegroups.com.
To view this discussion visit https://groups.google.com/d/msgid/django-users/CADZv-jDvD99yxfA9c2mvArNiaKWTbfQMBmAbRqa%3DCPUfMDm%3DMg%40mail.gmail.com.

--
You received this message because you are subscribed to the Google Groups "Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscribe@googlegroups.com.
To view this discussion visit https://groups.google.com/d/msgid/django-users/CANdWVZbSk9vZM-XywtzdcEoULOcrF0uMrVEvW_g-8fsJSDFvdA%40mail.gmail.com.

--
You received this message because you are subscribed to the Google Groups "Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscribe@googlegroups.com.
To view this discussion visit https://groups.google.com/d/msgid/django-users/CAPjc%3DUV_3W1acnY9anzFKJ7LdDuhZDoq6wfCJe-hu%3Dy9ide%3D7A%40mail.gmail.com.

--
You received this message because you are subscribed to the Google Groups "Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscribe@googlegroups.com.
To view this discussion visit https://groups.google.com/d/msgid/django-users/CALtkRM8Ye8_VfrRX6kkUSBU7HYgNbtW9yEgsw_5%3DQYxqto30NA%40mail.gmail.com.

--
You received this message because you are subscribed to the Google Groups "Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscribe@googlegroups.com.
To view this discussion visit https://groups.google.com/d/msgid/django-users/CACF1NJyVQa0YqeemNeKSw092t%2Bmck-jebGNyf8O8wvnY1c7qcA%40mail.gmail.com.

--
You received this message because you are subscribed to the Google Groups "Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscribe@googlegroups.com.
To view this discussion visit https://groups.google.com/d/msgid/django-users/CAFr75P6yQWNftQrChgtjJbQc%3D7KYA%2BdSaebNyqbL8jeNrmoeyA%40mail.gmail.com.

--
You received this message because you are subscribed to the Google Groups "Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscribe@googlegroups.com.
To view this discussion visit https://groups.google.com/d/msgid/django-users/CAADw1szEDSm%3DW1tX%2B%2BheAwzTwkOw-33tQ40Q3LsN7snmg1gUzQ%40mail.gmail.com.

Friday, February 7, 2025

Re: Django developer required- Work from Home

Proposal for Expert Django Developer Engagement

I hope this message finds you well.
I am writing to express my strong interest in the opportunity to lead
your website development project as an expert Django developer on a
contract/hourly basis.
With extensive experience in Django and web development, I am
confident that I can provide the leadership and technical expertise
necessary to ensure the success of your project.

Why Choose Me:

Expertise in Django: With 10 years of experience, I've developed
robust web applications using Django

Strong Technical Skills: I'm proficient in Python, JavaScript, and
front-end technologies (HTML, CSS).
I excel in integrating RESTful APIs and have experience with databases
like PostgreSQL and MySQL.

Team Leadership: I've led development teams, promoting best practices
and effective collaboration through clear communication and agile
methodologies.

Problem-Solving: I thrive in challenging environments, committed to
finding innovative and efficient solutions that meet both technical
and business needs.

Proposed Engagement:

Availability: I'm available part-time/full-time, specific hours and
can adjust my hours to align with your team's schedule.

Rates: My hourly rate is30$, reflecting the quality of work I deliver.

Next Steps: I'd love to discuss your project further. Are you
available for a quick call or meeting this week?

Thank you for considering my proposal.
I'm excited about the opportunity to collaborate and contribute to
your project's success.
Looking forward to your response!

--
You received this message because you are subscribed to the Google Groups "Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscribe@googlegroups.com.
To view this discussion visit https://groups.google.com/d/msgid/django-users/CAJyUeCRZvgXXpvrnG10d4DO1R_MP%3DXJtk1E68QOB7AHV%2BVqREA%40mail.gmail.com.

Re: Django developer required- Work from Home

Hello, I'm interested
Regards,
Mark

On Wed, Feb 5, 2025 at 10:27 PM Nilesh Mishra <k.nileshmishra@gmail.com> wrote:
We require expert django developer on contract/hourly basis to lead our team for website development.

Required skill set

Python
Django
Mongodb
React js

Please send your CV to


Regards
Nilesh Mishra 
Whatsapp:- +91-82796-73706

On Thu, Jan 30, 2025, 01:34 Alexei Ramotar <alexei.ramotar@gmail.com> wrote:

I'd just give the columns generic names and let react handle the names you want to display which is probably based on dates or something cyclical. Otherwise it seems like too much overhead in renaming fields and migration.


On Wed, Jan 29, 2025, 2:56 PM 'Ryan Nowakowski' via Django users <django-users@googlegroups.com> wrote:

On 1/27/25 7:41 AM, Mayank Prajapati wrote:
> I am making a full stack project with JavaScript and react for front end , Postgre SQL for database and Django for backend and Django rest framework for APIs. So in models.py file there's one field which is to be removed and another field is to be added at the end. This process has to be done once daily at specific time. For example, assume there are five fields in my models i.e. A,B,C,D and E. At some specific time field B will be removed and new field E will be added after D, again same process will repeat next day field C will be removed and new field F will be added after E. I can implement this process through python file handling and "with" method.
>
> So my question is, should i implement this process in my Django project? Will this process work efficiently in production environment?
>

When you say "field" are these FileFields <https://docs.djangoproject.com/en/5.1/ref/models/fields/#filefield>? And when you say "removed" and "added", are you talking about actually removing the field from the model(via migrations <https://docs.djangoproject.com/en/5.1/topics/migrations/>) or setting that field to "None"(null) when you "remove" it?

--
You received this message because you are subscribed to the Google Groups "Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscribe@googlegroups.com.
To view this discussion visit https://groups.google.com/d/msgid/django-users/B1F2C8F6-766A-4515-ADEC-C72D59866E71%40fattuba.com.

--
You received this message because you are subscribed to the Google Groups "Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscribe@googlegroups.com.
To view this discussion visit https://groups.google.com/d/msgid/django-users/CACCvK-vi3ooiMfKAGpMYyme4c2jA1fxbvY3HD0tdBRn7oc%2Bx%2BQ%40mail.gmail.com.

--
You received this message because you are subscribed to the Google Groups "Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscribe@googlegroups.com.
To view this discussion visit https://groups.google.com/d/msgid/django-users/CANGWp6zEwcKGwwbj-JxNTDmMM-d7ivJFMJbQagR0JKKg600C2g%40mail.gmail.com.

--
You received this message because you are subscribed to the Google Groups "Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscribe@googlegroups.com.
To view this discussion visit https://groups.google.com/d/msgid/django-users/CAFm0m6SDqETb9njxbgvTn3WOaNrvOAMK1J1PkJtZDVyec1SQAQ%40mail.gmail.com.